home *** CD-ROM | disk | FTP | other *** search
/ Millennium Time Capsule / AC2000.BIN / disks / ac16disk / job_demo / job_07.kbj < prev    next >
Encoding:
Text File  |  1998-03-13  |  1.7 KB  |  49 lines

  1. *Kobold Branch Commands Demo
  2. *
  3. *Anything appearing after an asterisk (on the same line) is ignored.
  4. *Each of the "EXAMPLES" below can be activated and run by removing the
  5. *first asterisk on the left side of each example line and then selecting
  6. *"Execute Job" from the "Kobold" menu (and selecting this file :-)
  7. *The drives listed below must exist in order for the demo to work!
  8. *
  9. *These help files are not meant to be a substitute for the user manual,
  10. *but merely demonstrations of available commands. Please refer to your
  11. *Owners Manual for detailed explanations.
  12.  
  13. *--Goto ---------------\/--------------------------------------------------
  14.  
  15. *--Syntax--------------\/--|
  16.  
  17. *--goto label
  18.  
  19. *--example #1----------\/--|
  20.  
  21. *goto 1                     *skip to the label "1".
  22. *src_select a:\             *src_select command, which will be ignored.
  23. *1:                         *the label.
  24. *alert "-Hello |!Bye",2     *an alert box.
  25. *2:                         *the label "2"
  26.  
  27.  
  28. *--Gosub---------------\/--------------------------------------------------
  29.  
  30. *--Syntax--------------\/--|
  31.  
  32. *--gosub label
  33.  
  34. *--example #1----------\/--|gosub return
  35.  
  36. *gosub 3                         *Jump to label "3"
  37. *alert "!Welcome back !|!Hi",5   *"return" command below returns you here,
  38.                                  *then you're sent to "label 5".
  39. *3:                              *"label" 3
  40. *alert "-Let's go back !|!Ok",4  *the message you get when you "gosub 3"
  41. *4:                              *the label 4 (alerts have to go SOMEwhere)
  42. *return                          *return to the line below "gosub 3"
  43. *5:                              *"label 5"
  44. *alert "*See ya later !|!Bye",6  *the message after "label 5"
  45. *6:                              *label 6
  46.  
  47.  
  48. *--|that's it! cjh.3/13/98
  49.