-
question about slider in UI panel
hello guys,
I have another little question…
As you know we can create a slider in UI panel with scripts
But I want to know is it possible to connect an expression to the slider???
for example if we create a panel with codes like this:var w = new Window ("dialog");
var e = w.add ("edittext", undefined, 50);
var slider = w.add ("slider", undefined, 50, 0, 100);
var button = w.add("button", undefined, "Connect");
slider.onChanging = function () {e.text = slider.value;}
w.show ();and now if we want to connect an effect property like Blend with original in Invert effect to that slider, what we must to do???
Shahrokh