[flexcoders] Re: Cairngorm eLearning Course and Quiz - who's in?

2006-08-23 Thread quinnwong74
Hi guys, I'm on the Breeze Training team and I'm currently learning Flex2 and Cairngorm to potentially use in a future version of Breeze. I would love to help out with this effort. I'm not sure if people are familiar with Breeze Presenter or Captivate, but we could potentially use this as a

[flexcoders] How do I match against an XML attribute that has a hyphen in its name?

2006-07-31 Thread quinnwong74
How do I match against an attribute that has a hyphen in its name? For example, suppose I have the following actionscript: private var books:XML; public function XMLListExample() { books = books book book-id=1 name=Design Patterns / book book-id=1 name=The Pragmatic

[flexcoders] Re: How do I match against an XML attribute that has a hyphen in its name?

2006-07-31 Thread quinnwong74
I actually found the answer a few minutes later :P This will work: var results:XMLList = books.book.(@[book-id] == id); Thanks, Quinn --- In flexcoders@yahoogroups.com, quinnwong74 [EMAIL PROTECTED] wrote: How do I match against an attribute that has a hyphen in its name