[flexcoders] textinput blur event

2010-06-26 Thread advancedonsite
I've tried many different types of events to trigger a blur when the user leaves the text box it runs my event but nothing seems to work. Anyone done this before? private function init():void{ VIN.addEventListener(FlexEvent.VALUE_COMMIT, lookupvehicle); //FocusEvent.FOCUS_OUT

[flexcoders] Re: Tree Change Event *SOLVED*

2010-05-04 Thread advancedonsite
events/TreeEvent.html> class events, including Event.change andTreeEvent.itemOpen I was using this on creation complete RootTree.addEventListener(ListEvent.ITEM_CLICK, treeChange); and this works RootTree.dispatchEvent(new ListEvent(ListEvent.ITEM_CLICK)); --- In flexcoders@yahoogro

[flexcoders] Tree Change Event

2010-05-04 Thread advancedonsite
I'm trying to figure out where I can find how to dispatch the Tree Change Event? I'm more interested in why I can't find it by researching the AS 3.5 docs online but at any rate any help would be much appreciated var result:Boolean = RootTree.dispatchEvent(new TreeEvent( CHANGE?

[flexcoders] Re: I get these random errors when using tree and viewstack?

2010-04-14 Thread advancedonsite
Turned out to be a caching issue on my browser :( --- In flexcoders@yahoogroups.com, "advancedonsite" wrote: > > I'm pulling my hair out on this problem which seems to me to be a problem > with the main framework not my code. I have a tree and then viewstacks on the

[flexcoders] Re: I get these random errors when using tree and viewstack?

2010-04-12 Thread advancedonsite
I was to find the issue's I think so far no errors while testing I removed all trace statements on creationcomplete and added creationpolicy="all" to viewstack which didn't work the first time I tried. Hopefully I don't see them again though. --- In flexcoders@yahoogr

[flexcoders] I get these random errors when using tree and viewstack?

2010-04-12 Thread advancedonsite
I'm pulling my hair out on this problem which seems to me to be a problem with the main framework not my code. I have a tree and then viewstacks on the right side when a user clicks on a nav option in the tree the viewstack appears on the right. I keep getting a ReferenceError: Error #1065: Va

[flexcoders] Re: render tree click problem with viewstack

2010-04-09 Thread advancedonsite
weird. --- In flexcoders@yahoogroups.com, "advancedonsite" wrote: > > Let me give more details... Sometimes the viewstack shows sometimes it throws > the error even on the same viewstack? its like something is not rendered in > time or such? > > > > --- In flex

[flexcoders] Re: render tree click problem with viewstack

2010-04-08 Thread advancedonsite
Let me give more details... Sometimes the viewstack shows sometimes it throws the error even on the same viewstack? its like something is not rendered in time or such? --- In flexcoders@yahoogroups.com, "advancedonsite" wrote: > > I've been using this code to choose a vi

[flexcoders] render tree click problem with viewstack

2010-04-08 Thread advancedonsite
I've been using this code to choose a viewstack based on name of the canvas ID... and it works but as the tree grew a bit larger I've noticed that certain items throw an error of ReferenceError: Error #1065: Variable is not defined. getDefinitionByName()

[flexcoders] how to expand tree control from a button?

2010-04-06 Thread advancedonsite
My TEST button I want to expand and select on this XML Node I've tried to modify this example to handle passing from a button but got no errors just doesn't work? http://blog.flexexamples.com/2007/11/29/opening-nodes-in-a-flex-tree-control-using-the-expanditem-method/ http://www.adobe.com

[flexcoders] Re: XML list empty or remove items from provider?

2009-12-03 Thread advancedonsite
perfect ! --- In flexcoders@yahoogroups.com, "invertedspear" wrote: > > Easiest way is "myXMLListCollection = new XMLListCollection;" > > --- In flexcoders@yahoogroups.com, "advancedonsite" wrote: > > > > Something simple like a XML collec

[flexcoders] XML list empty or remove items from provider?

2009-12-03 Thread advancedonsite
Something simple like a XML collection list I thought I could empty it out but have been searching and not found a simple way to do it. So how does someone clear a XML collection list?

[flexcoders] swf z-index overlay cant click swf buttons

2009-08-29 Thread advancedonsite
I have a swf which has buttons and I'm loading it using but the swf buttons cant be clicked it's like theres an invisible layer over them? any ideas what might be causing this?

[flexcoders] Re: httpservice listener

2009-08-23 Thread advancedonsite
Original Message - > From: advancedonsite > To: flexcoders@yahoogroups.com > Sent: Sunday, August 23, 2009 10:02 AM > Subject: [flexcoders] httpservice listener > > > When using mxml httpservice > >fault="nutritionFaultHandler(event)" resultFormat=&

[flexcoders] httpservice listener

2009-08-22 Thread advancedonsite
When using mxml httpservice I call the init on app load private function init():void { hsNutrition.addEventListener(ResultEvent.RESULT, nutritionResultHandler); hsNutrition.send(); } private function nutritionResultHandl