Necromorph Posted November 19, 2013 Share Posted November 19, 2013 (edited) ShellExecute("C:\Program Files (x86)\MSI\MSI GamingApp\MSIGamingApp.exe") Sleep(3000) WinActivate("MSI Gaming App") Send("{LWINDOWN}{SHIFTDOWN}{LEFT}", 1) Send("{LWINUP}{SHIFTUP}", 1) Sorry if this has been asked already, I did search a bit, and didn't find anything helpful. Basically I wanted to open an application, then send it to my secondary monitor with the WindowsKey + Shift + Left arrow, but it just doesn't work, I hope maybe I am just missing something easy. I haven't used AutoIT it a while, but I thought it would be perfect for this type of task. Thanks for any help. Edited November 19, 2013 by Necromorph Link to comment Share on other sites More sharing options...
0xdefea7 Posted November 19, 2013 Share Posted November 19, 2013 Try this: Send("{LWIN}{LSHIFT}{LEFT}") RTM first if you need more help, the answer was right here: http://www.autoitscript.com/autoit3/docs/functions/Send.htm Link to comment Share on other sites More sharing options...
Necromorph Posted November 19, 2013 Author Share Posted November 19, 2013 I attempted this first, but it did not work, I will try again, thanks. Link to comment Share on other sites More sharing options...
BrewManNH Posted November 19, 2013 Share Posted November 19, 2013 How about Send("#+{LEFT}")? If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
Necromorph Posted November 19, 2013 Author Share Posted November 19, 2013 I tried that one too. I'm glad to see im not just missing something obvious. thanks for the help, im going to keep working at it. Thanks. Link to comment Share on other sites More sharing options...
Necromorph Posted November 19, 2013 Author Share Posted November 19, 2013 ShellExecute("Calc.exe") WinWaitActive("Calculator") Send("#+{LEFT}") So, it must be something with the application, because this works fine. Thanks again. Link to comment Share on other sites More sharing options...
Solution Necromorph Posted November 20, 2013 Author Solution Share Posted November 20, 2013 ShellExecute("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\MSI\MSI GamingApp\MSI GamingApp") WinWaitActive("MSI Gaming App") Send("#+{LEFT}") Well, I don't know why, but if I compile the script with this code, and then run the .exe as an admin, it works. No flipping idea why, but it works. lol, thanks for the help. Link to comment Share on other sites More sharing options...
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