Jump to content

Recommended Posts

Posted (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 by xytras
Posted

This line waits for the window to be selected

WinWaitActive("Roxio Creator DE Setup", "&Next")

Put some WinActivate ( "title" [, "text"] ) before or instead that

Posted

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!

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...