View Single Post
Old 09-26-2021, 09:15 AM   #726
capink
Wizard
capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.
 
Posts: 1,203
Karma: 1995558
Join Date: Aug 2015
Device: Kindle
You need to remove the assignment:

Code:
program:
    globals(_event_args) != 'Cleanup' && view_manager_last_view() != 'Cleanup'
If you want to keep the assignment for readability:

Code:
program:
    vl = globals(_event_args);
    vl != 'Cleanup' && view_manager_last_view() != 'Cleanup'

Last edited by capink; 09-26-2021 at 09:19 AM.
capink is offline   Reply With Quote