JSL: Slider Box Set Value
Hi everyone, Here is the code from the Scripting Index for creating a Slider Box:Names Default To Here( 1 );
sliderValue = .6;
New Window( "Example",
Panel Box( "Slider Box",
tb = Text Box( "Value: " || Char( sliderValue ) ),
sb = Slider Box(
0,
1,
sliderValue,
tb << Set Text( "Value: " || Char( sliderValue ) )
)
)
); If you run this example, you can right-click the slider to s...