home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / CBMDevKit1.dms / CBMDevKit1.adf / tutorials.lha / tutorials / Multiview_Arexx < prev    next >
Encoding:
Text File  |  1993-11-04  |  2.3 KB  |  134 lines

  1.  
  2. V40 Multiview ARexx Commands
  3. ----------------------------
  4. (c) Copyright 1992-93 Commodore-Amiga, Inc.  All Rights Reserved
  5.  
  6. OPEN
  7.   NAME/K,CLIPBOARD/S,CLIPUNIT/K/N
  8.   Open a file.
  9.  
  10. RELOAD
  11.   ,
  12.   Reload the current object.
  13.  
  14. SAVEAS
  15.   NAME/K,IFF/S
  16.   Save the current object to disk.  The IFF switch is used to force the
  17.   save to be IFF instead of RAW.
  18.  
  19. PRINT
  20.   ,
  21.   Print the current object.
  22.  
  23. ABOUT
  24.   ,
  25.   About the current object.
  26.  
  27. QUIT
  28.   ,
  29.   Quit MultiView.
  30.  
  31. MARK
  32.   ,
  33.   Start Mark mode.
  34.  
  35. COPY
  36.   ,
  37.   Copy the currently selected block to the clipboard.
  38.  
  39. CLEARSELECTED
  40.   ,
  41.   Deselect the selected block.
  42.  
  43. GETTRIGGERINFO
  44.   VAR/S,STEM/K
  45.   Provide a list of trigger methods that the current object supports.
  46.  
  47.   VAR causes the information to be returned in RESULT.
  48.  
  49.   STEM cause the information to be returned in the named stem variable.
  50.   The following values are supported.
  51.  
  52.   stem.count        number of elements in the array.
  53.   stem.n.label        label
  54.   stem.n.command    command
  55.   stem.n.method        method
  56.  
  57. DOTRIGGERMETHOD
  58.   METHOD/A
  59.   Perform a trigger method on the current object.
  60.  
  61. SCREEN
  62.   TRUE/S,FALSE/S
  63.   Cause the object to be displayed on a screen or not.
  64.  
  65. PUBSCREEN
  66.   NAME/A
  67.   Cause the object to be displayed on the specified public screen.
  68.  
  69. SNAPSHOT
  70.   ,
  71.   Save the current window position to Env.
  72.  
  73. GETCURRENTDIR
  74.   ,
  75.   Return the current directory for the current object.
  76.  
  77. GETFILEINFO
  78.   ,
  79.   Get the file information for the current object.
  80.  
  81. GETOBJECTINFO
  82.   VAR/S,STEM/K
  83.   Return information about the current object.
  84.  
  85.   VAR causes the information to be returned RESULT.
  86.  
  87.     "name","basename","group","id"
  88.  
  89.   STEM causes the information to be returned in the named stem variable.
  90.  
  91.     stem.filename    file name of the current object.
  92.     stem.name        object type name.
  93.     stem.basename    object type basename.
  94.     stem.group        object type group.
  95.     stem.id        object type id.
  96.  
  97. MINIMUMSIZE
  98.   ,
  99.   Resize the object's window to its minimum size.
  100.  
  101. NORMALSIZE
  102.   ,
  103.   Resize the object's window to its nominal size.
  104.  
  105. MAXIMUMSIZE
  106.   ,
  107.   Resize the object's window to its maximum size.
  108.  
  109. WINDOWTOFRONT
  110.   ,
  111.   Bring the object's window to front.
  112.  
  113. WINDOWTOBACK
  114.   ,
  115.   Send the object's window to back.
  116.  
  117. ACTIVATEWINDOW
  118.   ,
  119.   Activate the object's window.
  120.  
  121. SCREENTOFRONT
  122.   ,
  123.   Bring the object's screen to front.
  124.  
  125. SCREENTOBACK
  126.   ,
  127.   Send the object's screen to back.
  128.  
  129. BEEPSCREEN
  130.   ,
  131.   Cause a display beep on the object's screen.
  132.  
  133.  
  134.