--492-494 in FlowplayerBase.as
You have there public method addToPanel for the displayObjects adding. Can you add something to remove them from panel such as:
public function removeFromPanel(displayObject:DisplayObject):void {
_panel.removeChild(displayObject);
}
Ps. Ofcourse, I should write flash plugin and than add it to the screen. But, for example, I have task to make floating windows such as show embeded code, some info, links to copy,past(and it`s just start of the great ideas to make my life more complex :-) ) and then hide it and ofcourse it should be one flash file with the smallest amount of embeded code to place it on the other sites and javascript is prohibited. What can I do? addToPanel,RemoveFromPanel - will be the answer for my problem.
You have there public method addToPanel for the displayObjects adding. Can you add something to remove them from panel such as:
public function removeFromPanel(displayObject:DisplayObject):void {
_panel.removeChild(displayObject);
}
Ps. Ofcourse, I should write flash plugin and than add it to the screen. But, for example, I have task to make floating windows such as show embeded code, some info, links to copy,past(and it`s just start of the great ideas to make my life more complex :-) ) and then hide it and ofcourse it should be one flash file with the smallest amount of embeded code to place it on the other sites and javascript is prohibited. What can I do? addToPanel,RemoveFromPanel - will be the answer for my problem.