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

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

2007-01-12 Thread Dimitrios Gianninas
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. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Anderson Sent: Friday, January 12, 2007

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