RE: [flexcoders] Changing defaultButton programatically

2008-02-09 Thread Dealy, Brian
sheriff: my answer overlooked the obvious simple answer you mentioned below: the defaultbutton is available for the application control without having to reference an id as would be needed in other containers. it's still early here in California! regards. Brian From: [EMAIL PR

RE: [flexcoders] Re: Datechooser

2008-02-04 Thread Dealy, Brian
http://www.holaflex.com/?p=46 tell us that the two buttons are declared internally as mx:internal which prevents us from accessing them directly but the site (in spanish) gives this example of a subclass that implements the overridden updateDisplayList method to set those buttons invisible.

RE: [flexcoders] Re: RSS feed update -with URL this time

2008-02-04 Thread Dealy, Brian
oh forgot the url http://www.cflex.net/showFileDetails.cfm?ObjectID=560 From: Dealy, Brian Sent: Monday, February 04, 2008 7:21 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: RSS feed update Hi; here is an example of implementing a poll in a flex app which I found

RE: [flexcoders] Re: RSS feed update

2008-02-04 Thread Dealy, Brian
Hi; here is an example of implementing a poll in a flex app which I found searching around the net. I also will be implementing something like this soon so I thought I would give look. I hope this helps. regards. Brian From: [EMAIL PROTECTED] hoo.com [mailto:[EMAIL PROTECTED] roups.y

RE: [flexcoders] Re: Object is Null? How can it be if it's a component in main.mxml. No access

2008-02-03 Thread Dealy, Brian
Viewstack's children index is zero based, so you need to start at zero and go to two > if(indexHit == 0){ > Application.application.com1.getData(); > }else if(indexHit==1){ > Application.application.com2.getData(); > }else if(indexHit==2){ > //THIS FAILS > Application.application.com3.getData()

RE: [flexcoders] Imports being lost

2008-01-13 Thread Dealy, Brian
Patrick this may be obvious to most, but sometimes I don't realize that flexbuilder collapses the imports and represents that by putting a plus next to the first one indicating it can be expanded by clicking on plus sign next to the first import... sometimes the little things can elude us.