home *** CD-ROM | disk | FTP | other *** search
/ Merciful 3 / Merciful_Release_3.bin / software / f / finalwriter / finalwriterv5.04ukver.lha / FinalWriter_B / FWMacros / Magnify_Up < prev    next >
Text File  |  1996-01-05  |  646b  |  23 lines

  1. /* ========================================== */
  2. /*  FINAL WRITER AREXX MACRO                  */
  3. /*  View_Up - Increase the view magnification */
  4. /*  $VER: View_Up 3.1 (5.1.96)                */
  5. /* ========================================== */
  6.  
  7. Options Results
  8.  
  9. Status View
  10. curview = Result
  11.  
  12. Select
  13.    WHEN curview < "25"  THEN View "25"
  14.    WHEN curview <= "25"  THEN View "50"
  15.    WHEN curview <= "50"  THEN View "75"
  16.    WHEN curview <= "75"  THEN View "100"
  17.    WHEN curview <= "100" THEN View "125"
  18.    WHEN curview <= "125" THEN View "150"
  19.    WHEN curview <= "150" THEN View "200"
  20.    WHEN curview <= "200" THEN View "400"
  21.    OTHERWISE EXIT
  22. END
  23.