[Flashcoders] Flashcom and subtitles

2006-04-11 Thread Anastasia McCune
>Does anyone have a good solution for integrating video streamed over >Flashcom and captions (in multiple languages) ? >I've done some research but didn't find enough information. >Many thanks I have some experience in this, but am not sure it's a good solution. We used a product called HiCapti

Re: [Flashcoders] Active X and Microsoft IE ...

2006-04-11 Thread John Grden
it sounds like to me that you know alot more about "Active Content Center" than some of us ;) In fact, I haven't heard that term until you just used it, so I feel a need to get out there and see what's up. So, maybe an answer to your question is "we're just not up to speed on some of your feature

RE: [Flashcoders] Flashcom and subtitles

2006-04-11 Thread Michael A. Jordan
Look into Captionate (http://www.captionate.com). It's a tool that encodes multiple language caption tracks into the stream of an flv, similar to Flash 8's onCaption events, but more robust. I've tested it using an flv file streamed by rtmp using FVSS and it seems to work. Cheers, Michael ---

Re: [Flashcoders] SWF to FLA Decrypter

2006-04-11 Thread flash
You could try Ave Imperator: http://www.ave-imperator.com/ On Wed, 12 April 2006 02:05, Burns, John D wrote: > I've got a few legacy swf files that our company uses for some training > that were developed in-house a few years back and the previous developer > did not save the .fla files with every

Re: [Flashcoders] Local Connection Object problem

2006-04-11 Thread Mike Britton
I've also had problems when there's more than one instance of your application active. If the name of the LC is the same across applications it can result in windows stealing LC's from each other. Mike ___ Flashcoders@chattyfig.figleaf.com To change you

[Flashcoders] Instantiate a class by string

2006-04-11 Thread Julian 'Julik' Tarkhanov
Hello flashcoders. A simple question perhaps but couldn't figure it out by myself. How can I instantiate a class having it's qname? Say I know that I need an instance of "org.foo.Bar", how can I summon it? I tried doing: var anObject = new (eval("org.foo.Bar")); but I get undefined in retu

Re: [Flashcoders] Active X and Microsoft IE ...

2006-04-11 Thread John Dowdell
On 4/10/06, John Dowdell <[EMAIL PROTECTED]> wrote: >>Related question: Do you see reasons why so much of this conversation >>about ActiveX changes in the Microsoft browser has avoided the source >>material on the Adobe site? Reporters are frequently getting the facts >>wrong ("ads won't play" etc

Re: [Flashcoders] Active X and Microsoft IE ...

2006-04-11 Thread ryanm
What happens to a current browser if you make the switch? Nothing, it degrades gracefully. ryanm ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcod

RE: [Flashcoders] Local Connection Object problem

2006-04-11 Thread Steven Sacks
LocalConnection is basically instant. I've never seen a delay and I've done quite a bit of work with it, in browser environments, 3rd party wrapper environments, browser to 3rd party wrapper, and back, etc. The only issue I know of is if you try to send a local connection message back to the se

[Flashcoders] Local Connection Object problem

2006-04-11 Thread Jason Saelhof
Hi everyone, I am working on building a multi-window flash application that utilizes Local Connection Objects to communicate between windows. One window acts as a "server" of sorts while all the other windows are its "clients". The idea is that a client window can use an LCO to send a request t

RE: [Flashcoders] In the ide -detecting when the user has left the stage

2006-04-11 Thread Steven Sacks
Make a big invisible square that goes beyond the four edges, and mask out the stage area and make a button. Then you have your testing button. -Steven > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Manuel Saint-Victor > Sent: Tuesday, April 1

RE: [Flashcoders] Modifying flash's chain of events

2006-04-11 Thread André Goliath
doh, nevermind, understand your problem,... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of André Goliath Sent: Tuesday, April 11, 2006 11:19 PM To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] Modifying flash's chain of events ehm, how can a s

[Flashcoders] In the ide -detecting when the user has left the stage

2006-04-11 Thread Manuel Saint-Victor
Is there a way in the testing environment to know if someone has moused off the stage? ( Out of the range of the movie) Mani ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mai

RE: [Flashcoders] Modifying flash's chain of events

2006-04-11 Thread André Goliath
ehm, how can a script command be affected by the size of it´s parent mc? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Patrick Jean Sent: Tuesday, April 11, 2006 10:56 PM To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] Modifying flash's chain o

RE: [Flashcoders] Modifying flash's chain of events

2006-04-11 Thread Patrick Jean
Yeah I contemplated that option too. But my problem is that the second clip is smaller than the container, so I will have to use the hitTest method to get around it. But assuming both clips were the same size that would have worked :) Pat ---

[Flashcoders] Instantiating a Class with Linked Symbol

2006-04-11 Thread Rifled Cloaca
Hi! I've got a class that is linked to a symbol, and I'm instantiating it within a parent class. var myComment:Comment = new Comment( _level0.comments.attachMovie("CommentSymbol","comment",1), // attach Symbol associated with this class ADOdata.queryResults // send query results to be par

Re: [Flashcoders] Find Nearest Color?

2006-04-11 Thread elibol
Thanks Boon, I too found that it's VB which uses ^ for exponentiation. M. On 4/6/06, Boon Chew <[EMAIL PROTECTED]> wrote: > > > ^ is xor in C and Java as well. > > > elibol <[EMAIL PROTECTED]> wrote: This post is in spite of the > discussion, I had adapted this function from > before, but origina

RE: [Flashcoders] Modifying flash's chain of events

2006-04-11 Thread André Goliath
just a guess, but wouldn´t it be possible to call the parent´s event handler method from the child that recieved the event like this._parent.__f_click(); work for you? This works for click events, don´t know about others though,... -Original Message- From: [EMAIL PROTECTED] [mailto:[E

RE: [Flashcoders] Modifying flash's chain of events

2006-04-11 Thread Patrick Jean
Oh, I thought about it. Ok, I guess I'll have to use that method. I wish there was a "pass" method. Maybe in version 9. thanks for your time Patrick Jean Directeur de projets internet Monac'OH Data Mercantour http://www.monacoh.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EM

Re: [Flashcoders] Modifying flash's chain of events

2006-04-11 Thread Julian 'Julik' Tarkhanov
On 11-apr-2006, at 20:40, Patrick Jean wrote: Greetings. Is there a way to force flash' events to keep going down the chain even if a clip is trapping the message ? by example, if you have CLIP A , and CLIP B contained within CLIP A. CLIP A simply have a on(rollOver) CLIP B have a on(Press)

Re: [Flashcoders] Dynamic shread fonts was : Linked font from class

2006-04-11 Thread Zárate
Heeello! First of all, sorry for not publish the english version of the article. I never find time enough to do it :S Then, since right now I´m working with SWFMill and MTASC I´ll try to remember my bad french and read your post. I know sometime ago Martin Klasson (who is also in this lis

Re: [Flashcoders] Thinking about upgrading to Flash 8

2006-04-11 Thread Derek Vadneau
Take a look at the man's JSFL command: http://www.jessewarden.com/archives/2004/04/jsfl_list_frame.html Also, there's an extension from Teknision, but I can't find the link at the moment. So, no Flash 8 doesn't have this built-in, but with JSFL you can do this yourself. Jesse's spits out the fr

[Flashcoders] Flashcom and subtitles

2006-04-11 Thread McD
Does anyone have a good solution for integrating video streamed over Flashcom and captions (in multiple languages) ? I've done some research but didn't find enough information. Many thanks ___ Flashcoders@chattyfig.figleaf.com To change your subscri

Re: [Flashcoders] SWF to FLA Decrypter

2006-04-11 Thread elibol
Neat, are there any such alternatives to the Flasm assembler/disassembler? I will be working with Flasm, however, I would rather invest myself in whatever is best. M. On 4/11/06, eric dolecki <[EMAIL PROTECTED]> wrote: > > I should note that ASV 5 has a JSFL file to allow you to recompile a FLA >

Re: [Flashcoders] Thinking about upgrading to Flash 8

2006-04-11 Thread elibol
> Has Macromedia gotten around to adding a movieclip property that is > an array of all the labels in the movieclip? Much like the LabelList > property in Director? No, and not that I know of, however, if you were to define labels dynamically and circumvent the traditional way of frame labeling,

Re: [Flashcoders] Thinking about upgrading to Flash 8

2006-04-11 Thread Rich Rodecker
now that you bring it up, i do remember some sort of new functionality concerning frame labels in flash 8, but I cant remember what it was...but as far as I can tell it wasnt a label list. On 4/11/06, Zeh Fernando <[EMAIL PROTECTED]> wrote: > >A quick question before taking the plunge. > > Has

[Flashcoders] checkboxes in listBox

2006-04-11 Thread eric dolecki
i checked Google and FC archives but didnt see any quick examples. looking for a listbox component that has checkboxes in it via cellRenderer - where the click events on the checkboxes can broadcast that row's data property, etc. I will start to roll my own, just wanted to save some coding time.

[Flashcoders] Modifying flash's chain of events

2006-04-11 Thread Patrick Jean
Greetings. Is there a way to force flash' events to keep going down the chain even if a clip is trapping the message ? by example, if you have CLIP A , and CLIP B contained within CLIP A. CLIP A simply have a on(rollOver) CLIP B have a on(Press) By default, CLIP B will never receive the onPres

Re: [Flashcoders] Thinking about upgrading to Flash 8

2006-04-11 Thread Zeh Fernando
A quick question before taking the plunge. Has Macromedia gotten around to adding a movieclip property that is an array of all the labels in the movieclip? Much like the LabelList property in Director? No. If not, has anyone been able to replicate this functionality? Meaning, is it even p

Re: [Flashcoders] server-side convert to flv

2006-04-11 Thread Rich Rodecker
i beleive VideoZilla has a server side component as well: http://www.videozilla.net/ On 4/11/06, Duncan Reid <[EMAIL PROTECTED]> wrote: > Hi Mark, > > I recently setup ffmpeg on a shared host, i use Dreamhost, i believe it's > Debian. It took me a couple days to track down all the information an

[Flashcoders] off topic: good interactive demo reels?

2006-04-11 Thread Rich Rodecker
i know this is pretty off topic, but i was wondering if anyone know of some sites that had some good demo reels of interactive work? like this one: http://www.exopolis.com/home/reels.php ___ Flashcoders@chattyfig.figleaf.com To change your subscription o

Re: [Flashcoders] server-side convert to flv

2006-04-11 Thread Duncan Reid
Hi Mark, I recently setup ffmpeg on a shared host, i use Dreamhost, i believe it's Debian. It took me a couple days to track down all the information and quite a few compiles, i won't tell you how many, before i got it right. I'm also not really strong in this department either though so that mi

Re: [Flashcoders] documenting items passed via initobject

2006-04-11 Thread Mark Winterhalder
On 4/11/06, Helen Triolo <[EMAIL PROTECTED]> wrote: > If you make a class that extends MovieClip and "pass" some properties to > it via initobject, do you document those as @param's in the class if > you're using javadoc-type documentation, or is there some other standard > way of documenting them

Re: [Flashcoders] SWF to FLA Decrypter

2006-04-11 Thread eric dolecki
I should note that ASV 5 has a JSFL file to allow you to recompile a FLA from a SWF. Quick and easy. - e.dolecki On 4/11/06, Erik Porroa Vivanco <[EMAIL PROTECTED]> wrote: > > Hi, the last week I saw a Web page http://www.swfextract.com/, although is > it a bad practice, because you could turn to

Re: [Flashcoders] SWF to FLA Decrypter

2006-04-11 Thread Erik Porroa Vivanco
Hi, the last week I saw a Web page http://www.swfextract.com/, although is it a bad practice, because you could turn to the dark side! ;), use other paid software like Sothink-SWF Decompiler (http://www.google.com.ar/url?sa=t&ct=res&cd=1&url=http%3A//www.sothink.com/) is a good help when you lost a

Re: [Flashcoders] SWF to FLA Decrypter

2006-04-11 Thread elibol
Hi John, I'm not sure if there is a SWF to FLA converter since the FLA should contain data that does not necessarily get compiled into the swf, however, if it does exist, it should build a generic FLA with just what the swf contained. Aside from this though, there are SWF decompilers and dissasse

Re: [Flashcoders] server-side convert to flv

2006-04-11 Thread John Grden
absolutely you need to look at the licensing for anything you might transcode. On 4/11/06, Karthik <[EMAIL PROTECTED]> wrote: > > > I've tried it, but the usual answer to this question is to look up > > FFMPEG. You might also want to look into other issues such as > > licensing etc. before making

Re: [Flashcoders] SWF to FLA Decrypter

2006-04-11 Thread eric dolecki
ActionScript Viewer 5 is your ticket. On 4/11/06, Burns, John D <[EMAIL PROTECTED]> wrote: > > I've got a few legacy swf files that our company uses for some training > that were developed in-house a few years back and the previous developer > did not save the .fla files with everything else. Anyo

[Flashcoders] SWF to FLA Decrypter

2006-04-11 Thread Burns, John D
I've got a few legacy swf files that our company uses for some training that were developed in-house a few years back and the previous developer did not save the .fla files with everything else. Anyone know a good, reliable, free swf decrypter that I can use to pull them back into an FLA for modifi

[Flashcoders] Loading internal jpg with linkage

2006-04-11 Thread Mendelsohn, Michael
Hi list... I must be missing something. Is there a way to load a jpg from the library with a linkage name into a dynamically created movie clip on the stage? Thanks, - Michael M. ___ Flashcoders@chattyfig.figleaf.com To change your subscription option

Re: [Flashcoders] server-side convert to flv

2006-04-11 Thread Marc Hoffman
done that. Nothing specific enough. At 10:24 AM 4/11/2006, you wrote: I've tried it, but the usual answer to this question is to look up > FFMPEG. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http:

[Flashcoders] Dynamic shread fonts was : Linked font from class

2006-04-11 Thread erixtekila
still, you have to put that Shared thingie in both **The sharedLib AND ** The loader ... with zarate's, you don't need both ... actually, you just prepare the **SharedLib and then the Loader automatically loads in the new font (without linking, without compiling, without everything, just l

Re: [Flashcoders] server-side convert to flv

2006-04-11 Thread Karthik
> I've tried it, but the usual answer to this question is to look up > FFMPEG. You might also want to look into other issues such as > licensing etc. before making your decision. s/I've tried/I've not tried/ .. -K ___ Flashcoders@chattyfig.figleaf.com T

[Flashcoders] documenting items passed via initobject

2006-04-11 Thread Helen Triolo
If you make a class that extends MovieClip and "pass" some properties to it via initobject, do you document those as @param's in the class if you're using javadoc-type documentation, or is there some other standard way of documenting them since they aren't technically parameters? thx, Helen -

Re: [Flashcoders] Making a cd for Pc and Mac (Zinc - Director - SWFStudio - .NET)

2006-04-11 Thread Charles Parcell
Look into Arca (http://xtras.tabuleiro.com/products/arca/index.tdb) or Valintine DB (http://www.paradigmasoft.com/en/products/developer/adk/V4MD) Xtras for the database. Using Treeview in Director also

Re: [Flashcoders] server-side convert to flv

2006-04-11 Thread John Grden
adam procter posted these, thought they might be what you're looking for: try it: http://rosebud.luton.ac.uk/madwiki/index.php/Upload_a_Video source: http://meanwhile.luton.ac.uk/dav/tests/red5_ff/ffred5.zip hth On 4/11/06, Sönke Rohde <[EMAIL PROTECTED]> wrote: > > If you like to use PHP have

RE: [Flashcoders] server-side convert to flv

2006-04-11 Thread Sönke Rohde
If you like to use PHP have a look at http://ffmpeg-php.sourceforge.net/ Cheers, Sönke > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Marc Hoffman > Sent: Tuesday, April 11, 2006 6:42 PM > To: Flashcoders mailing list; Flashcoders mailing list

Re: [Flashcoders] server-side convert to flv

2006-04-11 Thread Marc Hoffman
I'm interested in using ffmpeg. Having never used any server-side engines/scripting other than a little ASP, I haven't a clue how ffmpeg gets implented, and their website seems to presume advanced user knowledge. Can anyone steer me to something that explains how to implent ffmpeg? For instance

Re: [Flashcoders] Making a cd for Pc and Mac (Zinc - Director - SWFStudio - .NET)

2006-04-11 Thread Troy Rollins
On Apr 11, 2006, at 12:29 PM, Flapflap wrote: Maybe look at mProjector mProjector is nice, but it doesn't offer any direct database support on either platform, if that is important to the project. Lieven, you haven't really indicated why Flash itself is key to the project. What function

Re: [Flashcoders] Making a cd for Pc and Mac (Zinc - Director -SWFStudio - .NET)

2006-04-11 Thread Arthur Debert
Hi Gabe, > to make one run on a mac so not entirely sure of what all the issues are > but it is a very plausible direction since there are many platform > independent libraries for python. it's been a while since I haven't touched this but AFAIK wxPython used the activex object to embed the swf, wh

[Flashcoders] Thinking about upgrading to Flash 8

2006-04-11 Thread Info
A quick question before taking the plunge. Has Macromedia gotten around to adding a movieclip property that is an array of all the labels in the movieclip? Much like the LabelList property in Director? If not, has anyone been able to replicate this functionality? Meaning, is it even possib

Re: [Flashcoders] Making a cd for Pc and Mac (Zinc - Director - SWFStudio - .NET)

2006-04-11 Thread Flapflap
Lieven Cardoen a écrit : During last year I had a lot of experience with making cd's that basically use an main swf embedded in Director or Zinc. With both there are lots of problems. This application writes xml to harddisk, needs to reed data from a database, alters screen resolution...

RE: [Flashcoders] Linked font from class

2006-04-11 Thread jim
When was this written? I wrote the same tutorial on this list a couple of times. http://chattyfig.figleaf.com/pipermail/flashcoders/2006-February/160965.html Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Cedric Muller Sent: 11 April 2006 09:47 To:

RE: [Flashcoders] Flv streaming end detection

2006-04-11 Thread j.c.wichman
Hi, Thanks gonna try this first thing tomorrow. Assuming the metadata is right though, what is the best way to detect the end of the flv? Greetz Hans > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Sönke Rohde > Sent: Friday, April 07, 2006 12:

RE: [Flashcoders] Making a cd for Pc and Mac (Zinc - Director -SWFStudio - .NET)

2006-04-11 Thread Gabe Varela
I have written a few basic shells with python and wxpython it is pretty easy to run off a cd either with a batch file or using py2exe. Wxpython actually has a sample in the demo code to get you started, wxpython runs on a mac though it is not as developed as other platforms, I haven't had to make o

Re: [Flashcoders] server-side convert to flv

2006-04-11 Thread Arthur Debert
Hi Gerry > Does anyone know of a server-side application to convert uploaded > video in mpg, avi, mov or wmv format to > flv? Something like what youtube.com is doing? I searched the > archives and couldn't find anything. I don't know what youtube is using but, ffmeg (http://ffmpeg.sourceforge.net)

Re: [Flashcoders] server-side convert to flv

2006-04-11 Thread Karthik
> Does anyone know of a server-side application to convert uploaded > video in mpg, avi, mov or wmv format to > flv? Something like what youtube.com is doing? I searched the > archives and couldn't find anything. I've tried it, but the usual answer to this question is to look up FFMPEG. You might

RE: [Flashcoders] External swf / attachMovie

2006-04-11 Thread jim
All you need to do is make A.swf a shared library by having one & only one movieclip in its library exported for sharing. In B.swf you import for runtime sharing the same movieclip and make sure it is on the stage somewhere. This forces all movieclips in A.swf to be available to attachMovie in B.sw

[Flashcoders] server-side convert to flv

2006-04-11 Thread Gerry Creighton
Does anyone know of a server-side application to convert uploaded video in mpg, avi, mov or wmv format to flv? Something like what youtube.com is doing? I searched the archives and couldn't find anything. Thanks, Gerry ___ Flashcoders@chattyfig.fig

[Flashcoders] Making a cd for Pc and Mac (Zinc - Director - SWFStudio - .NET)

2006-04-11 Thread Lieven Cardoen
During last year I had a lot of experience with making cd's that basically use an main swf embedded in Director or Zinc. With both there are lots of problems. This application writes xml to harddisk, needs to reed data from a database, alters screen resolution... For my next project I'm not

Re: [Flashcoders] Active X and Microsoft IE ...

2006-04-11 Thread Weldon MacDonald
Does anyone know how long it takes for this kind of update to filter through? I, for instance NEVER accept anything from Microsoft on the first pass. Do I have to impliment several alternatives? What happens to a current browser if you make the switch? Weldon On 4/10/06, [EMAIL PROTECTED] <[EMAIL P

RE: [Flashcoders] _root.getURL("/docs/worddocument.doc");

2006-04-11 Thread j.c.wichman
Hi, ._url returns the location of your swf. Greetz Hans > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Lieven Cardoen > Sent: Tuesday, April 11, 2006 11:38 AM > To: Flashcoders mailing list > Subject: [Flashcoders] _root.getURL("/docs/worddo

Re[2]: [Flashcoders] Linked font from class

2006-04-11 Thread Iv
Hello broDy, - You could use absolute path to your shared font library, perhaps, that will help. I mean: "http://www.somewhere.com/fonts/myfontlib.swf"; BW> I have about 150 .swf's' all sharing the same Font BW> Symbol. Everything works great when the files are in BW> the same folder as t

[Flashcoders] _root.getURL("/docs/worddocument.doc");

2006-04-11 Thread Lieven Cardoen
This seems to work if Internet Explorer is my standard browser (although an extra tag is needed to solve some security issues when opening a site like this). If I set Firefox as Standard Browser, strange things happen. When Firefox browser is not open, the _root.getURL(...) opens Firefox, but n

RE: [Flashcoders] Car codes

2006-04-11 Thread Lee McColl-Sylvester
There's little out there. You can find some physics information from Marco Monster (do a search on Google). Back in my race game development days, his was the information to rely on. If you were doing something Exe based, I'd say to take a look at Tokamak, but being Flash based, you're gonna

[Flashcoders] Car codes

2006-04-11 Thread Tommie Nybakk
Hi there flashcoders. i am wondering if you know a verry good code "actionscript" for a car? i am creating a car racing-game and would like a verry smooth and nice navigation for my car. // Greatings from sweden. _ Hitta rätt på

[Flashcoders] Scoping question

2006-04-11 Thread j.c.wichman
Hi List, I have the following piece of code: function getShowMenuFunction (menuID:String):Function { return Delegate.create (this, function (evt) { var loc = null;

Re: [Flashcoders] Linked font from class

2006-04-11 Thread Cedric Muller
still, you have to put that Shared thingie in both **The sharedLib AND ** The loader ... with zarate's, you don't need both ... actually, you just prepare the **SharedLib and then the Loader automatically loads in the new font (without linking, without compiling, without everything, just

Re: [Flashcoders] Linked font from class

2006-04-11 Thread erixtekila
this technote is stupid ... what a mess! ... dumb stupid! here: http://www.zarate.tv/articulos/shared_fonts/index.php<- in spanish http://tinyurl.com/fufs4<- english translation using babelfish + there: http://chattyfig.figleaf.com/pipermail/flashcoders/2005-November/ 153927.html If so

Re: [Flashcoders] French Characters in dynamic textarea

2006-04-11 Thread Julien Vignali
Yes, solved the same issue by encoding/converting the XML file into UTF-8, but also by embedding also the "Basic Latin " and "Latin I" caracters in the textarea... Éric Thibault a écrit : Save your XML in utf-8 and embed the font inside your dynamic text field. A+ Wade Arnold wrote: I ha

Re: [Flashcoders] Linked font from class

2006-04-11 Thread Cedric Muller
hello, this technote is stupid ... what a mess! ... dumb stupid! here: http://www.zarate.tv/articulos/shared_fonts/index.php<- in spanish http://tinyurl.com/fufs4<- english translation using babelfish + there: http://chattyfig.figleaf.com/pipermail/flashcoders/2005-November/ 153927.htm