[flexcoders] Unsubscribe

2010-04-04 Thread Andres Serral
Can someone tell me how can i unsubscribe from this email list?

I sent some mails to flexcoders-unsubscr...@yahoogroups.com but I keep
receiving mails

 

thanks



RE: [flexcoders] Re: Flex 3.3

2009-01-27 Thread Andres Serral
I´cant found the releases notes.
 

  _  

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of Matt Chotin
Sent: Tuesday, January 27, 2009 3:56 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: Flex 3.3



Correct

On 1/27/09 9:44 AM, securenetfreedom nv1...@gmail.
mailto:nv1000%40gmail.com com wrote:

So, 3.3 will *not* apply to eclipse FB plugin?

Jeff

--- In flexcod...@yahoogro mailto:flexcoders%40yahoogroups.com ups.com
mailto:flexcoders%40yahoogroups.com , Matt Chotin mcho...@... wrote:

 It's all bug fixes, and not a huge number of them. We're not going
to have an associated Flex Builder release either, just the SDK
(though we'll get the charts updated).

 Matt


 On 1/26/09 1:18 PM, tntomek tnto...@... wrote:




 Looks like we finally have official 3.3 SDK builds out.

 http://opensource.
http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+3
adobe.com/wiki/display/flexsdk/Download+Flex+3

 This seems to have been a relabeling as changes between last 3.2 build
 and 3.3 build are very minor.

 Does anyone know what features or changes 3.3 will bring us?




 


[flexcoders] check compiler configurations in runtime

2008-11-19 Thread Andres Serral
Hello.
I´ve a simple question.
 
Can I access to compiler configurations in runtime?
Basically I need check if the app is in debugmode
 
Thanks


RE: [flexcoders] Listen itemClick Event on MenuBar

2008-09-26 Thread Andres Serral
Tracy.
Maybe I don't explain very well.
 
Look in the next menu structure... I want to capture the event click on
SubMenu 1.1 
 
Menu
-SubMenu 1
- SubMenu 1.1
- SubMenu 1.1.1
- SubMenu 1.1.2
- SubMenu 1.2
- SubMenu 1.2.1
- SubMenu 1.2.2
-SubMenu 2
- SubMenu 1.1
- SubMenu 1.2
 
I looked at the SDK source that the itemClick event only is dispatched when
the node hasn't childrens
 
here is an example
 
?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute
 creationComplete=initCollections(); 
 
 
 mx:Script
  ![CDATA[
   import mx.collections.XMLListCollection;
   import mx.events.MenuEvent;
   
  private function menuItemClickHandler(event:MenuEvent):void  {

  trace([EMAIL PROTECTED]);
  }

  private function initCollections():void {
   menuBarCollection = new XMLListCollection(menubarXML);
  }
 
  [Bindable]
  public var menuBarCollection:XMLListCollection;
 
  private var menubarXML:XMLList =
  
  menuitem label=Sub Menu 1
  menuitem label=Sub Menu 1.1
menuitem label=MenuItem 1.1.1/
menuitem label=MenuItem 1.1.2/
   /menuitem
   menuitem label=Sub Menu 1.2 /
  /menuitem
  menuitem label=Sub Menu 2
  menuitem label=Sub Menu 2.1 /
  menuitem label=Sub Menu 2.2 / 
  /menuitem
  /;

  ]]
 /mx:Script
 
 
 mx:MenuBar 
  labelField=@label
  dataProvider={menuBarCollection}
  itemClick=menuItemClickHandler(event)
  /
  
/mx:Application

 
Andres

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tracy Spratt
Sent: Thursday, September 25, 2008 9:34 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Listen itemClick Event on MenuBar




This is an aggravating aspect of Menu.

You have to listen for both itemClick and click.  

Tracy

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Andres Serral
Sent: Thursday, September 25, 2008 3:54 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Listen itemClick Event on MenuBar

Hello people

I have a problem... someone maybe can help me

The MenuBar control doesn't dispatch the itemClick event on items that has
childrens.

Anybody knows how can I capture the click event on any item (with childrens
or  without them)?

Thanks

Andres

 


[flexcoders] Listen itemClick Event on MenuBar

2008-09-25 Thread Andres Serral
Hello people
I have a problem... someone maybe can help me
The MenuBar control doesn't dispatch the itemClick event on items that has
childrens.
Anybody knows how can I capture the click event on any item (with childrens
or  without them)?
 
Thanks
 
Andres


[flexcoders] Listen itemClick on MenuBar

2008-09-24 Thread Andres Serral
Hello.
The MenuBar control doesn't dispatch the itemClick event on items that has
childrens.
Anybody knows how can I capture the click event on any item (with childrens
or not)?
 
Thanks
 
Andres


[flexcoders] SimpleXmlEncoder SimpleXmlDecoder problem

2008-07-18 Thread Andres Serral
Hello.
I want to convert my object MyVO into a XML. for this I use the
SimpleXmlEncoder class
then I want to decode this xml into a new object MyVO class using the
SimpleXmlDecoder class - Here fails
I think that it isn´t work because my MyVo contains a Array. 
 
public class MyVO {
public var id : int;
public var name : String;
public var childs : Array;
}
 
 
here is a code examplo:
 
// first create MyVO for example
var myObj : MyVO = new MyVO();
myObj.id = 1;
myObj.name = pp;
myObj.childs = new Array();
myObj.childs.push(new MyVO());
myObj.childs.push(new MyVO());
 
// now Encode MyVO into XML
var qName:QName = new QName(root);
var xmlDocument:XMLDocument = new XMLDocument();
var simpleXMLEncoder:SimpleXMLEncoder = new SimpleXMLEncoder(xmlDocument);
var xmlNode:XMLNode = simpleXMLEncoder.encodeValue(myObj, qName,
xmlDocument);
 
// now decode the XML
var decoder:SimpleXMLDecoder = new SimpleXMLDecoder();
var myObj : Object = decoder.decodeXML(XMLNode(xmlDocument.firstChild));
 
// finally cast the object to MyVO
var newVO : MyVO = obj as MyVO; // this dont work
 
// at this point newVO is null
// take attention on myObj var see the childs property it must to be an
Array and is a Object type
 
 
Thanks
 
Andres