RE: [flexcoders] Need primer on Events, from the List Gurus -

2007-01-17 Thread Mike Anderson
AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Need primer on Events, from the List Gurus - Ok here is how I would do it. Say the ArrayCollection held notes as an example. // in command ModelLocator.getInstance().notes.addItem( mynewnote ); // view is binded bla:MYView notes

RE: [flexcoders] Need primer on Events, from the List Gurus -

2007-01-14 Thread Dimitrios Gianninas
:[EMAIL PROTECTED] On Behalf Of Dimitrios Gianninas Sent: Friday, January 12, 2007 3:01 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Need primer on Events, from the List Gurus - what other thing do u want to do? give an example and we can take it from there. Dimitrios Gianninas RIA

Re: [flexcoders] Need primer on Events, from the List Gurus -

2007-01-13 Thread Ralf Bokelberg
@yahoogroups.com flexcoders%40yahoogroups.com [mailto: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com] On Behalf Of Brian Sent: Friday, January 12, 2007 11:10 PM To: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com Subject: Re: [flexcoders] Need primer on Events, from the List Gurus

[flexcoders] Need primer on Events, from the List Gurus -

2007-01-12 Thread Mike Anderson
Hello All, This thread, directly relates to all the other ones I've posted recently - as I think one of my root problems, is truly understanding on how Events get propagated within an application. They say the Event model is so great, due to all the components being so loosely coupled. So

RE: [flexcoders] Need primer on Events, from the List Gurus -

2007-01-12 Thread Dimitrios Gianninas
:53 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Need primer on Events, from the List Gurus - Hello All, This thread, directly relates to all the other ones I've posted recently - as I think one of my root problems, is truly understanding on how Events get propagated within

RE: [flexcoders] Need primer on Events, from the List Gurus -

2007-01-12 Thread Mike Anderson
Sent: Friday, January 12, 2007 3:01 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Need primer on Events, from the List Gurus - what other thing do u want to do? give an example and we can take it from there. Dimitrios Gianninas RIA Developer Optimal Payments Inc

Re: [flexcoders] Need primer on Events, from the List Gurus -

2007-01-12 Thread Brian
Maybe the following will help. Data Binding is really just a short hand version of an event broadcast, and listener and function to be executed. Take the example: [Bindable] private var lastname:String; mx:Text text={lastname}/ mx:Button click=lastname='My last Name'/ -- When the button is

RE: [flexcoders] Need primer on Events, from the List Gurus -

2007-01-12 Thread Mike Anderson
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Need primer on Events, from the List Gurus - Maybe the following will help. Data Binding is really just a short hand version of an event broadcast, and listener and function to be executed. Take the example: [Bindable] private var