Howdo i make a list with a progress bar that shows up text that i want in a list evry 0.5 seconds for 10 seconds?
And the progres bar buffer for ten secondS.
Is this possible?
Thanks
Well it sounds like you will need 2 timers. One set to a interval of 500 - the other set to 10000.
timer1.interval = 10000
timer2.interval = 500
on timer1_ontick [or w.e it is :P]
if timer2.enabled = false then
timer2.enabled = true
else
timer2.enabled = false
end if
on timer2_ontick [or w.e it is xD]
listbox1.items.add("YOOOO!")
if progressbar1.value < 100 then
progressbar1.value = progressbar1.value + 5
else
timer2.enabled = false
end if
Sorry for the messy coding, but something like that should work!