DeadCell
05-23-2002, 08:11 PM
ok... so i have a button and movie clip on main stage... the button simple moves the movie clip from frame 1 to frame 2...
on frame two is a box...
actionscript for frame 2 is:
count = 1;
while (count<100) {
setProperty(menu, _alpha, 10);
count += 1;
}
frame 3:
GotoandPlay (2);
what i want is to be able to use setproperty to add 10% to transparency everytime the frame is hit... how do i do this? i have tried various things, thank you!
on frame two is a box...
actionscript for frame 2 is:
count = 1;
while (count<100) {
setProperty(menu, _alpha, 10);
count += 1;
}
frame 3:
GotoandPlay (2);
what i want is to be able to use setproperty to add 10% to transparency everytime the frame is hit... how do i do this? i have tried various things, thank you!