I have a Ignition client running, at some point there will be a popup from another application (outside Ignition) via a submit button. Once that application does its open, it will be on top of Ignition. How can I bring Ignition to the forefront, effectively hiding the other application ??
I’m catching up on some old posts and I found this one.
Here is some code I put in a Timer component actionPerformed that seemed to work for me (Ignition 7.6.x in Windows 7 client):
win = system.gui.getParentWindow(event)
while win.parent != None:
win = win.parent
win.toFront()