July 3rd, 2012, 12:48 AM
|
#4 (permalink)
|
|
Junior Member
Join Date: Mar 2012
Location: Louisiana, USA
Posts: 34
Device(s): Asus Eee Transformer
Carrier: Not Provided
Thanks: 1
Thanked 4 Times in 3 Posts
|
In Screen Designer, drag out a Clock component from the Basic tab.
In the properties window, uncheck Timer Allways Fires.
set the Interval to 5000. (milliseconds)
Uncheck the Visible method for Button1.
In the Blocks Editor:
Drag out a Clock1.Timer event block.
inside the Clock1.Timer event block put your Button1.Visible block and set it to true.
When the user switches to the screen with the button, or if it is in Screen1 when the app opens, there will be a 5 second delay before the button appears.
The way a timer works, it's delay happens first then the blocks inside get executed, not the other way around.
|
|
|
Last edited by appinventor; July 3rd, 2012 at 12:50 AM.
Reason: extra text
|
|