xytras Posted September 29, 2009 Posted September 29, 2009 (edited) I complied a package for a Roxio application install. The only problem I have is when the Light Touch Installation runs the .exe the application loads and nothing goes until I Select the Roxio window. Is there anything I can add to the script to make it so I don't have to click on the window? My Script as of now. #cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.0.0 Author: myName Script Function: Template AutoIt script. #ce ---------------------------------------------------------------------------- ; Script Start - Add your code below here Run("setup.exe") WinWaitActive("Roxio Creator DE Setup", "&Next") Send("!n") WinWaitActive("Roxio Creator DE Setup", "I &accept the terms in the License Agreement") Send("!a") Send("!n") WinWaitActive("Roxio Creator DE Setup", "&Next") Send("!n") WinWaitActive("Roxio Creator DE Setup", "&Typical") Send("!t") WinWaitActive("Roxio Creator DE Setup", "&Install") Send("!i") WinWaitActive("Roxio Creator DE Setup", "&Finish") Send("!f") WinWaitActive("Roxio Creator DE", "&No") Send("!n") Edited September 29, 2009 by xytras
Juvigy Posted September 29, 2009 Posted September 29, 2009 This line waits for the window to be selected WinWaitActive("Roxio Creator DE Setup", "&Next") Put some WinActivate ( "title" [, "text"] ) before or instead that
xytras Posted September 29, 2009 Author Posted September 29, 2009 This line waits for the window to be selected WinWaitActive("Roxio Creator DE Setup", "&Next") Put some WinActivate ( "title" [, "text"] ) before or instead that Thank You!
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