home *** CD-ROM | disk | FTP | other *** search
/ Chip: 25 Years Anniversary / CHIP_25Jahre_Jubilaeum.iso / downloads / 401065 / WPO11 / Data1.cab / _589B2C7FAFB64407A9F7CE3F928289D2 < prev    next >
Text File  |  2003-03-07  |  2KB  |  49 lines

  1. To translate a Quattro Pro macro command to PerfectScript syntax,
  2.  
  3. 1    Remove the opening brace of the Quattro Pro macro command and place it just after command name. For example, change {BlockCopy A1..A20,C10} to BlockCopy{A1..A20,C10}.
  4.  
  5.     For commands without arguments, move the opening brace to just before the closing brace. For example, change {DOWN} to DOWN{}.
  6.  
  7. 2    Replace the braces with parentheses. For example, change DOWN{} to DOWN() and BlockCopy{A1..A20,C10} to BlockCopy(A1..A20,C10).
  8.  
  9. 3    Change any periods in the command name to underscores. For example, change Print.Block(A1..A20) to Print_Block(A1..A20).
  10.  
  11. 4    Change commas that separate arguments to semicolons.
  12.  
  13. 5    If an argument is calculated using a formula, enclose the formula in an Eval() statement. For example, change BlockFill_Start(+A20*0.25) to BlockFill_Start(Eval("+A20*0.25")). Eval() works only in PerfectScript macros.
  14.  
  15. Tips
  16.  
  17. ¿    Now you can copy these commands into the application you are using to edit PerfectScript macros, such as WordPerfect.
  18.  
  19. ¿    When you convert Quattro Pro macros to PerfectScript macros, the following Quattro Pro macro commands must be replaced by the corresponding PerfectScript commands:
  20.  
  21. Quattro Pro    PerfectScript
  22.  
  23. {ABS}    AbsoluteReference()
  24.  
  25. {ASSIGN}    AssignValue()
  26.  
  27.     Related topics
  28.  
  29. PerfectScript Macro Commands
  30.  
  31. When you use the Quattro Pro commands in PerfectScript, you need to use slightly different syntax than in Quattro Pro. You can translate Quattro Pro commands to PerfectScript syntax. Or, you can record a macro as a PerfectScript macro, then access a list of PerfectScript commands to edit the macro.
  32.  
  33.     To translate a Quattro Pro macro command to PerfectScript syntax
  34.  
  35.     To record a PerfectScript macro
  36.  
  37.     To edit a PerfectScript macro by selecting commands from a list
  38.  
  39.     Macro Command Lists
  40.  
  41.     Related topics
  42.  
  43.  
  44.  
  45.  
  46. mac_QP8, 07/23/97, 12:07 PM, Topic 2
  47.  
  48.  
  49.