RE: VSCode snippet, getter/setter. was (RE: Binding - dispatch event change)

2022-04-26 Thread Maria Jose Esteve
Well spotted Kessler, few excuses can be made now. ;P Thx Hiedra -Mensaje original- De: Kessler CTR Mark J Enviado el: martes, 26 de abril de 2022 17:57 Para: users@royale.apache.org Asunto: VSCode snippet, getter/setter. was (RE: Binding - dispatch event change) All, Here

VSCode snippet, getter/setter. was (RE: Binding - dispatch event change)

2022-04-26 Thread Kessler CTR Mark J
"return;", "}", "", "$3 = value;", "", "dispatchEvent(new Event(\"$1Changed\"));", "}" ], "description&quo

RE: Binding - dispatch event change

2022-04-25 Thread Maria Jose Esteve
strange to me...) Hiedra De: Alex Harui Enviado el: jueves, 14 de abril de 2022 19:23 Para: users@royale.apache.org Asunto: Re: Binding - dispatch event change The short answer is if you have the time to write the code to use [Bindable(”fooChange”)] the result will be a bit more efficient

Re: Binding - dispatch event change

2022-04-14 Thread Alex Harui
To: "users@royale.apache.org" Subject: RE: Binding - dispatch event change I will look into it, thanks Yishay Hiedra De: Yishay Weiss Enviado el: martes, 12 de abril de 2022 12:28 Para: users@royale.apache.org Asunto: RE: Binding - dispatch event change You might find answers here [1]

RE: Binding - dispatch event change

2022-04-14 Thread Maria Jose Esteve
I will look into it, thanks Yishay Hiedra De: Yishay Weiss Enviado el: martes, 12 de abril de 2022 12:28 Para: users@royale.apache.org Asunto: RE: Binding - dispatch event change You might find answers here [1] [1] Using Bindable Metadata Events | Tournas Dimitrios (wordpress.com)<ht

RE: Binding - dispatch event change

2022-04-12 Thread Yishay Weiss
PM To: users@royale.apache.org<mailto:users@royale.apache.org> Subject: Binding - dispatch event change Hello, I want to ask you a general question about the binding of as3 properties. In the SDK we can observe different implementations: [Bindable] … public function set foo(value:Boolean):void{

Binding - dispatch event change

2022-04-12 Thread Maria Jose Esteve
Hello, I want to ask you a general question about the binding of as3 properties. In the SDK we can observe different implementations: [Bindable] ... public function set foo(value:Boolean):void{ _foo = value; } //- [Bindable("fooChange")] ... public