gyaani Posted December 26, 2018 Posted December 26, 2018 A function to send a hotkey Ctrl+Shift+K , sends the down keys, but once the application (listary) launches, autoit stops executing any further commands/lines in the function. This includes sending simple letter keys OR sending the UP keys. afaik this is not a send() problem about CTRL_UP not being send , as said in the faq. This seems to be a different problem. Sleep(10) doesn't help either. Func listary() Send ("{CTRLDOWN}") Send ("{SHIFTDOWN}") Sleep(10) Send ("k") Sleep(10) Send ("{SHIFTUP}") Send ("{CTRLUP}") EndFunc I get the same effect with _WinAPI_Keybd_Event() Func listary() _WinAPI_Keybd_Event(0x11, 0) ; _WinAPI_Keybd_Event(0x12, 0) ; _WinAPI_Keybd_Event(0x4B, 0) ; _WinAPI_Keybd_Event(0x4B, 2) ; _WinAPI_Keybd_Event(0x12, 2) ; _WinAPI_Keybd_Event(0x11, 2) ; Sleep(100) Send ("Typeme") EndFunc What to do ?
careca Posted December 26, 2018 Posted December 26, 2018 Try re-sending the ctrl and or shift. It might getting stuck. Spoiler Renamer - Rename files and folders, remove portions of text from the filename etc. GPO Tool - Export/Import Group policy settings. MirrorDir - Synchronize/Backup/Mirror Folders BeatsPlayer - Music player. Params Tool - Right click an exe to see it's parameters or execute them. String Trigger - Triggers pasting text or applications or internet links on specific strings. Inconspicuous - Hide files in plain sight, not fully encrypted. Regedit Control - Registry browsing history, quickly jump into any saved key. Time4Shutdown - Write the time for shutdown in minutes. Power Profiles Tool - Set a profile as active, delete, duplicate, export and import. Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes. NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s. IUIAutomation - Topic with framework and examples Au3Record.exe
gyaani Posted December 26, 2018 Author Posted December 26, 2018 FIGURED IT OUT !! Problem was about priority / rights. The applications launched had administrative rights. autoit.exe didn't. So maybe the keys autoit was sending were captured by these apps and not allowed to go anywhere.. guessing. Opened autoit folder > right click autoit(x64).exe > compatibility > all users > run as administrator . ok ok . close running scripts and start them. Now Send ("^+k") works
careca Posted December 26, 2018 Posted December 26, 2018 Weird. First time i heard that could be the solution for a thing like this. Spoiler Renamer - Rename files and folders, remove portions of text from the filename etc. GPO Tool - Export/Import Group policy settings. MirrorDir - Synchronize/Backup/Mirror Folders BeatsPlayer - Music player. Params Tool - Right click an exe to see it's parameters or execute them. String Trigger - Triggers pasting text or applications or internet links on specific strings. Inconspicuous - Hide files in plain sight, not fully encrypted. Regedit Control - Registry browsing history, quickly jump into any saved key. Time4Shutdown - Write the time for shutdown in minutes. Power Profiles Tool - Set a profile as active, delete, duplicate, export and import. Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes. NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s. IUIAutomation - Topic with framework and examples Au3Record.exe
caramen Posted December 27, 2018 Posted December 27, 2018 @careca not for me. It is same as a controlclick on a soft that need admin rigths. My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now