We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c9a7b1 commit e894a89Copy full SHA for e894a89
core/src/display_object/movie_clip.rs
@@ -744,9 +744,11 @@ impl<'gc> MovieClip<'gc> {
744
self.play();
745
}
746
747
- // When performing goto, frame scripts behave the same as when entering a new frame
748
- // so no separate cleanup is performed on ones registered during frame script phase
749
- context.frame_script_cleanup_queue.clear();
+ if self.swf_version() >= 10 {
+ // When performing goto, frame scripts behave the same as when entering a new frame
+ // so no separate cleanup is performed on ones registered during frame script phase
750
+ context.frame_script_cleanup_queue.clear();
751
+ }
752
753
// Clamp frame number in bounds.
754
let frame = frame.max(1);
0 commit comments