You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When selecting either "Variable Frame" or "Reuse Frames", the exported JSON seems to missing frames.
I made a simple example where frame 1 has the label "first" and frame 6 has the label "second". Each frame contains a text field with the frame number in it.
Looking at the png, all frames are rendered, but the json for "animations" looks like this when using complex mode (either "Variable Frame or "reuse Frames" selected):
I tried with different swf's, and the issue seems to always happens in complex mode, but if you want to have a look at an example fla, let me know where you like me to send it to.
Many thanks,
Leo
The text was updated successfully, but these errors were encountered:
Had a look at the source, and came up with a fix.
I changed line 760 in com.gskinner.zoe.utils.CaptureSWF from: for (var i:uint=start;i<end;i++) {
to: for (var i:uint=start;i<=end;i++) {
Greetings,
When selecting either "Variable Frame" or "Reuse Frames", the exported JSON seems to missing frames.
I made a simple example where frame 1 has the label "first" and frame 6 has the label "second". Each frame contains a text field with the frame number in it.
Looking at the png, all frames are rendered, but the json for "animations" looks like this when using complex mode (either "Variable Frame or "reuse Frames" selected):
Disabling complex mode the same swf gives the following value for "animations":
What happened to frames 4 and 10 in complex mode?
I tried with different swf's, and the issue seems to always happens in complex mode, but if you want to have a look at an example fla, let me know where you like me to send it to.
Many thanks,
Leo
The text was updated successfully, but these errors were encountered: