This is a "fact-of-life" of how security in loaded SWFs works. Assets in subordinate SWFs are not available to the top-level SWF, but the cursorManager only can work in the top-level SWF.
The easy workaround is to put a DividedBox in the top-level movie and hide it. The more sophisticated workaround is to embed the assets you need in the top-level SWF. --- In [email protected], "Eric Guesdon" <[EMAIL PROTECTED]> wrote: > > Hi to All, > > It seems to be a bug > > In your first .mxml file copy and paste this peace of code > // ********************************************************************* \\ > > <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml"> > <mx:Loader source="MainDivider.mxml.swf" autoLoad="true" > width="100%" height="100%"/> > </mx:Application> > > > // ******************************************************************* \\ > > In a second one copy and paste this code > > // ********************************************************************* \\ > > <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml"> > <mx:Script> > <![CDATA[ > > public function getPreferredWidth () { > if(_parent){ > return _parent.layoutWidth ; > } > return _preferredWidth ; > } > > public function getPreferredHeight () { > if(_parent){ > return _parent.layoutHeight ; > } > return _preferredHeight ; > } > > ]]> > </mx:Script> > <mx:DividedBox direction="horizontal" width="100%" height="100%"> > <mx:Panel width="25%" height="100%"/> > <mx:DividedBox direction="vertical" width="100%" > height="100%"> > <mx:Panel width="100%" height="100%"/> > <mx:Panel width="100%" height="100%" /> > </mx:DividedBox> > </mx:DividedBox> > </mx:Application> > > // ********************************************************************* \\ > > At last compile and run first file.... > > > Look your cursor when you try to resize Divider, cursor is simply invisible. > Are there any reason for that behaviours? > Are there any known solutions? > > Thanks in advance > > Best regards > > Eric > > > > This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message. -- 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/

