i have to show the client.swf inside a flash window component... so i can drag it, and see the content of my aplication under the chat on top.
this is on my flash aplication:
Code:
import mx.managers.PopUpManager;
import mx.containers.Window;
// Create window.
var my_win:MovieClip = PopUpManager.createPopUp(this, Window, true, {closeButton:true,contentPath:"http://mydomain:8988/client.swf"});
my_win.title = "Live Help";
my_win.setSize(400,200);
function click(evt){
evt.target.deletePopUp();
}
my_win.addEventListener("click", this);