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

From VFXPedia

Jump to: navigation, search

Contents

Tool : LoadSettings

Arguments

LoadSettings ( path | table )

  • path (required, string)

The path to a valid .setting file.

  • table (required, table)

A valid table of settings, such as produced by SaveSettings() or read from a .setting file.

Returns

This function does not return any values.

Remarks

The LoadSettings function is used to load .setting files or tables into a tool. This is potentially useful for any number of applications, such as loading curve data into fusion, for which there is currently no simple way to script interactively in Fusion. Beyond that, it could possibly be used to synch updates to tools over project management systems.

Requirements

  • eyeonScript 5.0
  • Fusion 5.0

Examples

settingtable = readfile("fusion:\\settings\\ccv_project1.setting")
ColorCurve1:LoadSettings(settingtable)

or simply:

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

See Also

SaveSettings(), CopySettings() , Paste()


Tips for LoadSettings (edit)

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