how do I get a handle to a custom component in Flex? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T02:46:19Z http://stackoverflow.com/feeds/question/134034 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/134034/how-do-i-get-a-handle-to-a-custom-component-in-flex 0 how do I get a handle to a custom component in Flex? mmattax 2008-09-25T15:33:38Z 2008-10-26T12:22:54Z <p>I have a custom login component in Flex that is a simple form that dispatches a custom LoginEvent when a user click the login button:</p> <pre><code> &lt;?xml version="1.0" encoding="utf-8"?> &lt;mx:Form xmlns:mx="http://www.adobe.com/2006/mxml" defaultButton="{btnLogin}"> &lt;mx:Metadata> [Event(name="login",tpye="events.LoginEvent")] &lt;/mx:Metadata> &lt;mx:Script> import events.LoginEvent; private function _loginEventTrigger():void { var t:LoginEvent = new LoginEvent( LoginEvent.LOGIN, txtUsername.text, txtPassword.text); dispatchEvent(t); } &lt;/mx:Script> &lt;mx:FormItem label="username:"> &lt;mx:TextInput id="txtUsername" color="black" /> &lt;/mx:FormItem> &lt;mx:FormItem label="password:"> &lt;mx:TextInput id="txtPassword" displayAsPassword="true" /> &lt;/mx:FormItem> &lt;mx:FormItem> &lt;mx:Button id="btnLogin" label="login" cornerRadius="0" click="_loginEventTrigger()" /> &lt;/mx:FormItem> &lt;/mx:Form> </code></pre> I then have a main.mxml file that contains the flex application, I add my component to the application without any problem: <pre><code> &lt;custom:login_form id="cLogin" /> </code> </pre> <p>I then try to wire up my event in actionscript:</p> <pre> <code> import events.LoginEvent; cLogin.addEventListener(LoginEvent.LOGIN,_handler); private function _handler(event:LoginEvent):void { mx.controls.Alert.show("logging in..."); } </code> </pre> <p>Everything looks good to me, but when I compile I get an "error of undefined property cLogin...clearly I have my control with the id "cLogin" but I can't seem to get a"handle to it"...what am I doing wrong?</p> <p>Thanks.</p> http://stackoverflow.com/questions/134034/how-do-i-get-a-handle-to-a-custom-component-in-flex/134166#134166 1 Answer by mmattax for how do I get a handle to a custom component in Flex? mmattax 2008-09-25T15:54:22Z 2008-09-25T15:54:22Z <p>ah! I figured it out...it was a big oversight on mine...it's just one of those days...</p> <p>I couldn't get the handle on my component because it was not yet created...I fixed this by simply waiting for the component's creationComplete event to fire and then add the event listener.</p> http://stackoverflow.com/questions/134034/how-do-i-get-a-handle-to-a-custom-component-in-flex/134802#134802 0 Answer by JustFoo for how do I get a handle to a custom component in Flex? JustFoo 2008-09-25T17:47:03Z 2008-09-25T17:47:03Z <p>You can also do something like this I believe:</p> <pre><code>&lt;custom:login_form id='cLogin' login='_handler' /&gt; </code></pre> http://stackoverflow.com/questions/134034/how-do-i-get-a-handle-to-a-custom-component-in-flex/237949#237949 0 Answer by widged for how do I get a handle to a custom component in Flex? widged 2008-10-26T12:22:54Z 2008-10-26T12:22:54Z <blockquote> <p>You can also do something like this I believe:</p> <pre><code>&lt;custom:login_form id='cLogin' login='_handler' /&gt; </code></pre> </blockquote> <p>Minor clarification as there seem to be some confusion in the original code. </p> <p>Indeed and the reason for this is that a metadata tag has been used to declare the event that is to be made available that way.</p> <pre><code>&lt;mx:Metadata&gt; [Event(name="login", type="events.LoginEvent")] &lt;/mx:Metadata&gt; </code></pre> <p>However, there was no need to add the event metadata when instead of a component "event" property (<code>login='_handler'</code>) an event listener was used: </p> <pre><code>cLogin.addEventListener(LoginEvent.LOGIN,_handler); </code></pre> <ul> <li>addEventListener -> no metadata tag needed</li> <li>event property in the component tag -> metadata tag required</li> </ul>