xboxscene.org forums

Author Topic: Format Script  (Read 101 times)

Be Absentminded

  • Archived User
  • Jr. Member
  • *
  • Posts: 69
Format Script
« on: November 15, 2003, 07:04:00 PM »

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


-Jameson
Logged

Be Absentminded

  • Archived User
  • Jr. Member
  • *
  • Posts: 69
Format Script
« Reply #1 on: November 16, 2003, 11:14:00 AM »

sad.gif

-Jameson
Logged

yourwishismine

  • Archived User
  • Sr. Member
  • *
  • Posts: 325
Format Script
« Reply #2 on: November 16, 2003, 11:19:00 AM »

Looks good to me...

but then again..

I've never written any actionscripts...

but I'm pretty familiar with the format...
Logged