home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games 1996 January / amigagames-cdrom-1996-01.iso / rexx / tutorial.wndk < prev    next >
Text File  |  1994-10-09  |  736b  |  29 lines

  1. /*  Tutorial  program  for  WindowKey,  can be started by WindowKey (hotkey
  2. lcommand      lshift      numpad     enter     in     the     configuration
  3. presets/Example.WindowKey) */
  4.  
  5. ADDRESS "WindowKey"
  6. SAY "We'd better get a bigger window first !"
  7. WIN_ZIP"(*A)"
  8.  
  9. SAY "WindowKey includes screen scrolling facilities !"
  10. DO i=1 TO 200
  11.  SCR_MOVE"(,1,*F)"
  12. END i
  13. DO i=1 TO 200
  14.  SCR_MOVE"(,-1,*F)"
  15. END i
  16.  
  17. SAY "Tell me what arrangement you want for your windows on the front screen"
  18. SAY " 1: Stacked"
  19. SAY " 2: Diagonal"
  20. SAY " 3: Horizontal"
  21. SAY " 4: Vertical"
  22. SAY " 5: Full size"
  23. SAY " 6: Grid"
  24. PULL Arrangement .
  25. SCR_STACK || "(" || Arrangement || ",*F)"
  26.  
  27. SAY "Let's call the preferences program, to throw an eye at all commands."
  28. EXEC_PREFS
  29.