Created
January 3, 2013 03:02
-
-
Save anonymous/4440395 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Microsoft PowerPoint" | |
activate | |
set theView to view of document window 1 | |
repeat with slideNumber from 1 to count of slides of active presentation | |
go to slide theView number slideNumber | |
tell slide slideNumber of active presentation | |
activate | |
tell shapes | |
select | |
end tell | |
end tell | |
tell application "System Events" | |
tell process "Microsoft PowerPoint" | |
tell menu bar 1 | |
tell menu bar item "Tools" | |
tell menu "Tools" | |
click menu item 5 | |
end tell | |
end tell | |
end tell | |
end tell | |
tell window 1 of process "Microsoft PowerPoint" | |
tell outline 1 of scroll area 1 | |
select (first row whose value of static text 1 is "Portuguese (Portugal)") | |
end tell | |
click button "OK" | |
end tell | |
end tell | |
end repeat | |
end tell` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment