Created
November 9, 2011 00:50
-
-
Save kanemu/1349910 to your computer and use it in GitHub Desktop.
[indesign]ドキュメントのxmlタグを全部解除する。
This file contains 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
var doc=app.activeDocument; | |
var items = doc.allPageItems; | |
for(var i=items.length-1;i>=0;i--){ | |
var item = items[i]; | |
if(item.associatedXMLElement){ | |
items[i].associatedXMLElement.untag(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment