説明
GetUIChannelIndex 関数は、指定された2つのインデックス番号にマッチするUIチャンネルのインデックス番号を返します。
引数
戻り値
- integer:
UIチャンネルのインデックス番号を返します。
例
現在のセレクションにある最初のフィクスチャの Dimmer アトリビュートに対するUIチャンネル・インデックスを出力します。
|
return function() local attributeIndex = GetAttributeIndex("Dimmer") local uiChannelIndex = GetUIChannelIndex(SelectionFirst(),attributeIndex) if (attributeIndex == nil or uiChannelIndex == nil) then ErrPrintf("Something went wrong, maybe your first selected fixture don't have a Dimmer - Please try again") return end Printf("The UI Channel Index is " .. uiChannelIndex) end |