How would I go about creating a dialog the continuously creates a rollout until the numbered limit is up, or if the user hits Cancel the whole operation is terminated.
fn fnCounter = (
for i = 1 to 4 do
(
global loopCount = i
rollout rlCool ""
(
button btnGo "GO"
button btnCancel "Cancel"
label lbLoopCounter "1"
on rlCool open do
(
lbLoopCounter.text = loopCount as string
)
)
createDialog rlCool 150 150
)
)
clearlistener()
fnCounter()
By JokerMartini · 2012-02-13
Anubis · 2012-02-13
miauu · 2012-02-13