Thread: Empty Value
View Single Post
This seems to work:

Code:
tell application id "OGfl"
	tell front window 
		set lstShapes to selection
		set oShape to first item of lstShapes
		set lstInLines to (incoming lines of oShape where its source is not missing value)
		repeat with oLine in lstInLines
			-- do something to the line
		end repeat
	end tell
end tell

Last edited by RobTrew; 2011-04-05 at 01:30 AM..