Subversion Repositories Actemium.ccr-dmv

Rev

Rev 12 | Blame | Compare with Previous | Last modification | View Log | Download

;
; AutoIt Version: 3.0
; Language:       English
; Platform:       WinXP/2003/Vista
; Author:         Marcel Jordaan (mjordaan@rldautomation.eu)
;
; Script Function:
; Monitor calling task for crashing/exiting
#NoTrayIcon

if $CMDLINE[0] < 2 then Exit

while 1

  ;mantain loop during flweb active
  sleep( 100)
  if ProcessExists($CMDLINE[1]) then

    if ProcessExists($CMDLINE[2]) then ContinueLoop
  EndIf

  ;flweb has ended, stop our graph.exe
  ProcessClose( $CMDLINE[2])
  Exit
WEnd