home *** CD-ROM | disk | FTP | other *** search
- ; The GAP command specifies how many pixels of
- ; space there will be between every button.
-
-
- close off
- defenv command "gap 3" ; The env variable "command" will be set to
- ; "gap 3" if it is not currently set
-
- [command] ;Here the command is placed
-
- title "Command: [command]"
- color 2
- startbox
- text "Gap, and"
- text "replacable"
- text "commands"
- text "using env"
- endbox
-
- color 3
- startbox
- button Source 'run >nil: multiview "[this]"'
- endbox
- color 1
- Button "gap 0" 'setenv command "gap 0"' update
- Button "gap 1" 'setenv command "gap 1"' update
- Button "gap 2" 'setenv command "gap 2"' update
- Button "gap 3" 'setenv command "gap 3"' update
- Button "gap 4" 'setenv command "gap 4"' update
- Button "gap 5" 'setenv command "gap 5"' update
- Button "gap 6" 'setenv command "gap 6"' update
- Button "gap 7" 'setenv command "gap 7"' update
- Button "gap 8" 'setenv command "gap 8"' update
- Button "gap 9" 'setenv command "gap 9"' update
- Button "gap 10" 'setenv command "gap 10"' update
- Button "gap 11" 'setenv command "gap 11"' update
- Button "gap 12" 'setenv command "gap 12"' update
- Button "gap 13" 'setenv command "gap 13"' update
- Button "gap 14" 'setenv command "gap 14"' update
- Button "gap 15" 'setenv command "gap 15"' update
- Button "gap 16" 'setenv command "gap 16"' update
- Button "gap 17" 'setenv command "gap 17"' update
- Button "Size 20" 'setenv command "Size 20"' update
-
- color 2
- button exit 'unsetenv command' exit
-