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

 
 
Power Save Mac

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 39



But there's another issue: this macro does not actually work on the Mac (at least not in Word 2004). Things like this will happen from time to time when you get macros from people using Word Windows, so let's try to deal with that too. It seems that on Word Windows, you can work around the fact that ^p – a special character combination that means "paragraph mark" – is not, for some reason, allowed in the Find box when you also use wildcards. (We want to use wildcards to represent {2,}, a wildcard meaning "two or more occurrences" of the paragraph mark.)

On Word Windows, you simply use ^13 instead of ^p in the Find box, with Use Wildcards, in the expression ^13{2,}. But that doesn't work in Word 2004, neither in the UI nor in VBA, nor in AppleScript. Try it in the Find box in the UI and you will see for yourself. You can use ^13 without wildcards, but not ^13{2,} with wildcards (an error message "The Find What box contains an expression which is not valid" appears). In a script, you just get an error message that the "find does not understand the execute find message", which is actually the same error. Apparently, on the Mac, ^13 just means the same as ^p and is subject to the same constraints. Whether this is a bug or is somehow unavoidable is unknown.

Our workaround will simply be to look for two paragraph marks together ^p^p and repeat the Replace All a few times until there are no more double-paragraph marks. Doing a Find and Replace is still so much faster than looping through all the paragraphs that this is a reasonable workaround. Here are the VBA macro and its modified AppleScript version:

'Note that using Find and Replace is dramatically faster

'than cycling through the Paragraphs collection

 

'Replace: ^13{2,} with ^p, which replaces all occurrences

'of two or more consecutive paragraph marks with one paragraph mark

 

With ActiveDocument.Range.Find

.Text = "^13{2,}"

.Replacement.Text = "^p"

.Forward = True

.Wrap = wdFindContinue

.Format = False

.MatchCase = False

.MatchWholeWord = False

.MatchAllWordForms = False

.MatchSoundsLike = False

.MatchWildcards = True

.Execute Replace:=wdReplaceAll

End With

 

'However, you can't use Find & Replace to delete the first or last 'paragraph in the document, if they are empty. To delete them:

 

Dim MyRange As Range

Set MyRange = ActiveDocument.Paragraphs(1).Range

If MyRange.Text = vbCr Then MyRange.Delete

 

Set MyRange = ActiveDocument.Paragraphs.Last.Range

If MyRange.Text = vbCr Then MyRange.Delete

Note that when replacing, you need the special ^p character to insert a proper paragraph end (^13 would insert some sort of corrupt version, though it looks all right at first glance. It might be just a carriage return without all the extra info that is stored in a Word paragraph mark.) Here is the modified AppleScript version, with comments below:

tell application "Microsoft Word"

     -- replace ^p^p with ^p to replace all occurrences of two

     -- consecutive paragraph marks with one paragraph mark

     -- repeat until done

    

     repeat

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

         

          if (content of textObject) does not contain (return & return) then

              exit repeat -- done

          end if

         

          set findObject to (find object of textObject)

          -- we need a separate execute find on it, so best set a



 


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-2008 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.