S N E A K E R S
The functionality of this application can be modified by editing the values passed to shockwave in the HTML source of this page:
<!-- ----------------------------------------------- -->
<!-- alan's shockwave or java sneakerizer
may be freely used but not charged for,
we like to get credit, stroke our egos!
You can modify the effect be editing the values
in the OBJECT and EMBDED tags as follows:
sw1 the final message that appears
sw2 a fudge factor for how long it takes
for the sneakering to occur. Each letter
gets an iteration =random
sw2 + 10 * random(sw2)
sw3 the size of the courier font; longer strings
will need smaller font sizes and watch out for
the difference on Mac versus Windows systems!
Edit the Applet tags for Java as follows:
p1 the final message that appears
p2 a fudge factor for how long it takes
for the sneakering to occur. Each letter
gets an iteration =random
sw2 + 10 * random(sw2)
Edit these parts of the JavaScript:
if ( ShockMode ) {
document.write('<OBJECT classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000"');
document.write(' codebase="http://active.macromedia.com/director/cabs/sw.cab"');
document.write(' ID=sneakerj WIDTH=480 HEIGHT=80>');
document.write(' <PARAM NAME=src VALUE="sneakerj.dcr"> ');
document.write(' <PARAM NAME=sw2 VALUE=36 >');
document.write(' <PARAM NAME=sw1 VALUE="Director Geek!" >');
document.write(' <PARAM NAME=sw3 VALUE=24 >');
document.write('');
document.write('<EMBED SRC="sneakerj.dcr"');
document.write(' swLiveConnect=FALSE WIDTH=480 HEIGHT=80 sw2=36 sw1="Director Geek!" sw3=24');
document.write(' TYPE="application/x-director" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveDirector">');
document.write('</EMBED>');
document.write('</OBJECT>');
} else if ( JavaOK ) {
if (navigator.appName && navigator.appName.indexOf("Netscape") >= 0 && navigator.appVersion.indexOf("4.") >= 0)
document.write('<APPLET CODE=sneakerj ARCHIVE=sneakerj.jar WIDTH=480 HEIGHT=80>')
else
document.write('<APPLET CODE=sneakerj ARCHIVE=sneakerj.zip WIDTH=480 HEIGHT=80>')
document.write(' <PARAM NAME=ShockwaveMediaFile VALUE="sneakerj.djr"> ');
document.write(' <PARAM NAME=cabbase VALUE="sneakerj.cab"> ');
document.write(' <param name=p1 value="Holy Java, Batman!">');
document.write(' <param name=p2 value="30"> ');
document.write('</APPLET>');