hi, Fruitbeard,
I managed to find a way to destroy the component object publishing in flash player 8. Like so (if you're interested):
but I find myself with a final problem before beeing able to finish my page. When the component is in the library, this scripted menu I have based on (http://flashexplained.com/menus-inte...rop-down-menu/) freezes when rolling the mouse out. I was wondering if you might have any idea why this could happen... I don't know much about developing, never really used debugging so I wouldn't know what to look for, but it shows a focusmanager variable or object that made me think whether I should keep trying to read about it or try building my own scroll pane with a mask or somehow. Do you have any idea about if changing the focus could make any difference?Code:this.createEmptyMovieClip("scrollPaneContainer", this.getNextHighestDepth()); this.scrollPaneContainer.createClassObject(mx.containers.ScrollPane, "cspScrollPane", 20); scrollPaneContainer.cspScrollPane.setSize(680, 560); scrollPaneContainer.cspScrollPane.contentPath = "image"; button_btn.onRelease = function():Void { scrollPaneContainer.destroyObject("cspScrollPane"); }
thanks




Reply With Quote