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


  MacTech Magazine

The journal of Macintosh technology

 
 

Magazine In Print
  About MacTech  
  Home Page  
  Subscribe  
  Archives DVD  
  Submit News  
  MacTech Forums  
  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 93



     set theSlide to make new slide at end of thePres¬

          with properties {layout:slide layout text slide}

end tell

We open the presentation and then set our variable to active presentation – the presentation in the front. The open command always opens the file in the front of the application, so this always works, if the presentation was not already open. If the presentation already is open, however, it does not come to the front, and you will be acting on the wrong presentation. So here's the full workaround you need:

tell application "Microsoft PowerPoint"

     try

          set thePres to presentation "Saved Pres.ppt"

     on error

          open "Mac HD:Users:yourname:Desktop:Saved Pres.ppt"

          set thePres to active presentation

     end try

     set theSlide to make new slide at end of thePres ¬

          with properties {layout:slide layout text slide}

end tell

When Office 2008 arrives, do check in the Microsoft PowerPoint Suite to see if there is an 'open presentation' or similarly named command that returns a result, and also check open in the Standard Suite just in case, as well.

Make a New Slide

This turns out to be quite interesting. The Add method for Slides in VBA requires two arguments: Layout and Index:

ActivePresentation.Slides.Add Index:=1, Layout:=ppLayoutText

Now in AppleScript, there are not many properties of slide that are read/write (and some, like color scheme, require a special proprietary command to change them, so can't be set at inception when making a new slide). layout can be set, but slide index (the AppleScript term for Index) cannot – it's read-only and can't be set, not even at inception as read-only properties sometimes can. There is, however, a proper, bona fide AppleScript way of specifying where an element is inserted, and that's precisely what the developers have done here, to their credit. I have shown many times in these articles that elements are made at an object, and usually that's all you need to do. (See all the previous examples in Word and Excel). But if you try:

tell application "Microsoft PowerPoint"

     set newSlide to make new slide at active presentation ¬

          with properties {layout:slide layout text slide}

end tell 

hoping that will work, it doesn't: it errors.

If you take a good look at the make command in the Standard Suite of any application, you'll see it has two required parameters: new (rather redundant since it's obligatory, but technically it's this new argument that specifies the class of the new element) and at. Well, you knew that already. But the description for the at parameter says "location reference : the location at which to insert the element". Now, strictly speaking, that really requires a precise location, not just "at" the parent object. Since in some cases it doesn't really matter where, and in other cases there's no choice where new elements go – they go at the end, after existing elements – most applications have implemented a convenient coercion that lets you omit the "at end of [object]". But with the slides of a presentation, we really want to be able to insert them anywhere, not just at the end, and we can!

The proper ways in AppleScript of indicating an insertion location are: at beginning of, at end of, at before [some element], at after [some element]. And all those work:

tell application "Microsoft PowerPoint"

     set newSlideA to make new slide at beginning of active presentation ¬



 


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!
 
Nokia Qt Beta
 


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.