eddo9696 Posted September 10, 2009 Share Posted September 10, 2009 Hello, I just created my first script to launch a program called gemsignplus9. It is very simple and only requires that the Enter key be hit about 5 times. When I launch the script by right clicking it, it executes perfectly. However, after compiling the script and executing the exe file my notification bar overflows with AutoIT icons and it keeps replicating within my task manager. Has anyone seen this? What am I doing wrong? Here is my script: Run("gemsignplus9.exe") WinWaitActive ("Topaz GemSignPlus Installation for Acrobat 9") WinActivate("Topaz GemSignPlus Installation for Acrobat 9") Send("{ENTER}") WinWaitActive ("Select Destination Directory", "The GemSign support files will be") WinActivate("Select Destination Directory") Send("{ENTER}") WinWaitActive ("Install", "would you like to install") WinActivate("Install") Send("{ENTER}") WinWaitActive ("License Agreement", "License Agreement") WinActivate("License Agreement") Send("{ENTER}") WinWaitActive ("PLEASE NOTE:", "from the menu") WinActivate("PLEASE NOTE:") Send("{ENTER}") Link to comment Share on other sites More sharing options...
omikron48 Posted September 10, 2009 Share Posted September 10, 2009 Is the script named 'gemsignplus9'? It may just be the case of your compiled script calling itself with the Run command. Same thing happened to me when I made a sample script involving notepad.exe Link to comment Share on other sites More sharing options...
eddo9696 Posted September 10, 2009 Author Share Posted September 10, 2009 Is the script named 'gemsignplus9'? It may just be the case of your compiled script calling itself with the Run command.Same thing happened to me when I made a sample script involving notepad.exeThat solved my problem. Thank you! 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