#Persistent

스크립트를 영원히 실행 합니다 (즉, 사용자가 닫거나 ExitApp를 만날 때까지).

#Persistent

A script is persistent if any of the following conditions are true:

Use this directive to prevent the script from exiting after the auto-execute section (top part of the script) completes. This is useful in cases where a script contains timers and/or custom menu items but does not meet any of the other conditions listed above.

이 지시어를 기존의 스크립트에 추가하면, ExitExitApp로 바꾸는 편이 좋습니다. 왜냐하면 Exit는 영구적인 스크립트를 종료하지 못하기 때문입니다; 오직 현재 쓰레드만 종료시킵니다.

[v1.0.16+]: 이 지시어는 또 스크립트를 단일-실체로 만들기도 합니다. 이를 오버라이드 하거나 단일-실체의 행위를 바꾸려면, #SingleInstance를 참조하십시오.

다른 지시어처럼, #Persistent는 조건적으로 실행할 수 없습니다.

#SingleInstance, SetTimer, Menu, Exit, ExitApp

예제

Causes the script to run permanently; that is, it will not exit automatically if it could.

#Persistent