[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 subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] MovieClip prototype

2007-03-29 Thread Matheus Araujo

It worked... but just for the mc instance...

I have lots of MCs working as buttons on my movie
and I don't want to call the function on each button...

I need to have a listener to detect which MC has an
onRelease on it and set an onRollover function to them...

Is that possible?
thx


On 3/29/07, eka [EMAIL PROTECTED] wrote:


Hello :)

try this :

// constructor of the class
_global.MyButton = function()
{
 trace( this +  constructor) ;
}

// inject addListener, removeListener and broadcastMessage methods in the
prototype
AsBroadcaster.initialize(MyButton.prototype) ;

// the methods of your custom class
MyButton.prototype.onRollOver = function ()
{
   if (this.onRelease != null || this.onPress != null)
   {
   this.broadcastMessage(click, this) ;
   }
}

// test

var listener:Object = {} ;
listener.click = function( target )
{
  trace( click :  + target ) ;
  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]:

 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 movie clips inside the ones
 in
 the first level...
 Is there Any way to accsess these movie clips?

 Thanks in advance
 Matheus
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[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 movie clips inside the ones in
the first level...
Is there Any way to accsess these movie clips?

Thanks in advance
Matheus
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


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 have errors or are buggy
or
just plain do not work.
I am even willing to have him purchase another one however I need to
install
it and see all of the source
files as well as test it before my client will pay for it as he has been
burned already.

I have one from Proxus and we would like to use it but I cant get it to
work. I can send you the sources
as well as component (a value of $100) if anyone could get it to work for
me.

Thanks in advanvce.

Eric Walton 9 / Edub9

To view more about
The Artwork of Eric Walton 9 / Edub9
please visit the following:
www.hollywoodfineart.com
www.myspace.com/ericwalton9_edub9
Providentia Marketing LLC
754-246-7620 Cel
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[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
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com