Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

convert circle to textpath script JSX

New Here ,
Dec 12, 2008 Dec 12, 2008
Hi,
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
589
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Community Expert ,
Dec 12, 2008 Dec 12, 2008
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.";
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Dec 12, 2008 Dec 12, 2008
LATEST
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.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines