KyoNiwa 0 Report post Posted September 18, 2004 Does anyone know how to make some cool java script stuff? Is the possiblities endless in terms of designing things and comming up with stuff? For example... how do you make that trailing text... i think that is java script. Share this post Link to post Share on other sites
kraizii88z 0 Report post Posted September 18, 2004 Hello, Just copy/paste scriptcodes for most of your javascript needs. For an 'endless' supply of javascript scripts check out these sites:: http://www.dynamicdrive.com/ https://smallbusiness.yahoo.com/ https://www.codeschool.com/ -These are free & tend to be the best starts to finding all the javascripts you want. to find out about Javascript Tutorials, though, to make your own javascripts, go to http://www.pageresource.com/ http://www.w3schools.com/js/default.asp Share this post Link to post Share on other sites
KyoNiwa 0 Report post Posted September 20, 2004 Wow... Thank you So much kraizii88z.I have another quick question before I look at all the links you gave me ... I was wondering if there was a way to make a javascript alert that flashes and shakes a few times... thanks again Share this post Link to post Share on other sites
melanie 0 Report post Posted September 21, 2004 Don't know about making an alert shake, but you can make the window shake with java. <script type="text/javascript"> <!-- function shake(n) { if (parent.moveBy) { for (i = 10; i > 0; i--) { for (j = n; j > 0; j--) { parent.moveBy(0,i); parent.moveBy(i,0); parent.moveBy(0,-i); parent.moveBy(-i,0); } } } } // --> </script> Trailing text....go here:http://www.hypergurl.com/trailingtext.html Share this post Link to post Share on other sites
roninmedia 0 Report post Posted September 22, 2004 Please don't go overboard with javascript and other dynamic features. It gets annoying to some users. Share this post Link to post Share on other sites
antitoxic 0 Report post Posted September 23, 2004 If someone is interested in scripts please visit http://forums.xisto.com/no_longer_exists/ are lots of them.. And here is 700 very nice javascript in case you don't want to search over the net: http://www.davidpye.com/freeware/files/jsvault.zip Share this post Link to post Share on other sites
marijnnn 0 Report post Posted September 23, 2004 <script language="Javascript">alert ("This is a Javascript Alert")</script> that's for the javascript alert.i have a script that i used for my pictures. when you click on the thumbnail, it pops up a new window with the original picture. the window adapts its size to the picture, so you don't have borders or stuff like that. javascript is cool, but indeed, don't overdo! and think about the fact that some users have javascript disabled, so they won't see any of the special effects. you should make sure that they can still see everything, even with jscript disabled! Share this post Link to post Share on other sites
hast-webben 0 Report post Posted October 6, 2004 Hi, I know that I might had mentioned this a couple of time in other cases. But the most of any scripts that I've been used and downloaded did I done from the most favorite place as follow: http://www.hotscripts.com/ It's a good board and if you can find what you're searching for there, is there the most of the time some reference to other sites where you can find what you're looking for. I hope that this gave you something. Cheers Brgds Jens Jonassen Share this post Link to post Share on other sites