Thanks. It worked. I also added a second condition so it didn't clear when switching away from Cleanup:
Code:
program:
vl = globals(_event_args) != 'Cleanup' && view_manager_last_view() != 'Cleanup'
However, the last_view part isn't quite working. Any ideas?
EDIT: I think the && should be an or. Need to figure that out.
EDIT:
Code:
program:
vl = globals(_event_args) != 'Cleanup' || view_manager_last_view() != 'Cleanup'
= 1
clears it for everything. I'm not sure what I did wrong.