MacTech Network:   MacForge.net  |  Computer Memory  |  Register Domains  |  Printer Supplies  |  Cables  |  iPod Deals  |  Mac Deals  |  Mac Book Shelf


  MacTech Magazine

The journal of Macintosh technology

 
 
AquaZone

Magazine In Print
  About MacTech  
  Home Page  
  Subscribe  
  Archives DVD  
  Submit News  
  Submit a Tip!  
  Get a copy of MacTech RISK FREE  
Google
Entire Web
mactech.com
Mac Community
More...
MacTech Central
  by Category  
  by Company  
  by Product  
MacTech News
  MacTech News  
  Previous News  
  MacTech RSS  
Article Archives
  Show Indices  
  by Volume  
  by Author  
  Source Code FTP  
Inside MacTech
  Writer's Kit  
  Editorial Staff  
  Editorial Calendar  
  Back Issues  
  Advertising  
Contact Us
  Customer Service  
  MacTech Store  
  Legal/Disclaimers  
  Webmaster Feedback  

Moving from Microsoft Office VBA to AppleScript:
MacTech's Guide to Making the Transition

Introduction  |  Table of Contents

Page Prev and Page Next buttons at bottom of the page.

Would you like a hard copy
or PDF of this Guide?

You can get a hard copy sent to you
AND download a PDF now ($19.95)
, or

... just download a PDF ($9.95).

Either way, you get a complimentary
MacTech Magazine Subscription

courtesy of the
Microsoft Mac Business Unit


 

  Magazine Reg. Price:  $50.00 value  
  Guide Reg. Price:  $40.00 value  
  You Save:  over $80.00!  

April, 2007
Page 40



          -- variable to it so we just get it once

          tell findObject

              set {content, content of its replacement, forward, wrap, format, ¬

                   match case, match whole word, match all word forms, ¬

                   match sounds like, match wildcards} to {"^p^p", "^p", ¬

                   true, find continue, false, false, false, false, false, false}

          end tell

          execute find findObject replace replace all

         

          -- Find/Replace cannot delete first or last paragraph if empty, so:

          set myRange to text object of paragraph 1 of active document

          if content of myRange = return then delete myRange

         

          try

              set myRange to text object of paragraph -1 of active document

              if content of myRange = return then delete myRange

          end try

     end repeat

    

end tell

We use a plain repeat block since we do not know how many times we'll need to run it. (If we were to use repeat while (get text object of active document does not contain return & return) or a variable set to the same thing, it does not re-evaluate each time and the repeat loop never finishes (I've tried it). Instead we re-set the textObject variable just inside the repeat loop to force a re--evaluation, and then exit repeat under that condition.

That means that we also need to run the code to delete the first and last paragraphs if they are empty inside the loop; otherwise the text range will continue to have two paragraph marks at the very end if the last paragraph is empty – forever, and you'd never get out of the repeat loop. Finally, you need a try/end try block around the code deleting the last empty paragraph since it errors when it tries to delete myRange. It actually does delete the paragraph (just a 'return') but still errors. So a simple try/error gets around that.

In the above script, just use

set textObject to (text object of selection) -- redo each time

instead of text object of active document to have the Find & Replace work on selected text rather than on a whole document.

Working with Bookmarks

There are two interesting articles on the Word MVP website, by Ibby and by Dave Rado, about working with bookmarks:

<http://www.word.mvps.org/FAQs/MacrosVBA/WorkWithBookmarks.htm>

<http://www.word.mvps.org/FAQs/MacrosVBA/InsertingTextAtBookmark.htm>

This is not the place to repeat all their helpful tips and explanations, but just to check that everything they recommend can easily be done in AppleScript too. First go to Preferences/View, and check to Show Bookmarks so you can see what‘s happening.

To insert text at (that is, after) a placeholder bookmark (one where you inserted a bookmark at an insertion point in the text):



 


Click here to find out more about our best subscription bundle deal ever!
2 years of the magazine, and the all new MacTech DVD ... at 70% off!



Click on the cover to
see this month's issue!

TRIAL SUBSCRIPTION
Get a RISK-FREE subscription to the only technical Mac magazine!
 
 


MacTech Magazine. www.mactech.com
Toll Free 877-MACTECH, Outside US/Canada: 805-494-9797

Register Low Cost (ok dirt cheap!) Domain Names in the MacTech Domain Store. As low as $1.99!
Save on brand compatible and name brank ink jet and laser supplies.
Save on long distance * Upgrade your Computer
Movies with No Late Fees!

See local info about Westlake Village
SJ * BRJ * BJ * OJ * NITS
Staff Site Links



All contents are Copyright 1984-2007 by Xplain Corporation. All rights reserved.

MacTech is a registered trademark of Xplain Corporation. Xplain, Video Depot, Movie Depot, Palm OS Depot, Explain It, MacDev, MacDev-1, THINK Reference, NetProfessional, NetProLive, JavaTech, WebTech, BeTech, LinuxTech, Apple Expo, MacTech Central and the MacTutorMan are trademarks or service marks of Xplain Corporation. Sprocket is a registered trademark of eSprocket Corporation. Other trademarks and copyrights appearing in this printing or software remain the property of their respective holders.