Hi Jesse,

Try passing a reference to your application to the popup window, as an
initialization parameter. This should hopefully eliminate the warning.

//code in your popup window
<mx:Script>
  public var app;
</mx:Script>

//your popup window method
import mx.managers.PopIpManager;

function showPopUp():Void
{
   var popup = PopUpManager.createPopUp( _root, myWindow, true,
{app:mx.core.Application.application}, true );
   popup.centerPopUp( MovieClip( mx.core.Application.application ) );
}

nb: I haven't tried this to see if it removes the warning, it is
merely a suggestion ;)

cheers,

Andrew
www.flexdaddy.info



--- In flexcoders@yahoogroups.com, "JesterXL" <[EMAIL PROTECTED]> wrote:
> I'm binding some CheckBox's to a Model in my Application.  The
CheckBox' 
> reside in a PopUp.  They reference the original model like so:
> 
> mx.core.Application.application.myModel.someProperty.
> 
> It works great, but I'm getting warnings saying that changes to all
of my 
> "unknown" properties won't trigger a change.  Is this the compiler just 
> getting confused?
> 
> --JesterXL





--
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