View Single Post
You can duplicate it to a particular position in the graphics collection, and then reference the graphic at that position:

Code:
tell application id "OGfl"
	tell front window
		set theObject to item 1 of (selection as list)
		tell its canvas
			duplicate theObject to end of graphics
			set oDuplicate to item -1 of graphics
		end tell
	end tell
end tell