I'm doing some testing with screen actions...and I've run into a problem.
So in my test project I have two test variables, "checker1" and "checker2"; they are initialized to be None at the start of my project.
So far so good.
I have added the following code to the preferences screen:
Code: Select all
on "show" action SetVariable("checker1", 1)
on "hide" action SetVariable("checker2", 2)What do I get?
checker1 == 1
checker2 == None
So the on show is working, but the on hide isn't.
So rather than on "hide", I tried on "replaced" and also on "replace"--no luck. There are no other On events.
I don't get any errors. And the variable is changed on show...but nothing happens on hide.
So...what is going on?


