| QUOTE |
| ;############################# ;# ;# CREATOR: Be Absentminded ;# DATE: 11.15.03 ;# Action Script Name: FormatE ;# VERSION: 1.0 ;# Menu Item Action Script ;# Function Description: This script is used ;# to format your E: partition. ;# ;############################# :FormatSelect BeginDraw UseCurrent MessageBox "E: Format Menu$eol$Press A To Format$eol$Press B To Cancel" EndDraw Input If %_GP_A% == "1" GOTO FormatE If %_GP_B% == "1" GOTO NoFormatE QUIT :FormatE BeginDraw UseCurrent MessageBox "Formatting..." EndDraw Delay 3 Format E: BeginDraw UseCurrent MessageBox "Format Complete!" EndDraw Delay 3 QUIT :NoFormatE BeginDraw UseCurrent MessageBox "Format Cancelled" EndDraw Delay 5 QUIT |