I do now have it working verbosely as it was all down to the winwaitactive and controlclick config. This is what I have now and it works:
Opt('WinDetectHiddenText', 1)
$SEQSCAPEINSTALLER="c:netinstseqscapesetup.exe"
Run($SEQSCAPEINSTALLER)
WinWaitActive("[CLASS:#32770]","Welcome to the InstallShield Wizard")
ControlClick("InstallShield Wizard", "", "[CLASS:Button; TEXT:&Next >; INSTANCE:1]", "left")
WinWaitActive("[CLASS:#32770]","Information")
ControlClick("InstallShield Wizard", "", "[CLASS:Button; TEXT:&Next >; INSTANCE:1]", "left")
WinWaitActive("[CLASS:#32770]","Choose Destination Location")
ControlClick("InstallShield Wizard", "", "[CLASS:Button; TEXT:&Next >; INSTANCE:1]", "left")
WinWaitActive("[CLASS:#32770]","Start Copying Files")
ControlClick("InstallShield Wizard", "", "[CLASS:Button; TEXT:&Next >; INSTANCE:1]", "left")
WinWaitActive("InstallShield Wizard","InstallShield Wizard Complete")
ControlClick("InstallShield Wizard", "", "[CLASS:Button; TEXT:Finish; INSTANCE:4]")
Exit
My next problem is I cannot get WPKG to install it. I can see setup.exe is a running process but if it is in the background then AutoIt3 does not do its thing.
Does anyone know how I can get AutoIt to do its clicks in the background/hidden?
Thanks
Paul