Set Font of Body of Current Slide in Keynote to Bold?

Hi All,

Do any of you have any suggestions for how to do this? I have a script that adds a note to review the current slide and the one before it, but I’d like to be able to see that on the slide itself as well (see below). Setting the text on the slide to bold would work, but I am having trouble. Any help would be greatly appreciated.


set file_path to "Macintosh HD:Users:mpa15:Documents:AppleScript:Keynote:star_overlay.tif" as alias

tell application "Keynote"
	get properties
	set t_f to playing
	if t_f then
		tell current slide of the front slideshow
			set notes to "Review"
			set font of body to "Helvetica Bold"
		end tell
		
		show previous
		
		tell current slide of the front slideshow
			set notes to "Review"
			set font of body to "Helvetica Bold"
		end tell
		
		show next
		
	else
		start slideshow
		tell current slide of the front slideshow
			set notes to "Review"
			set font of body to "Helvetica Bold"
		end tell
		
		show previous
		
		tell current slide of the front slideshow
			set notes to "Review"
			set font of body to "Helvetica Bold"
		end tell
		
		show next
		
		stop slideshow
	end if
end tell