View Full Version : i want to do the fast blinking effect.
hrpremier
08-07-2003, 01:15 AM
now i tried to figure out my own actionscript which i can easily set a variable for a mc for how many times it blinks but it dosent work..
Can anyone help please?
farafiro
08-07-2003, 06:35 AM
search for "blinking"
hrpremier
08-07-2003, 09:50 PM
ok i admit im a complete tool, but i even searching i cant find an easy to implement action on my mc that makes it blink...
i found the star one but couldnt implement on my mc... me very noob remember... :)
binkyboo
08-07-2003, 11:28 PM
I'm in a bit of a hurry. Hope this helps:)
myInterval = setInterval(blink, 100);
blinking = true;
function blink() {
if (blinking == true) {
_root.movieClip._visible = false;
blinking = false;
} else {
_root.movieClip._visible = true;
blinking = true;
}
}
pixelwit
08-08-2003, 03:26 AM
Another way (http://www.actionscripts.org/forums/showthread.php3?s=&threadid=28826&highlight=flicker).
-PiXELWiT
http://www.pixelwit.com
binkyboo
08-08-2003, 10:30 AM
I've learned something yet again! Thanks pixelwit.
pixelwit
08-08-2003, 11:03 AM
Welcome.
-PiXELWiT
http://www.pixelwit.com
|
vBulletin® v3.8.4, Copyright ©2000-2009, Jelsoft Enterprises Ltd.