Hey guys,
Ok, so I have this great automator workflow that basically creates a powerpoint of a bunch of photos I have.
I currently have it set up to insert a footer, which is fine.
But the automator action Set Footer for Powerpoint Slides does not allow you to set the Font and Size of the text in the footer.
So obviously this will have to get done with applescript.
After the Set Footer for Powerpoint Slides action is executed, I have the following applescript that runs:
on run {input, parameters}
set imgWidth to (8 * 70)
tell application "Microsoft PowerPoint"
activate
tell active presentation
set slideCount to count slides
set {height:slideHeight, width:slideWidth} to slide master of slide 1
repeat with a from 1 to slideCount
tell picture 1 of slide a
set width to imgWidth
set properties to {top:((slideHeight - height) div 3), left position:((slideWidth - imgWidth) div 2)}
end tell
end repeat
end tell
end tell
return input
end run
Now my question is where would I put int the above applescript the script to change the font and size of the text in the footers?
Thanks!
Phil