Created
May 10, 2012 17:38
-
-
Save ff6347/2654645 to your computer and use it in GitHub Desktop.
Alert selection in illustrator
This file contains hidden or 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
app.activeDocument.selection; |
This file contains hidden or 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
// InDesign & Illustrator | |
var firstListItem = app.activeDocument.selection[0]; // first object in selection | |
if(firstListItem instanceof TextFrame){ /* check the type */ | |
alert("I am a " + firstListItem.constructor.name); // and name it | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This Gist is part of MT4D coming soon on fabiantheblind.info