Hi Bisser,

Using Revolution can I add controls dynamically like buttons, text boxes, labels etc using code during runtime?
Yes :-)

But runtimes/standalones will have the 10 statement limit
just like the starter kit.

This ONLY appeals to new created objects (during runtime).

Best Regards
Bisser Milanov
Hope that helps.


Regards


Klaus Major
[EMAIL PROTECTED]



P.S.
In case you want to know how to to that ;-)

Here is an example:

on mouseup # or whenever
  lock screen ## so the ready button will appear
  create button "Name of your new button here"
  set the label of last button to "Your label here"
  ### since it is the latest created control you can refer to it
  ### this way...
  set the loc of last button to ...
  set ... etc...
  unlock screen
end mouseup

Check the index for "create"...

_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to