Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Create Keynote '09 slide from Numbers '09 selection' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Create Keynote '09 slide from Numbers '09 selection
Authored by: mr. applescript on Jan 10, '09 11:33:23AM
Here's the variation that assigns a master slide:
tell application "Keynote"
	activate
	tell slideshow 1
		set this_slide to make new slide at the beginning of slides
		set the master_name to "Bullets" -- or "Title & Bullets"
		if exists master slide master_name then set master of slide 1 to master slide master_name
		tell slide 1
			set body to the bullet_points
		end tell
	end tell
end tell


[ Reply to This | # ]