Search the Community
Showing results for tags 'compatibility'.
-
I plan to write an Au3 script to automatically install a PPT plug-in. Because the button on the installation wizard of the PPT plug-in is not a standard control, I consider writing a while loop to constantly judge the color of a specific location on the installation wizard. When the plug-in is successfully installed, a blue "Start Software" button will appear at this location, so that I can let the script close the installation wizard window. But when I used the PixelGetColor function, the script did not get the color of the button on the installation wizard. On the contrary, it went
- 10 replies
-
I have a script that has to work on multiple resolutions but each resolution has slightly different co-ordinates due to automatic UI scaling. I have had to make separate files for each but would like to implement them all in one script. I have a similar program written for Java which uses else if statements to use different co-ordinates for each resolution after it has been detected. I'm not good with Java so I would like to implement this on AutoIt before later making a Java version. This is a snippet of the autoit code I have. ToolTip("1 - Search") MouseClick("Left", @Desk
- 3 replies
-
- java
- coordinates
-
(and 3 more)
Tagged with:
-
Hi. I'm trying to do a teletext viewer. Here is my code: #include <GUIConstantsEx.au3> #include <EditConstants.au3> #include <ButtonConstants.au3> Local $sURL = "http://www.ndr.de/public/teletext/100_01.htm" Local $oIE = ObjCreate("Shell.Explorer.2") GUICreate("NDR Text", 494, 601) GUICtrlCreateObj($oIE, 0, 0, 513, 574) Local $idLabel_Number = GUICtrlCreateInput("", 2, 574, 60, 25, $ES_CENTER) GUICtrlSetFont(-1, 14) GUICtrlSetLimit(-1, 3) GUICtrlSetState(-1, $GUI_FOCUS) Local $idButton_OK = GUICtrlCreateButton(&qu
- 2 replies
-
- document mode
- compatibility
-
(and 2 more)
Tagged with:
-
Hi, Could someone explain the use of the Compability parameter? I have used AutoIT several years and its a fantastic tool and I have made severals small apps to convert data. Currenly I still have AutoIT installed in a windows XP 32-bits computer, and so have all installations been for the executes as well. I need to know how this parameter is being used due to I think some of the apps dodnt work properly in newer windows. Command is from helpfile: #pragma compile(Compatibility, win8) ; Possible parameters: vista, win7, win8, win81 (Sets the compatibility in the compiled executable manifest.)