a doubt.

BlitzPlus Forums/BlitzPlus Beginners Area/a doubt.

Yue(Posted 2012) [#1]



I have a text area in my installer, so that the user sees the text below uses the slider on the right of the text area, what I need is that when the slider is at the bottom, select the Next button, can this be done?


Yasha(Posted 2012) [#2]
When you receive a "gadget action" event for the slider:
-- check whether it's at the bottom using SliderValue
-- If so, activate the button with SetButtonState

...you probably don't need to bother to deactivate the button if they move the slider up again: if it's been to the bottom once, they've read, or pretended to read, to the bottom as well.


Yue(Posted 2012) [#3]
Hi, I use the text area is created as follows:
Txt_Text% = CreateTextArea (10,50,270,100,Win%,1)


Maybe I'm doing something wrong, and I'm probably not using the correct control to display the information.

and to activate the button enablegadget
EnableGadget(...)


Last edited 2012

Last edited 2012