Eyeon:Script/Reference/Applications/Fusion/Classes/Input/WindowControlsVisible

From VFXPedia

Jump to: navigation, search

Contents

Input : WindowControlsVisible()

Arguments

WindowControlsVisible()

Returns

Returns the visible state of an input's tool window control. Returns an error if not called from an input.

Remarks

Use this function to determine the visible state of a tool window control.

Requirements

  • eyeonScript 5.0
  • Fusion 5.0

Examples

-- Prints the visible state of all window controls for a tools

inputList = tool:GetInputList()

for i, input in inputList do

attrs = input:GetAttrs()
print(attrs.INPS_Name.." : 

"..input:WindowControlsVisible()) end


Tips for WindowControlsVisible (edit)

EyeonTips:Script/Reference/Applications/Fusion/Classes/Input/WindowControlsVisible