Search the Community
Showing results for tags 'controlcommand'.
-
My AutoIt script works fine, for the most part, however, if it goes idle for roughly 30 minutes, it will won't be able to send data to a 3rd party application window titled, "Case #". The problem lies within the function "SendFusion", it's able to see the handle for the "WinActivate" and "WinW...
- 12 replies
-
- windows 10
- send
-
(and 3 more)
Tagged with:
-
ControlCommand IsChecked not working
ozymandius257 posted a topic in AutoIt General Help and Support
I'm trying to check the status of the checkbox for sharing a folder that you see when you right-click on a folder, go to the sharing tab, then click on Advanced Sharing. The check box is labelled Share this folder, and looking at it using AutoIt window info, I get the following information..... -
I need to automate a specific GUI from a legacy system written in C. The spy tool gives me this I use this code Local $swintit = WinGetTitle("[active]") ConsoleWrite("active Window " & $swintit & @CRLF) If $swintit = "FILES NOTES" Then ; If $swintit = "FILES NOTES" Then ; g...
- 14 replies
-
- guictrlsetstate
- controlclick
-
(and 1 more)
Tagged with:
-
I have an install that I'm trying to deploy on both 32 bit and 64 bit machines. Trying to move more to 64 bit but still curious about making this work for both at the same time. This is the 32 bit version of the script. I tried to make this same script work for a 64 bit install but realized the...
- 8 replies
-
- installs
- controlclick
-
(and 1 more)
Tagged with:
-
-
Hi all, This is my code. It is giving me the currect line number but it won't give me the right line text. Local $title = WinGetTitle("[CLASS:SciTEWindow]") Global $Current_lineNumber = ControlCommand($title, "S", 350, "GetCurrentLine"," ") Global $CurrentLine_Text = ControlCommand($title, "S",...