PDA

View Full Version : button rollover


gezzus234
04-07-2002, 08:13 AM
how do i get it so when i rollover a button, it stops n hides a mc thats on the stage?



and also, im using this coding for the motion effect
frame one ....

loops = "0";
blurs = "6";

frame 2...
if (Number(loops)<Number(Number(blurs)+1)) {
duplicateMovieClip ("clip1", "clip" add loops, loops);
setProperty ("clip" add loops, _alpha, 75-(loops*(50/blurs)));
loops = Number(loops) +1;
}

frame 3...

gotoAndPlay (2);



how can i use that so that all the objects named "clip1" will have this action script to it?

Billy T
04-07-2002, 08:33 AM
question 1 -

on(rollOver){
_root.mc.stop();
_root.mc._visible=false;
}

question 2 - you can't have multiple mc's with the same instance name

cheers