home *** CD-ROM | disk | FTP | other *** search
/ Windoware / WINDOWARE_1_6.iso / miscprog / wzall / wz009.txt < prev   
Text File  |  1991-01-24  |  5KB  |  95 lines

  1.                                INFORMIX SOFTWARE, INC., LENEXA, KS
  2.                          Wingz Technical Support Bulletin Number 009
  3.              
  4.              
  5.             Title:    The Startup Script
  6.             Date:     January 16, 1991
  7.              
  8.              
  9.             Two special Wingz script files, WZScript and DG, contain the 
  10.             Hyperscript  commands  that  create the  default  menus  and 
  11.             dialog boxes used by Wingz. 
  12.              
  13.             These  script files are executed automatically when Wingz is 
  14.             launched.   To  conserve  disk space,  WZScript and  DG  are 
  15.             compiled  without  the source Hyperscript text.   The  files 
  16.             containing  the  source Hyperscript text,  WZScript.scp  and 
  17.             DG.scp,  are also included with Wingz.  The WZScript.scp and 
  18.             DG.scp  text  files can be loaded into the Script Editor  by 
  19.             selecting  Open  Script in the Script menu and clicking  the 
  20.             All  Documents  radio button.   Both of these files  contain 
  21.             excellent   examples  of  menu  and  dialog  box   commands.  
  22.             WZScript.scp  and  DG.scp may be modified and recompiled  to 
  23.             customize  Wingz.    It  is  recommended,  however,  that  a 
  24.             "startup" script to customize the Wingz environment be used, 
  25.             rather than modifying these scripts.   Modifications made in 
  26.             the  WZScript  and  DG files cannot be  supported  by  Wingz 
  27.             Technical Support.
  28.              
  29.             A  startup script is another specialized Wingz script  file.  
  30.             A  startup  script is automatically executed when  Wingz  is 
  31.             launched.   The  Startup  script needs to be located in  the 
  32.             same directory,  or folder as the Wingz application,  unless 
  33.             Wingz is being used through a network drive or a pathed Unix 
  34.             directory.   In  that  case,  the Startup script  should  be 
  35.             located in your local directory.
  36.              
  37.             A  startup script may be created by selecting New Script  in 
  38.             the Script menu, adding the Hyperscript commands, and saving 
  39.             the  file  as "Startup"  with the Save command in  the  File 
  40.             menu.    The  Startup script may be used to set many default 
  41.             settings for Wingz.  
  42.              
  43.             For example, the following lines of Hyperscript will set the 
  44.             default font, font size, and numeric format for data entered 
  45.             in any new worksheet:
  46.              
  47.              
  48.                  text font "Helvetica"
  49.                  text size 12
  50.                  format General
  51.              
  52.              
  53.             In most versions of Wingz,  a sample Startup script has been 
  54.             provided.   For the following versions,  the normal location 
  55.             and extension for the sample Startup script is:
  56.              
  57.                  Apollo         /Wingz/Examples
  58.                  D E C               /usr/lib/Wingz/Examples
  59.                  D G            /usr/opt/Wingz/Examples
  60.                  HP             /Wingz/Examples
  61.                  IBM RISC       /usr/lpp/Wingz/Examples
  62.                  Macintosh      Examples folder
  63.                  MIPS      /usr/Wingz/Examples
  64.                  Motorola       /usr/Wingz/Examples
  65.                  Next           Examples folder
  66.                  OS/2           Wingz\Examples
  67.                  SCO            /usr/Wingz/Examples
  68.                  SGI            /usr/Wingz/Examples
  69.                  Windows        Wingz\Examples
  70.              
  71.             If  you  do  not already have a  Startup  script,  copy  the 
  72.             example  Startup script to the same folder,  or directory as 
  73.             the  Wingz  application.   This  Startup  script  adds  four 
  74.             menuitems  to the Sheet menu when Wingz is launched.   These 
  75.             menuitems are "Set Cell Size...", "Delete Block...", "Insert 
  76.             Block...",   and  "Text/Value  Conversion...".   Information 
  77.             explaining the functions and operation of these menuitems is 
  78.             found in the Cellsize,  Delete, Insert,  and Textval scripts 
  79.             that  accompany  the example Startup script in the  Examples 
  80.             folder,  or  directory.   Open  these scripts by using  Open 
  81.             Script  in  the  Script menu.   These scripts  provide  many 
  82.             useful  Hyperscript  examples of using menuitems and  dialog 
  83.             boxes.
  84.              
  85.             If  you are already using a Startup script,  and wish to add 
  86.             the  example menuitems to the Wingz menus,  simply copy  and 
  87.             paste the Hyperscript commands listed in the example Startup 
  88.             script  into your existing Startup script.
  89.              
  90.             The  Startup  script  may  help  you  adapt  Wingz  to  your 
  91.             particular preferences and requirements, and will provide an 
  92.             introduction to the flexibility and power of Hyperscript.
  93.             
  94.  
  95.