
Jay_Stealth
MemberContent Type
Profiles
Forums
Events
Everything posted by Jay_Stealth
-
wahahah i always wondered when there would be a use for that image
-
Navbar Puzzle
Jay_Stealth replied to Jay_Stealth's topic in Web Development (HTML, Java, PHP, ASP, XML, etc.)
not used dreamweaver to do rollovers in before but im guessing that it will write them same as fireworks does and the images are allready preloaded if u check the post -
heh workx now didnt earlier but you know what themexp's like
-
dead link m8m8m8m8
-
ok ive built a site ( http://www.team-matrix.co.uk ) and my navbar is slow with the rollovers. I created the whole navbar in fireworks mx then exported it with html and the slices ready for dreamweaver which i then imported it into. There are 3 states on each button normal/over/down each with an alt message and a status bar message. Fireworks exported the original image in the nav_r1_c1.gif nav_r1_c2.gif format at around 115 bytes for each image but the images that it is using for the over and down state it just linked as they were already created. i can only get these to 330 bytes with ok image quality. This should still be small enough not to slow down the rollover effect tho, ive also tried to cut down the filesize in photoshop 7 but no hope either. All of the images can be found at http://www.team-matrix.co.uk/images . The code for the nave bar is in 3 parts, the script/ the preload images part and the actuall code for the table. Heres the script that goes into the head .. <script language="JavaScript" type="text/JavaScript"> <!-- function MM_preloadImages() { //v3.0 var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array(); var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++) if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}} } function MM_findObj(n, d) { //v4.01 var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) { d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);} if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n]; for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); if(!x && d.getElementById) x=d.getElementById(n); return x; } function MM_nbGroup(event, grpName) { //v6.0 var i,img,nbArr,args=MM_nbGroup.arguments; if (event == "init" && args.length > 2) { if ((img = MM_findObj(args[2])) != null && !img.MM_init) { img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src; if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array(); nbArr[nbArr.length] = img; for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) { if (!img.MM_up) img.MM_up = img.src; img.src = img.MM_dn = args[i+1]; nbArr[nbArr.length] = img; } } } else if (event == "over") { document.MM_nbOver = nbArr = new Array(); for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) { if (!img.MM_up) img.MM_up = img.src; img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up); nbArr[nbArr.length] = img; } } else if (event == "out" ) { for (i=0; i < document.MM_nbOver.length; i++) { img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; } } else if (event == "down") { nbArr = document[grpName]; if (nbArr) for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; } document[grpName] = nbArr = new Array(); for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) { if (!img.MM_up) img.MM_up = img.src; img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up; nbArr[nbArr.length] = img; } } } function MM_displayStatusMsg(msgStr) { //v1.0 status=msgStr; document.MM_returnValue = true; } //--> </script> The Body tag... <body background="/images/bg.jpg" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" onLoad="MM_preloadImages('images/home_down.gif','images/home_over.gif','images/events_down.gif','images/events_over.gif','images/news_down.gif','images/news_over.gif','images/forums_down.gif','images/forums_over.gif','images/newsletter_down.gif','images/newsletter_over.gif','images/galleries_down.gif','images/galleries_over.gif','images/links_down.gif','images/links_over.gif')"> and the table itself... <table border="0" cellpadding="0" cellspacing="0" width="672"> <tr> <td><a href="index.htm" target="_top" onClick="MM_nbGroup('down','navbar1','nav_r1_c1','images/home_down.gif',1);" onMouseOver="MM_displayStatusMsg('[ HOME !! ]');MM_nbGroup('over','nav_r1_c1','images/home_over.gif','images/',1);return document.MM_returnValue" onMouseOut="MM_nbGroup('out');"><img name="nav_r1_c1" src="images/nav_r1_c1.gif" width="96" height="20" border="0" alt="[ HOME !! ]"></a></td> <td><a href="events.htm" target="_top" onClick="MM_nbGroup('down','navbar1','nav_r1_c2','images/events_down.gif',1);" onMouseOver="MM_displayStatusMsg('[ ALL ABOUT UPCOMING EVENTS !! ]');MM_nbGroup('over','nav_r1_c2','images/events_over.gif','images/',1);return document.MM_returnValue" onMouseOut="MM_nbGroup('out');"><img name="nav_r1_c2" src="images/nav_r1_c2.gif" width="96" height="20" border="0" alt="[ WHATS ON !? ]"></a></td> <td><a href="news.php" target="_top" onClick="MM_nbGroup('down','navbar1','nav_r1_c3','images/news_down.gif',1);" onMouseOver="MM_displayStatusMsg('[ LATEST CLUBBING NEWS !! ]');MM_nbGroup('over','nav_r1_c3','images/news_over.gif','images/',1);return document.MM_returnValue" onMouseOut="MM_nbGroup('out');"><img name="nav_r1_c3" src="images/nav_r1_c3.gif" width="96" height="20" border="0" alt="[ LATEST CLUBBING NEWS !! ]"></a></td> <td><a href="/forums/index.php" target="_top" onClick="MM_nbGroup('down','navbar1','nav_r1_c4','images/forums_down.gif',1);" onMouseOver="MM_displayStatusMsg('[ POST IN OUR COOL FORUMS !! ]');MM_nbGroup('over','nav_r1_c4','images/forums_over.gif','images/',1);return document.MM_returnValue" onMouseOut="MM_nbGroup('out');"><img name="nav_r1_c4" src="images/nav_r1_c4.gif" width="96" height="20" border="0" alt="[ POST IN OUR COOL FORUMS !! ]"></a></td> <td><a href="newsletter.php" target="_top" onClick="MM_nbGroup('down','navbar1','nav_r1_c5','images/newsletter_down.gif',1);" onMouseOver="MM_displayStatusMsg('[ SIGN UP TO OUR WEEKLY NEWSLETTER !! ]');MM_nbGroup('over','nav_r1_c5','images/newsletter_over.gif','images/',1);return document.MM_returnValue" onMouseOut="MM_nbGroup('out');"><img name="nav_r1_c5" src="images/nav_r1_c5.gif" width="96" height="20" border="0" alt="[ SIGN UP TO OUR WEEKLY NEWSLETTER !! ]"></a></td> <td><a href="/gallery/" target="_top" onClick="MM_nbGroup('down','navbar1','nav_r1_c6','images/galleries_down.gif',1);" onMouseOver="MM_displayStatusMsg('[ SEE UPLOADED PICS OF EVENTS !! ]');MM_nbGroup('over','nav_r1_c6','images/galleries_over.gif','images/',1);return document.MM_returnValue" onMouseOut="MM_nbGroup('out');"><img name="nav_r1_c6" src="images/nav_r1_c6.gif" width="96" height="20" border="0" alt="[ SEE UPLOADED PICS OF EVENTS !! ]"></a></td> <td><a href="links.htm" target="_top" onClick="MM_nbGroup('down','navbar1','nav_r1_c7','images/links_down.gif',1);" onMouseOver="MM_displayStatusMsg('[ SEE OUR COOL LINKED SITES ]');MM_nbGroup('over','nav_r1_c7','images/links_over.gif','images/',1);return document.MM_returnValue" onMouseOut="MM_nbGroup('out');"><img name="nav_r1_c7" src="images/nav_r1_c7.gif" width="96" height="20" border="0" alt="[ SEE OUR COOL LINKED SITES ]"></a></td> <td><img src="images/spacer.gif" width="1" height="20" border="0" alt=""></td> </tr> </table> The funny thing is that before if i simply create a webpage with just the navbar it works ok its only when i integrate it things slow down . Anyone any ideas?Cheers in advance Jay
-
so if u get tired of it, surely it means you do care ? Anyways i was only trying to be helpful by giving you a decent config but obviously not appreciated
-
Your stats will actually look better if you use ur own layout instead of using arcangels and if u actually have some sense of colour coordination :\ looks better if you use transparency also. Heres the layout i wrote using 150 alpha transparency : <b><C:$829BB4>[</C></b> <NAME=CompName> <C:$829BB4><b>]</b></C> <b><C:$829BB4>[</C></b> <B>IP</B> <b><C:$829BB4>:</C></b> <NAME=IPAddr> <C:$829BB4><b>]</b></C> <b><C:$829BB4>[</C></b> <B>UP</B> <b><C:$829BB4>:</C></b> <NAME=Uptime FORMAT="*d* days, *H* hrs, *M* mins, *S* secs" SIZE=20> <C:$829BB4><b>]</b></C> <b><C:$829BB4>[</C></b> <NAME=DateTime FORMAT="'Date' dd/mm/yy 'Time' hh:nn"> <C:$829BB4><b>]</b></C> <C:$829BB4>-------------------</C> <b><C:$829BB4>[</C></b> <B>Proc %</B> <b><C:$829BB4>:</C></b> <NAME=ProcUsage LEADZERO DECIMAL SIZE=5 FORMAT="ALL"> <C:$829BB4><b>]</b></C> <b><C:$829BB4>[</C></b> <B>Processes</B> <b><C:$829BB4>:</C></b> <NAME=Processes SIZE=5>/<B>Threads</B> <b><C:$829BB4>:</C></b> <NAME=Threads SIZE=5> <C:$829BB4><b>]</b></C> <b><C:$829BB4>[</C></b> <B>PageUsed</B> <b><C:$829BB4>:</C></b> <NAME=PageUsed>/<B>PageTotal</B> <b><C:$829BB4>:</C></b> <NAME=PageTotal> <C:$829BB4><b>]</b></C> <b><C:$829BB4>[</C></b> <B>RAMUsed</B> <b><C:$829BB4>:</C></b> <NAME=RAMUsed>/<B>RAMTotal</B> <b><C:$829BB4>:</C></b> <NAME=RAMTotal> <C:$829BB4><b>]</b></C> <b><C:$829BB4>[</C></b> <B>Drive C</b> <b><C:$829BB4>:</C></b> <NAME=DriveSpace SIZE=5 FORMAT="C FREE"> <C:$829BB4><b>]</b></C> <b><C:$829BB4>[</C></b> <B>Drive D</b> <b><C:$829BB4>:</C></b> <NAME=DriveSpace SIZE=5 FORMAT="D FREE"> <C:$829BB4><b>]</b></C> The font is called ZeroTwos found here and is used at 8 point in white, it should look like this .... ----------------------------- ----------------------------- Also check out my new site, its not finished yet but still http://www.team-matrix.co.uk ClubUK.com will soon be mine Enjoy
-
OK heres all my stuff, my desktop my bootscreen and my longonui (Click for high res images)
-
Hey everybody!!! I just started creating this site not too sure what response its gonna get and theres not really much to it at the moment due to the fact i had a large holiday this summer heh. Im thinking about redoing it and changing the content (of whats already there lol) but was just interested in any critisim anyone has to offer. The website is at [ http://www.team-matrix.co.uk] as i havn't bought leets***.com yet. ps. dont be too harsh lol cheers [[Jay_$te@lth]]
-
its not my slow connection for one as the board loads almost instantly normally its only when i use back or refresh when it sometime happens. i am using ie6 and ive just formatted nothing to do with tempory internet files and ive never ever seen the problem on vbb and ive riun one for ages nice try aint got it yet i reckon its just invision!
-
i got some constructive critisism for ya. where u have the image with the forum title in it its in a white box :S.split the forums properly and use another image to end each forum too something like http://www.yaxay.com. i did one once too but i cant show you it as im using another style i made. try it out seriously will make it look better, also make the width of the forum around 80% its too slim
-
hey! i like the look of the new board and it runs well etc but it messes up sometimes when you refresh or use "back" in internet explorer. all the tables mess up and it all turns gray and some html code appears at the top where the "msfn board" link is.any ideas?
-
i lost all my custom fonts in format what a bunch of :assshake
-
lmfao!!!!i meant gfx wise piaqt not female wise
-
heh! i have this mouse http://www.microsoft.com/hardware/mouse/io_info.asp courtesy of fthrjack and its the best, i wouldnt swap it cheers bro
-
ill have a go bah but will be a couple of days got a lot of things going on at the moment but will knock something up for you
-
was necessary as i had somebody "grass" me up to vbulletin so i put htaccess on :S and the thing whereby you have to register before you see the board is also necessary so we dont get people theiving others hard work
-
i got my own board check www under my post looks good
-
woah!!the image is 953x61 its a big reduction ill see could u come on msn by any chance xper?
-
right i did yet another banner lol made some more image paths etc but didnt really fit with rest of the banner so i scrapped it, athough i have bevelled it so it fits nicer, also if someone could give me some kind of dimensions for this image ill resize it prontoso it can be used for anyone and everyone . One last thing any chance of promotion lol seeya around...
-
ill send it you at around 10:30 gmt bud im going to work and ill edit the msfn4 when i get back so see ya soon!
-
I dont know but its huge. Goes way off my screen. I'm using 800x600. Think you could make a script that makes it smaller a different logo for this screen size. Kinda makes the board look messed up. the forum resizes it bud ok i altered msfn 2 because of tris but seen as you all like msfn4i will make the changes i have to here http://www.team-matrix.co.uk/msfn7
-
cheers blackwar bud done some more although still gonna make slight alterations http://www.team-matrix.co.uk/msfn.jpg http://www.team-matrix.co.uk/msfn2.jpg http://www.team-matrix.co.uk/msfn3.jpg http://www.team-matrix.co.uk/msfn4.jpg http://www.team-matrix.co.uk/msfn5.jpg Links edited so that the page doesn't get wide --Blackwar
-
any suggestions on the type of text effects you'd like to see? btf fast reply babis!
-
maan!! i did the image but its not complete yet, but dont worry the stuff you dont like is what iwas changing as it was late when i was doing it :S new one should be done as soon as i format pc tonight