Your search query "linkto%3A%22MacPython%2FMicrosoft Powerpoint%22" didn't return any results. Please change some terms and refer to HelpOnSearching for more information.

Clear message

Powerpoint and Word have extensive Applescript dictionaries.

Here's how to get the path of the folder of the current presentation in Powerpoint, and the name of the file:

  from appscript import *
  a = app("Microsoft Powerpoint")
  path = a.active_presentation.path()
  file = a.active_presentation.name()
  print path, file

Unable to edit the page? See the FrontPage for instructions.