RE: [flexcoders] Handling initialized event with AS3 custom component

2007-02-15 Thread Gordon Smith
Sent: Wednesday, February 14, 2007 5:13 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Handling initialized event with AS3 custom component Also this should work too... package com.example.test { public class Test extends VBox { public override function initialize():void { super.init

Re: [flexcoders] Handling initialized event with AS3 custom component

2007-02-14 Thread David Chang
--- > *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] > *On Behalf Of *Ian Shafer > *Sent:* Wednesday, February 14, 2007 4:31 PM > *To:* flexcoders@yahoogroups.com > *Subject:* [flexcoders] Handling initialized event with AS3 custom

RE: [flexcoders] Handling initialized event with AS3 custom component

2007-02-14 Thread Gordon Smith
om [mailto:[EMAIL PROTECTED] On Behalf Of Ian Shafer Sent: Wednesday, February 14, 2007 4:31 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Handling initialized event with AS3 custom component Hello, How do I handle an "initialized" event using an AS3 custom component? In M

[flexcoders] Handling initialized event with AS3 custom component

2007-02-14 Thread Ian Shafer
Hello, How do I handle an "initialized" event using an AS3 custom component? In MXML it would be like this: My guess is that I can do something like this: package com.example.test { public class Test extends VBox { private function initialize():void { // Do something } }