Skip to content

Instantly share code, notes, and snippets.

@monokano
Created May 29, 2025 05:21
Show Gist options
  • Select an option

  • Save monokano/13f3935c419c87ce253ef169acfbb1b8 to your computer and use it in GitHub Desktop.

Select an option

Save monokano/13f3935c419c87ce253ef169acfbb1b8 to your computer and use it in GitHub Desktop.
InDesignのXMLタグを全削除するAppleScript
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