how do I get a handle to a custom component in Flex? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T02:46:19Zhttp://stackoverflow.com/feeds/question/134034http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/134034/how-do-i-get-a-handle-to-a-custom-component-in-flex0how do I get a handle to a custom component in Flex?mmattax2008-09-25T15:33:38Z2008-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>
<?xml version="1.0" encoding="utf-8"?>
<mx:Form xmlns:mx="http://www.adobe.com/2006/mxml" defaultButton="{btnLogin}">
<mx:Metadata>
[Event(name="login",tpye="events.LoginEvent")]
</mx:Metadata>
<mx:Script>
import events.LoginEvent;
private function _loginEventTrigger():void {
var t:LoginEvent = new LoginEvent(
LoginEvent.LOGIN,
txtUsername.text,
txtPassword.text);
dispatchEvent(t);
}
</mx:Script>
<mx:FormItem label="username:">
<mx:TextInput id="txtUsername" color="black" />
</mx:FormItem>
<mx:FormItem label="password:">
<mx:TextInput id="txtPassword" displayAsPassword="true" />
</mx:FormItem>
<mx:FormItem>
<mx:Button id="btnLogin"
label="login"
cornerRadius="0"
click="_loginEventTrigger()" />
</mx:FormItem>
</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>
<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#1341661Answer by mmattax for how do I get a handle to a custom component in Flex?mmattax2008-09-25T15:54:22Z2008-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#1348020Answer by JustFoo for how do I get a handle to a custom component in Flex?JustFoo2008-09-25T17:47:03Z2008-09-25T17:47:03Z<p>You can also do something like this I believe:</p>
<pre><code><custom:login_form id='cLogin' login='_handler' />
</code></pre>
http://stackoverflow.com/questions/134034/how-do-i-get-a-handle-to-a-custom-component-in-flex/237949#2379490Answer by widged for how do I get a handle to a custom component in Flex?widged2008-10-26T12:22:54Z2008-10-26T12:22:54Z<blockquote>
<p>You can also do something like this I
believe:</p>
<pre><code><custom:login_form id='cLogin' login='_handler' />
</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><mx:Metadata>
[Event(name="login", type="events.LoginEvent")]
</mx:Metadata>
</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>