(* dm at mayart.de, Dezember 2008 Adobe Illustrator CS Alle Textobjekte werden auf ein neues Layer mit dem Namen "Text" verschoben. Das Skript muss im Apple Skripteditor als *.scpt gespeichert und kann unter Programme > Adobe Illustrator CSx > Vorgaben > Skripte abgelegt werden. Nach Neustart von Illustrator findet man es im Menü Datei > Skripten. Es geht auch mit dem Skript Menü in OS X (installieren mit AppleScript Utility in Programme > Applescript) oder besser mit FastScripts: . Hier liegen die Skripte in ~/Library/Scripts/... *) tell application "Adobe Illustrator" set pathTextCount to count (text frames of document 1) if (pathTextCount > 0) then set visible of every layer of document 1 to true set locked of every layer of document 1 to false set TextLayer to (make new layer at the beginning of document 1 with properties {name:"Text", locked:false}) repeat with itemCount from 1 to pathTextCount move (text frame itemCount of document 1) to end of TextLayer end repeat end if end tell