home *** CD-ROM | disk | FTP | other *** search
- ; Demo of the "rows" command
- ; and the use of env variables
-
-
-
- close off
-
- defenv rows 7
- rows [rows]
- title "This is [rows] rows..."
-
- color 2
- startbox
- text "This demo"
- text "shows the"
- text "use of"
- text "the rows"
- text command
- text "and env"
- text variables
- endbox
-
- color 3
- startbox
- button Info 'run >nil: Selector rowsinfo.sel'
- endbox
- color 1
- Button "rows 1" 'setenv rows 1' load [this]
- Button "rows 2" 'setenv rows 2' load [this]
- Button "rows 3" 'setenv rows 3' load [this]
- Button "rows 4" 'setenv rows 4' load [this]
- Button "rows 5" 'setenv rows 5' load [this]
- Button "rows 6" 'setenv rows 6' load [this]
- Button "rows 7" 'setenv rows 7' load [this]
- Button "rows 8" 'setenv rows 8' load [this]
- Button "rows 9" 'setenv rows 9' load [this]
- Button "rows 10" 'setenv rows 10' load [this]
- Button "rows 11" 'setenv rows 11' load [this]
- Button "rows 12" 'setenv rows 12' load [this]
- Button "rows 13" 'setenv rows 13' load [this]
- Button "rows 14" 'setenv rows 14' load [this]
- Button "rows 15" 'setenv rows 15' load [this]
- Button "rows 16" 'setenv rows 16' load [this]
- Button "rows 17" 'setenv rows 17' load [this]
- Button "rows 200" 'setenv rows 200' load [this]
- Button "rows auto" 'setenv rows auto' load [this]
- color 2
- button exit 'unsetenv rows' exit
-