I have a really weird situation here, basically i have:

--index.mxml---

<mx:Model id="testModel">
<firstName>Scott</firstName>
</mx:Model>


<inco:dspTravelProfile employeeModel="{this.testModel}" />

-- dspTravelProfile.mxml--
<mx:Script>
<![CDATA]
public var employeeModel;
]]>
</mx:Script>

<mx:FormItem label="First Name:">
<mx:Label text="{employeeModel.firstName}"/>
</mx:FormItem>

When I first save/change the physical mxml and then run, i get this
message in the compiler:

"Changes to unknown property, firstName will not be detected."

-THEN-

I hit refresh again, and it goes away? Is this just a polite
exception?  and how do you pass down a byReference as a variable into
other components? (if its possible)

-- 
Regards,
Scott Barnes
http://www.mossyblog.com
http://www.flexcoder.com (Coming Soon)


 
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