home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d5xx / d500 / wiconify.lha / wIconify / wUtilities.lzh / Screen / ScreenTo...doc < prev    next >
Text File  |  1991-04-19  |  2KB  |  57 lines

  1. OVERVIEW:
  2.  
  3. ScreenToBack and ScreenToFront let you depth-arrange screens from the CLI.
  4. They are intended mostly for use with screens that do not allow access to
  5. the screen's depth gadgets, and for use in your startup-sequence or EXECUTE
  6. scripts.
  7.  
  8.  
  9. USING SCREENTOFRONT AND SCREENTOBACK:
  10.  
  11. To use ScreenToFront or ScreenToBack, simply issue the command in a CLI
  12. window, and supply the name of the screen to be re-positioned.  If the name
  13. of the screen includes spaces, be sure to enclose it in quotation marks. 
  14. You need only supply as much of the screen's name as necessary to
  15. distinguish it from other screens.
  16.  
  17. For example:
  18.  
  19.     1> ScreenToBack Workbench
  20.  
  21. will send the Workbench screen to the back, while
  22.  
  23.     1> ScreenToFront "Test Screen"
  24.  
  25. will bring the first screen that starts with the words 'Test Screen'
  26. to the front.
  27.  
  28. Upper case and lower case letters are not distinguished, so the last example
  29. above also could have been typed as:
  30.  
  31.     1> ScreenToFront "TeST ScrEEn"
  32.  
  33. If you do not supply a screen name, the currently active screen will be used
  34. by default.  Thus you do not need to know the name of the screen to be
  35. affected if you want to depth arrange the current screen.
  36.  
  37. By default, ScreenToFront and ScreenToBack do not change the active screen.
  38. You can request that the new front screen become the active screen by 
  39. placing the word ACTIVATE on the command line before the screen name.  For
  40. example:
  41.  
  42.     1> ScreenToBack Activate "Test Screen"
  43.  
  44. would send the screen with title 'Test Screen' to the back, and then activate
  45. a window on the front-most screen.  The window that is activated is somewhat
  46. arbitrary:  it is the window that was openned first on that screen.  If you are
  47. using wIconify, it will usually be the wIconify backdrop window.
  48.  
  49.  
  50. AUTHOR:
  51.  
  52. Davide P. Cervone
  53. Mathematics Department
  54. Brown University
  55. Providence, Rhode Island  02912
  56. ST402523@BROWNVM
  57.