-
-
Notifications
You must be signed in to change notification settings - Fork 822
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
avm1: tellTarget on an undefined object targets the base clip in SWF6-
- Loading branch information
Showing
7 changed files
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Target not found: Target="dummy" Base="_level0.mc" | ||
/tellTarget('dummy') { gotoAndPlay(n); } | ||
pass | ||
/tellTarget(undefined) { gotoAndPlay(5); } | ||
/tellTarget(undefined) { gotoAndStop(5); } | ||
/tellTarget(undefined) { gotoAndPlay(n); } | ||
pass |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Target not found: Target="dummy" Base="_level0.mc" | ||
/tellTarget('dummy') { gotoAndPlay(n); } | ||
pass | ||
/tellTarget(undefined) { gotoAndStop(5); } | ||
This should only be reached in SWF6 and below |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# This test was compiled from the same source as `tell_target_invalid`. | ||
# The header was edited to SWF version 6 using JPEXS FFDec. | ||
num_frames = 5 |