
-----------------------------------
chrispaks
Wed May 18, 2005 4:38 pm

Procedures in Procedures, and &quot;going back&quot; buttons
-----------------------------------
Im having problems with putting procedures in procedures...

Such as (for example, some things are missing but this is an example):

proc test1
  put "hi"
  put "press button to ask for whats up"
 var b2 := GUI.CreateButton (235, 280, 200, "Say whats up", SecondThing)
end test1

proc SecondThing
 put "Whats up?"
 test1 