lm7e wrote:
I have seen is that a subsystem app I have written contains a DividedBox and when it is loaded, the cursor does not show the proper "move" indicator (->| |<-) that it should when hovering over the divider; the cursor disappears. If I open the subsystem app separately, the behavior is correct. Any ideas??? Workarounds??? You
I think it's because it looks for the cursor asset in the main SWF. You could force the cursor to be included by having a HDividedBox in your main app.
<?xml version="1.0"?> <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml"> <mx:HDividedBox width="0" height="0" /> <!-- subapp contains HDividedBox whose resize handle is now showing --> <mx:Loader source="subapp.swf" /> </mx:Application>
You could also embed the asset directly using the "[Embed]" directive.
Manish

