Originally Posted by
Musicman
Hi rawebd,
its actually a two-step process. The font gets copied partially to the swf, with a table that relates characters to indexes in the glyph table. Then the actual text only uses these indexes. Using a swf tool of any sort, you have to find the DefineFont or DefineFont2 bit to get the character list, and then the DefineText bit to extract the glyph indexes and translate them into character codes.
I have a program that gives me enough detail of swf's to do that manually, but I would probably wrap a a perl script around it or even write a rogram specific to the goal if it comes to lots of text.
Just an aside comment: the above-mentioned character table is not required technically, so it is just a convenience feature.A "swf optimizer" might just throw it out
Musicman