We hope you enjoy your visit.

You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Add Reply
So Bored...; Could use some of your ideas...
Topic Started: Nov 20 2005, 07:08 PM (2,099 Views)
Epsilekt
Member Avatar
Member
[ *  *  *  *  *  * ]
Good idea Vulcan! =D

Oh, I finished that custom pages modification.

Code:
 
<script language="javascript" src="http://i2.ifrm.com/5240/138/upload/p8741.ibf"></script>
<script id="custompagesfunctions" language="javascript"></script>


Add it to your footer. That's it. All the rest is controlled by admins on the forum. ^_^

If anybody tries it out, please let me know what you think. :grin:
Offline Profile Quote Post Goto Top
 
Night Star
ftw
[ *  *  *  *  *  *  * ]
Epsilekt, you pwnz0rs. How long have you been doing, html,javascript etc...?
Offline Profile Quote Post Goto Top
 
Epsilekt
Member Avatar
Member
[ *  *  *  *  *  * ]
Night Star
Nov 24 2005, 07:41 PM
Epsilekt, you pwnz0rs. How long have you been doing, html,javascript etc...?

I'm not sure. Definitly less than six months for JavaScript. Obviously since I've been skinning for HTML. I think you could call CSS HTML. Plus board wrappers for HTML; So yeah, since I started skinning for HTML.

So my two next scripts are...

  • Topic Preview
  • Member Alias

Topic Preview
This'll be easy. I'll just have the first 100 characters of the post be added to the topic description before the topic/poll is posted. The maxlength of the topic description won't be increased until before I add the first 100 post characters. There will be a set of tags it's inbetween. Perhaps... [TOPREV]First 100 here.[/TOPREV]. Then, the alt message over the topic link will be what's in that TOPREV. :)

Member Alias
This will just require one cookie, and some link searching. Way easer than the topic preview which is, easy.
Offline Profile Quote Post Goto Top
 
Maru
Member Avatar
Member
[ *  *  *  *  *  *  * ]
Create a javascript code generator.. :o
Offline Profile Quote Post Goto Top
 
Epsilekt
Member Avatar
Member
[ *  *  *  *  *  * ]
Maru
Nov 24 2005, 08:26 PM
Create a javascript code generator.. :o

Done. :)

Here's the link. It's really advanced and pretty cool! :D

JavaGen [COOL!]
Offline Profile Quote Post Goto Top
 
Maru
Member Avatar
Member
[ *  *  *  *  *  *  * ]
LMFAO>> I haven't laughed in a while
Offline Profile Quote Post Goto Top
 
.Method
Member Avatar

[ *  *  *  *  *  * ]
Make a code that centers the .normalname on the posting page.
Offline Profile Quote Post Goto Top
 
Epsilekt
Member Avatar
Member
[ *  *  *  *  *  * ]
Method264
Nov 24 2005, 08:49 PM
Make a code that centers the .normalname on the posting page.

On the posting page...

You mean this one?

I know there's no normalname class anywhere on that page, but do you mean at the bottom where it shows the last ten posts?
Offline Profile Quote Post Goto Top
 
Maru
Member Avatar
Member
[ *  *  *  *  *  *  * ]
Make .png's work in IE. Just a code. Not one you put in each image code.
Offline Profile Quote Post Goto Top
 
Epsilekt
Member Avatar
Member
[ *  *  *  *  *  * ]
Alright. One second.

Code:
 
IMG { filter: chroma(color=#D4E6EA); }


That's just a simple CSS code, I'll try and look up an advanced method on microsoft.com. I found something about it there before. It actually made PNGs work. For real. =O

I found the one on microsoft.com but for some reason it only does 40% of the images on a page or something like that...

Here was the code I was testing with...

Code:
 
<script language="JavaScript">
function fixPNG(myImage) // correctly handle PNG transparency in Win IE 5.5 or higher.
 {
  if (window.ie55up)
{
var myImage = x[i];
var imgClass = (myImage.className) ? "class='" + myImage.className + "' " : ""
var imgTitle = (myImage.title) ? "title='" + myImage.title + "' " : "title='" + myImage.alt + "' "
var imgStyle = "display:inline-block;" + myImage.style.cssText
var strNewHTML = "<span " + imgClass + imgTitle
strNewHTML += " style=\"" + "width:" + myImage.width + "px; height:" + myImage.height + "px;" + imgStyle + ";"
strNewHTML += "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
strNewHTML += "(src=\'" + myImage.src + "\', sizingMethod='scale');\"></span>"
myImage.outerHTML = strNewHTML
myImage.id = 'usedanddone';
}
 }
var x = document.getElementsByTagName('IMG');
for(i=0;i<x.length;i++) {
fixPNG(x[i]);
}
</script>


Pretty much all of that genius is microsoft's.
Offline Profile Quote Post Goto Top
 
Maru
Member Avatar
Member
[ *  *  *  *  *  *  * ]
Thanks alot w00t
Offline Profile Quote Post Goto Top
 
.Method
Member Avatar

[ *  *  *  *  *  * ]
Epsilekt
Nov 24 2005, 05:55 PM
Method264
Nov 24 2005, 08:49 PM
Make a code that centers the .normalname on the posting page.

On the posting page...

You mean this one?

I know there's no normalname class anywhere on that page, but do you mean at the bottom where it shows the last ten posts?

My bad I ment the topic page. So it will change

Epsilekt
to
Epsilekt

except above your avatar not in a post lol. :clown:
Offline Profile Quote Post Goto Top
 
Ubaloo
Unregistered

Epsilekt
Nov 25 2005, 02:09 AM
Alright. One second.

Code:
 
IMG { filter: chroma(color=#D4E6EA); }


That's just a simple CSS code, I'll try and look up an advanced method on microsoft.com. I found something about it there before. It actually made PNGs work. For real. =O

Where do we put it?
Quote Post Goto Top
 
Maru
Member Avatar
Member
[ *  *  *  *  *  *  * ]
In the image code I believe.
Offline Profile Quote Post Goto Top
 
YoRone22
Member Avatar
4
[ *  *  *  *  *  *  * ]
Ubaloo
Nov 25 2005, 02:41 AM
Epsilekt
Nov 25 2005, 02:09 AM
Alright. One second.

Code:
 
IMG { filter: chroma(color=#D4E6EA); }


That's just a simple CSS code, I'll try and look up an advanced method on microsoft.com. I found something about it there before. It actually made PNGs work. For real. =O

Where do we put it?

In the CSS. :|
Offline Profile Quote Post Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
Go to Next Page
« Previous Topic · Technology Chat · Next Topic »
Add Reply