Created
May 29, 2025 05:21
-
-
Save monokano/13f3935c419c87ce253ef169acfbb1b8 to your computer and use it in GitHub Desktop.
InDesignのXMLタグを全削除するAppleScript
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
| tell application id "com.adobe.InDesign" | |
| tell active document | |
| try | |
| -- 適用されているタグのマップを除去する | |
| set pageItems to all page items | |
| repeat with aItem in pageItems | |
| set aTag to associated XML element of aItem | |
| if aTag ≠ nothing then untag aTag | |
| end repeat | |
| end try | |
| -- 未使用のタグを削除する | |
| delete unused tags | |
| end tell | |
| end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment