Complete Newbie needs help
Posted: Mon Mar 04, 2013 9:28 pm
Feel like it sometimes.
Make two stacks ("main1" and "main2") Put a button on "main1"
Put this into the button script:
Terrific. Look, it blinks!
Now this:
focus stays on "main2"
Unlocking the screen (commented out above) just before returning makes it work as advertised. So what?
HC does not do this. What have I forgotten? Or rather, what did I not learn? Don't talk to me about the dictionary.
Craig Newman
Make two stacks ("main1" and "main2") Put a button on "main1"
Put this into the button script:
Code: Select all
on mouseUp
go stack "main2"
go stack "main1"
end mouseUp
Now this:
Code: Select all
on mouseUp
lock screen
go stack "main2"
--unlock screen
go stack "main1"
end mouseUp
Unlocking the screen (commented out above) just before returning makes it work as advertised. So what?
HC does not do this. What have I forgotten? Or rather, what did I not learn? Don't talk to me about the dictionary.
Craig Newman