View Single Post
How do I get it to change just the color of the text without replacing the entire text and its properties? Something like:
Code:
tell application "OmniGraffle Professional 5"
	tell canvas of front window
		set color of properties of front shape to {0, 0, 65535}		
	end tell
end tell
Or, how do I get the color of the existing text? Where are the properties for text held as I can't find them in the existing DOM. How would I say the following:
Code:
tell application "OmniGraffle Professional 5"
	tell canvas of front window
		set p to color of properties of front shape
                -- or
                set p to color of second text of properties of front shape 
	end tell
end tell