Have an application that opens an external web page. Just installed v8.3.8 yesterday. Previously had v8.3.6. Operators were complaining that the button does not work. Found that the button is now opening the web page but it does not come to the top of the stack, so it stays hidden unless the operator knows to look for it.
This is the script that brings up the external link... is anything missing?
def runAction(self, event):
line = self.view.custom.line
lineName = "Coater" if line == "C" else "Slitter"
ppName = self.view.custom.plannedProduct
targetUrl = "http://noveliswarrencamstar/InSiteWebApplication/forms/modeling/nvlsHMIRecipeViewerForm.aspx?ProductName=" + ppName + "&Frame=" + lineName + "Frame"
system.perspective.navigate(url = targetUrl, newTab = True)
It worked fine up to now...