EndADLImport ​
This event is triggered after the ADL import has finished.
Parameters ​
Parameter | Description |
---|---|
successful | intValue, 1 if the import succeeded and 0 if not |
Exit value: ​
Remarks ​
See Also ​
Example ​
leo-grammar
ON_EVENT "EndADLImport" {
SET int_Success: (successful)
IF (int_Success = 1) {
CC "AdoScript" INFOBOX "You have imported the ADL successfully"
}
ELSEIF (int_Success = 0) {
CC "AdoScript" INFOBOX "Try again!"
}
}