Skip to content

Instantly share code, notes, and snippets.

@t-f-m
Last active August 29, 2015 14:01
Show Gist options
  • Save t-f-m/acbfbe44beb1bbba45d6 to your computer and use it in GitHub Desktop.
Save t-f-m/acbfbe44beb1bbba45d6 to your computer and use it in GitHub Desktop.
//cf. http://www.openspc2.org/book/IllustratorCS/normal/016/index.html
//cf. http://www.openspc2.org/book/IllustratorCS/easy/015/index.html
newTxt = prompt(); //任意の文字を入力
txtObj = activeDocument.textArtItems;
for (i=0; i<txtObj.length; i++)
{
txtObj[i].contents += newTxt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment