Skip to content

Instantly share code, notes, and snippets.

@Hoikohroh
Created December 20, 2014 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hoikohroh/15c5a103d04b00e8d744 to your computer and use it in GitHub Desktop.
Save Hoikohroh/15c5a103d04b00e8d744 to your computer and use it in GitHub Desktop.
Flash script(jsfl):select None
var doc = fl.getDocumentDOM();
var tl = doc.getTimeline();
var tmpFrame = tl.currentFrame;
for (var i = 0; i < tl.frameCount; i++ ){
tl.currentFrame = i;
doc.selectNone();
};
tl.currentFrame = tmpFrame;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment