You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to implement a script to move any pasted clips to a particular group. So when I use the delete clips, I can simply delete all non-grouped clips as they aren't used in any pastes.
However, this below script has no effect if used as a On Paste Script, it works fine when used as a On Copy Scripts
clip.SetParentId(61672);
return false;
From my reading, the On Paste Scripts can decide whether to do the paste or change what's pasted, but not modifying the clip itself.
Is it possible to implement the such an use case in Ditto's scripting? Maybe with the explicit call to clip.save() or similar to allow clip modification.
The text was updated successfully, but these errors were encountered:
I tried to implement a script to move any pasted clips to a particular group. So when I use the delete clips, I can simply delete all non-grouped clips as they aren't used in any pastes.
However, this below script has no effect if used as a On Paste Script, it works fine when used as a On Copy Scripts
From my reading, the On Paste Scripts can decide whether to do the paste or change what's pasted, but not modifying the clip itself.
Is it possible to implement the such an use case in Ditto's scripting? Maybe with the explicit call to
clip.save()
or similar to allow clip modification.The text was updated successfully, but these errors were encountered: