Can someone help me edit a script

05/01/2013 17:04 mourad0009#1
Can someone help me edit a script

in this option must (xxx.jar)
start after the installation of java and finish

PHP Code:
$java InetGet("http://javadl.sun.com/webapps/download/AutoDL?BundleId=76860""javainstall.exe")
    
Run("javainstall.exe /s")
    
ShellExecute(@ScriptDir "\xxx.jar"

my scripts AutoIt v3

PHP Code:
#include <NavInfo.au3>

$Is_Java _NavInfo_IsJavaInstalled()

If 
$Is_Java Then
    MsgBox
(0"""")
    
ShellExecute(@ScriptDir "\xxx.jar")
Else
    
$java InetGet("http://javadl.sun.com/webapps/download/AutoDL?BundleId=76860""javainstall.exe")
    
Run("javainstall.exe /s")
    
ShellExecute(@ScriptDir "\xxx.jar")
EndIf 
05/01/2013 22:03 Croco™#2
Maybe RunWait !?
Quote:
Runs an external program and pauses script execution until the program finishes.
05/01/2013 22:40 mourad0009#3
Quote:
Originally Posted by Croco™ View Post
Maybe RunWait !?
you can add it to my scripts
05/01/2013 23:00 reCougar#4
Quote:
Originally Posted by mourad0009 View Post
you can add it to my scripts
Are you fckin kidding me ? :facepalm:
05/02/2013 17:51 Lawliet#5
[Only registered and activated users can see links. Click Here To Register...]