Eyeon:Script/Reference/Applications/Fusion/Classes/Operator/SaveSettings

From VFXPedia

Jump to: navigation, search

Contents

Tool : SaveSettings

Arguments

bool | table = SaveSettings ( [ path ] )

  • path (optional, string)

A valid path to the location where a .setting file will be saved.

Returns

If a path is given, the tool's settings will be saved to that file, and a boolean is returned to indicate success.

If no path is given, SaveSettings() will return a table of the tool's settings instead.

Remarks

This function saves the tool's settings to a table, or to a .setting file specified by the path argument.

Requirements

  • eyeonScript 5.0
  • Fusion 5.0

Examples

settingtable = ColorCurve1:SaveSettings()
writefile("fusion:\\settings\\ccv_project1.setting", settingtable)

or simply:

ColorCurve1:SaveSettings("fusion:\\settings\\ccv_project1.setting")

See Also

LoadSettings(), CopySettings() , Paste()


Tips for SaveSettings (edit)

EyeonTips:Script/Reference/Applications/Fusion/Classes/Operator/SaveSettings