[Flashcoders] Shared Font Symbol

2007-04-17 Thread Matheus Araujo
Hi, Is there any way to select which caracters to embed into a shared font symbol? A don't use all the caracters that it´s being embeded and I need my file to be smaller... thx in advance Matheus ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] MovieClip prototype

2007-03-29 Thread Matheus Araujo
) ; functionName(param); } mc.__proto__ = MyButton.prototype ; // change the prototype scope of the visual instance mc MyButton.call(mc) ; // launch the constructor of the MyButton class over the visual instance. mc.addListener( listener ) ; // EKA+ :) 2007/3/28, Matheus Araujo [EMAIL PROTECTED

[Flashcoders] MovieClip prototype

2007-03-28 Thread Matheus Araujo
Hello coders... I'm trying to create a MovieClip prototype function to all my MCs that are buttons: MovieClip.prototype.onRollOver = function (){ if (this.onRelease != undefined || this.onPress != undefined){ functionName(param); } } The problem is that it doesn't work with the

Re: [Flashcoders] free flv player with lister component URGENT

2007-03-05 Thread Matheus Araujo
This is a good one: http://www.jeroenwijering.com/?item=Flash_Video_Player On 3/5/07, Eric Walton [EMAIL PROTECTED] wrote: Greeting all Flashcoders, Anyone know of a free flv player with lister component? One that works right out of the box. My client has purchased a couple others and they

[Flashcoders] Multiple FLV files playing as only one

2006-11-15 Thread Matheus Araujo
Hi, Is there any way to play multiple FLV files in sequence as if they are only one, with only one visual buffer? The sound will be a separated random file. The FLV and sound file names will be on a XML file. Thanks ___