Eyeon:Script/Reference/Applications/Fusion/Classes/Composition/Redo
From VFXPedia
< Eyeon:Script | Reference | Applications | Fusion | Classes | Composition
Contents |
Composition : Redo
Arguments
Redo ( count )
- count (required, number)
the count argument specifies how many undo events to trigger.
Returns
This function does not return any values.
Remarks
The Redo function reverses the last undo event in Fusion. The count argument determines how many undo events are reversed.
Note that the value of count can be negative, in which case Redo will behave as an Undo, acting exactly as the Undo() function does.
Requirements
- eyeonScript 5.0
- Fusion 5.0
Examples
composition:StartUndo("Replace Clips")
... set some clip names ... set 'err = true' if we have a problem, like, say, ... clip not found for one of our loaders.
composition:EndUndo(true)
if err then
composition:Undo(1) -- Back out of the changes!end
Tips for Redo (edit)
EyeonTips:Script/Reference/Applications/Fusion/Classes/Composition/Redo