I have a movie with multiple layers. On the action layer I have an Actionscript 3.0 script in the first frame. In the text layer I have text that moves across the stage a total of 240 frames. The swf is called from a C# program.
The problem I’m having is that the actionscript is not executing unless the movie is in frame 1 of the timeline. If I try to call a function at any other time nothing happens. If I try to copy the keyframe from frame 1 into any other frame I receive an error that there are duplicate functions/variables. Is there a way to call the same script anywhere on the timeline?
Thanks for the help.
Gary
Each frame of a movie clip stay separate, but in the end look at the concept of
thisis all the same object. if assume 1 frame have a function name isdoStuff(), to another framedoStuff()function you can copy all of frame, not available you’ve got duplicate violation. becuase all frame is eventually same MovieClip reference. Only difference is that frame.this is three options for a solution.