Wiki

Clone wiki

aequery / misc / undoGroup

aeq.createUndoGroup(name, callback, [args])

aeq.createUndoGroup(string, function, [array]) aeq.undoGroup(string, function, [array])

  • Description:
    • Creates a new undogroup and executes the function.
  • Parameters:
    • name: String. The name of the undo group. This is what is shown in the Edit menu in After Effects.
    • callback: Function. The function to execute inside the undo group.
    • args: Array. An array of arguments to pass to the callback function.
  • Returns:
    • Nothing.

Updated