Hi Mark, While we are looking into this, we found a possible workaround that may help you in the interim: Instead of calling exportPNG in loop, call exportPNG for entire sequence at once. This is controlled by the last argument to exportPNG. i.e. doc.exportPNG( pngFile, true, false); // last argument false means export entire timeline as a png sequence In a nutshell the following code needs to be replaced (there is a loop & last argument to exportPNG is true): for (var i=0;i<timeline.frameCount;i++) { timeline.currentFrame = i; pngFile = strTarget+pad(i + 1)+'.png'; //debug(pngFile); doc.exportPNG(pngFile,true,true); iFrameLength++; } Modified jsfl script is posted at Adobe Creative Cloud for your reference. Please watch out for png naming convention while trying this workaround. Thanks! Mohan
... View more