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

  1. OVERVIEW:
  2.  
  3. wIconScreen is a program that works with wIconify to create a new screen
  4. just as though you used the wIconify NEW SCREEN menu.  The screen will
  5. become the current Workbench screen automatically.  wIconScreen is intended
  6. mainly for use in the Startup-Sequence, and in EXECUTE scripts.
  7.  
  8.  
  9. USING WICONSCREEN:
  10.  
  11. To use wIconScreen, wIconify must be runnging.  To create a new WB screen,
  12. simply type
  13.  
  14.     1> wIconScreen
  15.  
  16. and wIconify will open a new screen for you.  Any windows that would
  17. normally appear on the Workbench screen will now open on the new screen.
  18. You can change which screen is the current WB screen by using the MAKE WB
  19. menu item of wIconify, or with the wMakeWB command.
  20.  
  21. To close a screen created with wIconScreen, use the wIconify CLOSE SCREEN
  22. menu item, just as you would for any wIconify screen.
  23.  
  24. You can specify the depth and resolution flags by including them with the
  25. wIconScreen command.  For example,
  26.  
  27.     1> wIconScreen 3 LORES
  28.  
  29. would open a 3-bitplane low-resolution screen.  The depth can be from 1 to 5
  30. (HAM mode will automatically convert to 6 bitplanes), and the possible flags
  31. are:
  32.  
  33.     HIRES           for screens 640 pixels wide
  34.     LORES           for screens 320 pixels wide
  35.     INTERLACE       for Interlaced screens
  36.     HAM             for Hold-And-Modify screens
  37.  
  38.     [NO]ACTIVATE    to [not] activate the newly created screen
  39.     [NO]BEHIND      to [not] send the screen to the back once it is openned
  40.  
  41. These flags may be given in combination, as in the following example,
  42. which opens a high-resolution interlaced screen one bitplane deep,
  43. and activates the wIconify window on that screen:
  44.  
  45.     1> wIconScreen ACTIVATE HIRES INTERLACE 1
  46.  
  47. The default is to open a HIRES screen of depth 2, not activated, and in 
  48. front of all the other screens.
  49.  
  50.  
  51.  
  52. TECHNICAL NOTES:
  53.  
  54. The actual screen dimensions are calculated from the size of the real
  55. Workbench screen.  HIRES screens will open to the smae width as the WB
  56. screen (usually 640), and LORES screens will open to half that size (usually
  57. 320).  INTERLACE screens will open the the same height as the WB if the WB
  58. is interlaced, and to twice the WB size if the WB is NOT interlace. 
  59. Similarly, NON-INTERLACE screens will open to the appropriate mutliple of
  60. the WB screen size.
  61.  
  62. Screens of depth greater than 2 use the Intuition default color map for
  63. colors of number higher than 3 (the workbench colors are used for the first
  64. four colors, numbered 0 to 3).  The color map can be customized using the
  65. custom color map available through the wIconify initialization file.
  66.  
  67.  
  68. AUTHOR:
  69.  
  70. Davide P. Cervone
  71. Mathematics Department
  72. Brown University
  73. Providence, Rhode Island 02912
  74. ST402523@BROWNVM
  75.