RE: [Flashcoders] retreieving a node that contains a specific attribute from an XML list.

2009-09-12 Thread Cor
Try this: trace (conteudo.slide[...@id); trace (conteudo.slide[...@id); trace (conteudo.slide[0].tit); -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Isaac Alves Sent: zondag 13 september 2009 2:00 To: f

[Flashcoders] retreieving a node that contains a specific attribute from an XML list.

2009-09-12 Thread Isaac Alves
I have an XMLList and I would like to retrieve a node in this list that contain a specfic attribute. here is how my XMLlist "conteudo" is organized. trace (conteudo) throws: Apresentação (lots of text...) Apresentação (lots of text...) etc... I've tried the following ways:

Re: [Flashcoders] Flash - PHP - mySQL Is there a better way now?

2009-09-12 Thread Karl DeSaulniers
Better way depends on your situation and needs. I use php flash and mysql all the time. Works for me. Karl Sent from losPhone On Sep 12, 2009, at 11:30 AM, Don Schnell - TFE > wrote: ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] Flash - PHP - mySQL Is there a better way now?

2009-09-12 Thread Don Schnell - TFE
___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] Access dynamically created MovieClip from class?

2009-09-12 Thread Cor
OOPS, and now I see Jason's response. Sorry for the redundancy. -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Cor Sent: zaterdag 12 september 2009 9:08 To: 'Flash Coders List' Subject: RE: [Flashcoders] Ac

RE: [Flashcoders] Access dynamically created MovieClip from class?

2009-09-12 Thread Cor
In addition to the comment: private var newSign:drawingSign = new drawingSign(); // as it is used to access objects from Library And if you have Movieclips in your library, give them a Linkage (right click on the MC in library) and you can instantiate it everywhere. -Original Message- Fr

RE: [Flashcoders] Access dynamically created MovieClip from class?

2009-09-12 Thread Cor
OK, This is not possible by trying to instantiate --> new drawingSign But in Main.as make drawingSign public: Public static var drawingSign:Movieclip = new MovieClip(); And then in classdraw.as you can call it: private var newSign:drawingSign = new Main.drawingSign(); But this is not the best