[flexcoders] Apollo and where do we start.

2007-03-07 Thread nboulet
Hi guys :)
I've been reading this mailing list since quite a bit and I have a
question. Where can I start with Apollo development? And, please,
don't send me to the Adobe Labs, there is no place to download the SDK
and no tutorials or infos. And yes, I ordered my Apollo Pocket Guide
on Amazon hehe!
Thanks.
Nicolas



[flexcoders] Re: Apollo and where do we start.

2007-03-07 Thread nboulet
Thank you all.

This is what I'm doing now, I'm learning as much Flex ans I can. By
the way, anyone uses the Total Training DVD on Flex also? I've almost
finished the 1 DVD (AdobeĀ® Flex 2 Rich Internet Applications) and I'll
start the second (AdobeĀ® Flex 2 Advanced Visual Programming) today.

Nicolas

--- In flexcoders@yahoogroups.com, Steve Cox [EMAIL PROTECTED] wrote:

 There is no public SDK as of yet. 
  
 -Original Message-
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of nboulet
 Sent: 07 March 2007 13:23
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Apollo and where do we start.
  
 Hi guys :)
 I've been reading this mailing list since quite a bit and I have a
 question. Where can I start with Apollo development? And, please,
 don't send me to the Adobe Labs, there is no place to download the SDK
 and no tutorials or infos. And yes, I ordered my Apollo Pocket Guide
 on Amazon hehe!
 Thanks.
 Nicolas





[flexcoders] Re: How to clear a TileList of its items?

2007-02-27 Thread nboulet
Thanks for the tips!
It worked like a charm for me :)


--- In flexcoders@yahoogroups.com, Clint Modien [EMAIL PROTECTED] wrote:

 Odd... did you try setting the dataprovider to a new object instead 
of
 setting it too null?
 
 You could also try:
 
 yourTileListID.dataProvider.removeAll();
 
 
 
 On 1/6/07, Sascha [EMAIL PROTECTED] wrote:
 
 Thanks Clint, but all of them result in the same exception. 
Any other
  ideas?
 
 
 
 
--
 
  *From:* flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] *On
  Behalf Of *Clint Modien
  *Sent:* Sunday, 07 January, 2007 10:40
  *To:* flexcoders@yahoogroups.com
  *Subject:* Re: [flexcoders] How to clear a TileList of its items?
 
 
 
  I would try any new non-null complex type:
 
  new Object();
  new Array();
  new ArrayCollection();
 
  On 1/5/07, *Sascha*  [EMAIL PROTECTED] wrote:
 
  I'm trying to initialize a TileList after items were put into it 
so that
  it
  is empty again and I can load new items into it after that. I'm 
setting
  the
  TileList dataprovider to null but when I then try to load new 
items into
  it,
  it gives me an exception: Parameter child must be non-null.
  What would I have to do additionally to properly initialize the 
TileList?
 
  Sascha
 
 
 
   
 





[flexcoders] Re: Getting XML from an item in an ArrayCollection

2007-02-27 Thread nboulet
I'm having the same problem when affecting the result of an
httprequest to an ArrayCollection. The problem is, when there's no
results or only 1, I get the same error (#1034) as you.

Any ideas how to solve this?

Thanks!
Nicolas


--- In flexcoders@yahoogroups.com, gekkemus [EMAIL PROTECTED] wrote:

 I have a simple HTTPService that gets an XML document. The XML
 document is structured like this:
 
 STOCK_EXCHANGE
  .
  STOCK_HISTORY
STOCK
   SYMBOLGOOG/SYMBOL
   FULLNAMEGoogle Corporation/FULLNAME
   RATES
  RATE123,12/RATE
  RATE123,13/RATE
  
   /RATES
/STOCK
STOCK
   ...
/STOCK
  /STOCK_HISTORY
 /STOCK_EXCHANGE
 
 I have a resulthandler on the HTTPService, that handles the
 ResultEvent. It basically makes an ArrayCollection:
 stockDetailCollection = event.result.STOCK_EXCHANGE.STOCK_HISTORY.STOCK;
 
 So when done my ArrayCollection contains a collection of stocks. Now I
 want to filter my collection to select just one specific stock, so I
 added a filterFunction, which filters the stockDetailCollection to
 show only the specific stock by using the SYMBOL:
 
 private function stockDetailCollectionFilter(item:Object):Boolean {
   return item.SYMBOL == stockDetailSymbol;
 }
 
 In this function stockDetailSymbol is a bindable that gets set in a
 pulldown or whatever. After applying the filter function, I call
 stockDetailCollection.refresh() to filter.
 
 The problem I have is that now I have 1 item in the ArrayCollection.
 From this item I want to use the RATES elements to create a new
 collection that I can use as a datasource for a line-chart. If I try
 something like: 
 
 stockDetailCollection.filterFunction=stockDetailCollectionFilter;
 stockDetailCollection.refresh();
 stockData = ArrayCollection(stockDetailCollection.getItemAt(0).RATES);
 
 It fails with the message:
 
 TypeError: Error #1034: Type Coercion failed: cannot convert
 mx.utils::[EMAIL PROTECTED] to mx.collections.ArrayCollection.
 
 I hope it's clear what I'm trying to achieve. Can someone point me in
 the right direction? This is my first Flex application, and I'm
 struggling a bit ;-)
 
 TIA,
 Bastiaan





[flexcoders] Flex and .NET

2005-04-19 Thread nboulet


Hi everyone,
Nice to meet you all. First post on this mailing list and I'm glad
that there's a mailing list about this fantastic new technology which
is Flex. I read somewhere that there will be a .NET version of
Macromedia Flex. Is there anyone who got information about this?

Thank you very much,
Nicolas B.Lavoie





 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/