Hi there,
Does anyone know how to script FrameMaker 12? Below are my coding but for some reason it execute then goes away in seconds.
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
#RequireAdmin
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Icon=NV_IT.ico
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
Opt("TrayMenuMode", 1)
$AppName = "Adobe Framemaker 12"
$prompt = MsgBox(262145, "Company Name: " & $AppName & " Installation", "You are about to install " & $AppName & ". The installation can take anywhere from 10 to 20 minutes." & @CRLF & @CRLF & "Please close all running applications and click on OK to proceed.")
If $prompt = 2 Then Exit
SplashTextOn("Company Name: " & $AppName, $AppName & " is being installed..." & @CRLF & @CRLF & "Please do not open any applications until this task is finished.", 400, 160, -1, 150, 20, "", 10)
; INSTALL MAIN
ShellExecuteWait("Set-up.exe", " --mode=silent --deploymentFile=" & @ScriptDir & "\install.xml --overrideFile=", @ScriptDir)
SplashOff()
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Thanks for your help,