Hi guys, I feel like this is going to be a stupid question but here goes nothing. In my project I want to make use of system.gui.confirm / errorBox / warningBox but I cannot for the life of me figure out how to implement it - maybe I am just missing something obvious. As a test I created a temp function that counts the amount of times someone tried to navigate to a page I am still working on a throws a message that the screen isn't available with a count of how many people tried. If I run the code in the designer/script editor I get the popup box as I want, then I copied the code to the gateway script library and if I call it from the script editor I get the popup. But if I try to paste the code in a button event script or call the gateway script from a button event I get the error that system.gui doesn't exist. Can someone please point me in the right direction.
EDIT:
def screenNotReady(clicked):
links = {
'bereiding' : '[default]Project_Variables/ScreenNotDone/Bereiding',
'silos' : '[default]Project_Variables/ScreenNotDone/Silos',
'branderij' : '[default]Project_Variables/ScreenNotDone/Branderij',
'molens' : '[default]Project_Variables/ScreenNotDone/Molens',
'verpakkerij' : '[default]Project_Variables/ScreenNotDone/Verpakkerij',
'logistiek' : '[default]Project_Variables/ScreenNotDone/Logistiek'
}
var = system.tag.read(links[clicked]).value
var += 1
message = "Congrats, you are the ###th person to try...\nNo this screen is still not ready!"
message = message.replace('###', str(var))
system.tag.write(links[clicked], var)
system.gui.warningBox(message, "Oooooof")