I would think setting focusEnabled to false would prevent me from
clicking on a component and it receiving focus.. yet, the focusIn
still seems to fire. Has anyone encountered this?

I've tried all 3 examples below, and still when I click on the
TextInput, the alert is displayed. Am I misinterpreting the Flex
Language Reference?

<mx:TextInput id="testInput" focusEnabled="false" focusIn="{
Alert.show('I got focus... ?'); }"/>

<mx:TextInput id="testInput" mouseFocusEnabled="false" focusIn="{
Alert.show('I got focus... ?'); }"/>

<mx:TextInput id="testInput" mouseFocusEnabled="false"
focusEnabled="false" focusIn="{ Alert.show('I got focus... ?'); }"/>






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to