How do you translate the english (below) into actionscript?
If the the movie clip with the instance name “hello” is currently at a frame greater than 2 (considering the frames inside “hello,” not the main timeline), then goto and play its frame 76.
How do you translate the english (below) into actionscript?
If the the movie clip with the instance name “hello” is currently at a frame greater than 2 (considering the frames inside “hello,” not the main timeline), then goto and play its frame 76.
hello.onEnterFrame = function() {
_currentframe >2 ? _root.gotoAndPlay(76) : null
}
:: Copyright KIRUPA 2024 //--