0
convert circle to textpath script JSX
New Here
,
/t5/illustrator-discussions/convert-circle-to-textpath-script-jsx/td-p/1162163
Dec 12, 2008
Dec 12, 2008
Copy link to clipboard
Copied
Hi,
i'm searching for a script in JSX to convert a circle selected on my illustrator document to text path centered
Thanks
JP
i'm searching for a script in JSX to convert a circle selected on my illustrator document to text path centered
Thanks
JP
TOPICS
Scripting
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Explore related tutorials & articles
Community Expert
,
/t5/illustrator-discussions/convert-circle-to-textpath-script-jsx/m-p/1162164#M238200
Dec 12, 2008
Dec 12, 2008
Copy link to clipboard
Copied
Open a new document, draw a circle and run this.
var docRef = app.activeDocument
var lineRef = docRef.pathItems[0];
var pathTextRef = docRef.textFrames.pathText(lineRef);
docRef.textFrames[0].contents = "Path TextFrame.";
var docRef = app.activeDocument
var lineRef = docRef.pathItems[0];
var pathTextRef = docRef.textFrames.pathText(lineRef);
docRef.textFrames[0].contents = "Path TextFrame.";
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
_jeanphide_
AUTHOR
New Here
,
LATEST
/t5/illustrator-discussions/convert-circle-to-textpath-script-jsx/m-p/1162165#M238201
Dec 12, 2008
Dec 12, 2008
Copy link to clipboard
Copied
Thanks a lot Larry !
an other think : i would like to convert a selected path
Open a new document, select a circle on the page and run convert it.
an other think : i would like to convert a selected path
Open a new document, select a circle on the page and run convert it.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

