Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
core: Fix stop() when executing attachMovie in DoInitAction
This fixes a bug where the code in the first frame of a movie clip could have been executed after the second frame (so that instructions like stop did not work properly). That is because when the first frame was executed in preload (e.g. for a sprite attached using attachMovie), the actions were queued, the second frame was executed in run_frame, and then the actions from the first frame were executed. Ensuring that all actions are executed after preload fixes this issue.
- Loading branch information