/*
Gradual-Highlight Image Script II-
By J. Mark Birenbaum (birenbau@ugrad.cs.ualberta.ca)
Permission granted to Dynamicdrive.com to feature script in archive
For full source to script, visit http://dynamicdrive.com
*/
nereidFadeObjects = new Object();
nereidFadeTimers = new Object();
/* object - image to be faded (actual object, not name);
* destop - destination transparency level (ie 80, for mostly solid)
* rate - time in milliseconds between trasparency changes (best under 100)
* delta - amount of change each time (ie 5, for 5% change in transparency)
*/
function nereidFade(object, destOp, rate, delta){
if (!document.all)
return
if (object != "[object]"){ //do this so I can take a string too
setTimeout("nereidFade("+object+","+destOp+","+rate+","+delta+")",0);
return;
}
clearTimeout(nereidFadeTimers[object.sourceIndex]);
diff = destOp-object.filters.alpha.opacity;
direction = 1;
if (object.filters.alpha.opacity > destOp){
direction = -1;
}
delta=Math.min(direction*diff,delta);
object.filters.alpha.opacity+=direction*delta;
if (object.filters.alpha.opacity != destOp){
nereidFadeObjects[object.sourceIndex]=object;
nereidFadeTimers[object.sourceIndex]=setTimeout("nereidFade(nereidFadeObjects["+object.sourceIndex+"],"+destOp+","+rate+","+delta+")",rate);
}
}
Wednesday, April 25, 2007

To start of with, I already started meddling around with Adobe Photoshop CS already, it's essential for my course topic called ASS Gra (essential graphics). To keep you all updated, it's 2.35am right now, I just finished an intensive 3 hours counter strike game with my secondary school friends, and fard is over here staying for the night. It was CCA orientation thingy today, I signed up for archery and music vox so far, I will be signing up for soccer and dance maybe, I don't know. Did not do too much today, only watching Euro trip inside the library on my laptop. I've watched that show for about a dozen times already. But steph and dezere(I don't know how to spell your name) have not watched the show. Me, Fard & Wayne apparently bored I guessed. I have another 9 more hours before I attend the Dj talk shit at Tp later on.
Signing out,
Iman


