
#
# This is an Example Menu
#
#

[DataArea]
AreaName        = "Oneliners"     # Name of Data Area
FileName        = "oneliners"     # Data Output Filename (excluding ext.) ie.. oneliners.dat
AnsiFile        = "oneliners"     # Ansi File Name,      (excluding ext.) ie.. oneliners.ans {Location will be ANSI Directory}
AnsiMid         = "oneliners"     # Ansi Mid File for Holding MCI Codes (excluding ext.) ie.. oneliners.mid 
NumOfRecs       = "6"             # Max # of Records to Keep in Datafile for parsing in ansi, 0 = Unlimited.
PageBreak       = "0"             # For Multiple Pages, Will PageBreak after this many records, 0 = disabled.

# This is how many input commands run in order, sorta like a Menu System.
# You can also Stack Commands to run in order.

{ Option / Required at Least 1 Input to Create a Record}
# Pass through MCI Code of Users Name as First Record
[DataRec000]                                                 # Command Record #
Desc[000]       = "Get Users Name"                           # Description
Prompt[000]     = ""                                         # Text Prompt To Display on Input Commands.
Size[000]       = ""                                         # Max Number of Chars on Input
CKeys[000]      = "FIRSTCMD"                                 # Accepted Input Keys
CmdType[000]    = "IN"					     # Command Type
MString[000]    = "%UH"                                      # Data to be Written Default for This Field {UserHandle MCI Code Pass}
MciCode[000]    = "&ON"                                      # MCI Code For Ansi Output of This Field
HiString[000]   = ""                                         # LightBar High String
LoString[000]   = ""                                         # LightBar Low String
Xcoord[000]     = ""                                         # X Coord of Lightbar
Ycoord[000]     = ""                                         # Y Coord of Lightbar
LBarCmd[000]    = "FALSE"                                    # Is This a Lightbar Command?
MCICmd[000]     = "TRUE"                                     # Is This a MCI Code, Skip Input, and Pass MCI Code in MString.

# {Required - 1 Exit Comamnd}
# Lightbar: Quit DataArea
[DataRec001]
Desc[001]       = "Quit"                           
Prompt[001]     = ""
Size[001]       = ""
CKeys[001]      = "Q"
CmdType[001]    = "*G"
MString[001]    = ""
MciCode[001]    = ""
HiString[001]   = "|15|17   Quit   |16"
LoString[001]   = "|07   Quit   |16"
Xcoord[001]     = "37"
Ycoord[001]     = "16"
LBarCmd[001]    = "TRUE"
MCICmd[001]     = "FALSE"

# {Required - 1 Input Command}
# After Last Input Command, Stack a Confirm prompt to save, and another to process the file to update if any changes made.
# The process data area will only run if a new input have been saved!
# Lightbar: Add Input, First Displays as Lightbar, if Selected will then Get Input Disaplying Prompt from InText
[DataRec002]
Desc[002]       = "Add a OneLiner"                           
Prompt[002]     = "|CR|15Add your text|08: "
Size[002]       = "53"
CKeys[002]      = "A"
CmdType[002]    = "IN"
MString[002]    = ""
MciCode[002]    = "&OT"
HiString[002]   = "|15|17   Add a Oneliner   |16"
LoString[002]   = "|07   Add a Oneliner   |16"
Xcoord[002]     = "51"
Ycoord[002]     = "16"
LBarCmd[002]    = "TRUE"
MCICmd[002]     = "FALSE"

# {Required - 1 Save Data Comamnd}
# This is the Command to Confirm and Save All Input, used / stacked after last input command.
[DataRec003]
Desc[003]       = "Confirm & Save Input"                           
Prompt[003]     = "|CR|15Save Your Text? |07[|15y|07/|15n|07]|08: "
Size[003]       = ""
CKeys[003]      = "A"
CmdType[003]    = "OT"
MString[003]    = ""
MciCode[003]    = ""
HiString[003]   = ""
LoString[003]   = ""
Xcoord[003]     = ""
Ycoord[003]     = ""
LBarCmd[003]    = "FALSE"
MCICmd[003]     = "FALSE"

# {Required - 1 Process Command} 
# This Process the Data Areas Records, And Parses and Creates the oneliner.ans
# processes the area after every save, so the ansi file is up to date when displayed.
# Only runs when a save is confirmed above!
[DataRec004]
Desc[004]       = "Process Data Area"                           
Prompt[004]     = ""
Size[004]       = ""
CKeys[004]      = "A"
CmdType[004]    = "DP"
MString[004]    = ""
MciCode[004]    = ""
HiString[004]   = ""
LoString[004]   = ""
Xcoord[004]     = ""
Ycoord[004]     = ""
LBarCmd[004]    = "FALSE"
MCICmd[004]     = "FALSE"

