Ok, download the latest DEV build again (should be special build 6), and try this script ... it uses the InputBox object, and something called the "DialogResult" property, which is documented in the old CHM ... here's the script ...

Code:

Break On

$System = CreateObject("Kixtart.System")

$InputBox = $System.InputBox()

:TOP

$Name = $InputBox.Show("Enter name:", "User & PC Finder","")

If $InputBox.DialogResult = 2 ; Cancel
?"Quiting..."
Quit
Endif

If $Name = ""
$= MESSAGEBOX ("You MUST Enter A Name In To Continue", "No Name Entered", 16)
GOTO TOP
Endif

?"Name = " $Name

Exit 0



Let me know if you have any questions ...

-Shawn