説明
The GetFaderText function returns a text string indicating a fader value for the object.
引数
- handle:
The function takes a handle of the type "light_userdata" as an argument. It can be omitted when using the colon notation on an object. See the examples below.
- table:
The table can contain two different elements: Token and Index. The important element is the token.
- Token: This is used to specify which fader the value is requested for. These are the valid values:
- FaderMaster
- FaderX
- FaderXA
- FaderXB
- FaderTemp
- FaderRate
- FaderSpeed
- FaderHighlight
- FaderLowlight
- FaderSolo
- FaderTime
戻り値
- string:
The function returns a text string indicating the fader value.
例
This example prints the fader value text of the Master and Rate faders for the selected sequence.
|
return function() local selectedSequence = SelectedSequence() local faderMasterText = selectedSequence:GetFaderText({}) local faderRateText = selectedSequence:GetFaderText({token="FaderRate"}) Printf("The selected sequence Master fader value text is: ".. tostring(faderMasterText)) Printf("The selected sequence Rate fader value text is: ".. tostring(faderRateText)) end |