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

From VFXPedia

Jump to: navigation, search

Contents

Tool : GetControlPageNames

Summary

This function returns a list of control page names for the specified tool.


Arguments

table = GetControlPageNames()


Returns

Returns a table of name strings, indexed by page number.


Requirements

  • eyeonScript 5.0
  • Fusion 5.3


Examples

-- this Tool script prints out the name
-- of every control page on the selected tool
 
tbl = tool:GetControlPageNames()
 
for i,name in pairs(tbl) do
 
   print(name)
 
end

See Also


Tips for GetControlPageNames (edit)

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