SaveCueInfo(cueInfo)

cueInfo is the CueInfo class/structure to save.

This function will store the passed CueInfo class/structure. This is useful when the structure has been modified and the changes need storing. For every call to SaveCueInfo, an entry in the applications Undo/Redo stack will be created so that it is possible to Undo the action after the script has finished.

Example.

cueinfo = CueInfo:GetSelectedCueInfo()
if cueinfo ~= nil then
    cueinfo.Image1Caption = "Photo 1 Caption"
    SaveCueInfo(cueinfo)
end

This will change the caption for image 1 to Photo 1 Caption for the selected cue.

Was this helpful?

Yes No
You indicated this topic was not helpful to you ...
Could you please leave a comment telling us why? Thank you!
Thanks for your feedback.