Re: Fonts in Illustrator CS
Re: Fonts in Illustrator CS
- Subject: Re: Fonts in Illustrator CS
- From: "Shane Stanley" <email@hidden>
- Date: Tue, 22 Jun 2004 08:53:11 +1000
On Mon, 21 Jun 2004 16:47:05 +0100, Rob Stott wrote:
>
I have a folder full of Illustrator CS files. I need to get a list of
>
every font used in these documents. I've written a droplet that will do
>
this, but its sloooooow. Its slow because it loops through each text
>
frame and then loops through each character.
>
>
I was wondering if anyone knew a quicker way?
Looping through stories might be a bit quicker:
tell application "Illustrator CS"
set allNames to {}
tell document 1
repeat with i from 1 to count of stories
set allNames to allNames & name of text font of characters of story i
end repeat
end tell
end tell
allNames
but probably not hugely so.
---
Shane Stanley <email@hidden>
_______________________________________________
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.