Skip to content

Instantly share code, notes, and snippets.

@tokejepsen
Created September 22, 2020 13:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tokejepsen/2ac0b9e48cb964af8c3e46fd1f1b5077 to your computer and use it in GitHub Desktop.
Save tokejepsen/2ac0b9e48cb964af8c3e46fd1f1b5077 to your computer and use it in GitHub Desktop.
NukeStudio: Remove tag
import hiero
seq = hiero.ui.activeSequence()
selection = hiero.selection
for item in selection:
if isinstance(item, hiero.core.EffectTrackItem):
continue
for tag in item.tags():
if tag.name() == "Comment":
item.removeTag(tag)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment