Re: Still trying to create a simple line in Illustrator
Re: Still trying to create a simple line in Illustrator
- Subject: Re: Still trying to create a simple line in Illustrator
- From: Olivier Ringenbach <email@hidden>
- Date: Mon, 03 Nov 2003 18:47:42 +0100
>
I've tried as many ways as I can think of to create a simple two point
>
line in Illustrator 10.
>
>
I want to create a simple line in Illustrator from Point A {x,y} to
>
Point B {x,y}
>
>
I think I've exhausted the following syntax variations and had no luck:
>
>
(code) -- make path item at beginning with properties {entire
>
path:{{x1,y1}, {x2,y2}}} -- (end code)
>
>
Seems as though this should be pretty straight forward.
That's the right way, just embbed it in a tell block :
tell application "Adobe Illustrator 10"
tell document 1
make path item at beginning with properties {entire path:{{x1, y1},
{x2, y2}}}
end tell
end tell
Regards
--
Olivier
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.