D dcrwilson New member Nov 20, 2016 #1 Hello, how do get pop up windows to be in the center of any screen. Last edited: Nov 23, 2016
gdgsupport Support Staff member Nov 21, 2016 #2 You should use HEScript to do that: Code: procedure ShowFirstPopup; begin ShowPopup("mypopup", "popup1.htm", 400, 300, -1, -1, false, false); end; Notice the -1 and -1 above which will make a centered popup window. For further info, see the help topic here: http://www.htmlexe.com/help/popupwindows
You should use HEScript to do that: Code: procedure ShowFirstPopup; begin ShowPopup("mypopup", "popup1.htm", 400, 300, -1, -1, false, false); end; Notice the -1 and -1 above which will make a centered popup window. For further info, see the help topic here: http://www.htmlexe.com/help/popupwindows