How can I create a pop up page for chat panel?
I tried chat.html, create a chat.html and them put code in html code field. etc..
Thanks for advice
I tried chat.html, create a chat.html and them put code in html code field. etc..
Thanks for advice
Hi Ricardo, I bet this could be done with colorbox or lightbox. There's some javascript popups out there also. Have you tried anything yet?
I can't hear what I'm looking at.
It's so easy to overlook something your not looking for.
Here's my S-Drive site with
examples of what can be accomplished in VSD.
http://progrower.coffeecup.com/
Here's my CoffeeCup SCCP Shop with examples of what can be done.
http://progrower.coffeecup.com/shop/
It's so easy to overlook something your not looking for.
Here's my S-Drive site with
examples of what can be accomplished in VSD.
http://progrower.coffeecup.com/
Here's my CoffeeCup SCCP Shop with examples of what can be done.
http://progrower.coffeecup.com/shop/
See if this meets your needs.
http://progrower.coffeecup.com/livechat.html I can't hear what I'm looking at.
It's so easy to overlook something your not looking for.
Here's my S-Drive site with
examples of what can be accomplished in VSD.
http://progrower.coffeecup.com/
Here's my CoffeeCup SCCP Shop with examples of what can be done.
http://progrower.coffeecup.com/shop/
http://progrower.coffeecup.com/livechat.html I can't hear what I'm looking at.
It's so easy to overlook something your not looking for.
Here's my S-Drive site with
examples of what can be accomplished in VSD.
http://progrower.coffeecup.com/
Here's my CoffeeCup SCCP Shop with examples of what can be done.
http://progrower.coffeecup.com/shop/
This is the code that I added to the script to get a pop up window. It seems to be working okay. You can reset the parameters for where the window appears on your screen and the window size.
<a href="http://YOURSITE.com/CHAT.html" target="_blank" onclick="window.open('http://YOURSITE.com/CHAT.html','myWin','resizable=1,scrollbars=1,width=600,height=600,top=60,left=160');return false;"><img alt="LiveChat" src="http://www.YOURSITET.com/chat_button.jpg"></a> "If you always do what you always did, then you will always get what you always got."
<a href="http://YOURSITE.com/CHAT.html" target="_blank" onclick="window.open('http://YOURSITE.com/CHAT.html','myWin','resizable=1,scrollbars=1,width=600,height=600,top=60,left=160');return false;"><img alt="LiveChat" src="http://www.YOURSITET.com/chat_button.jpg"></a> "If you always do what you always did, then you will always get what you always got."
Is there a way to load the 'chat.swf' MC into specific x,y coordinates of an existing swf MC? This simple scripts works with everything but the 'chat.swf' movie.
on (release) {
createEmptyMovieClip("holder",2);
holder.loadMovie("chat.swf");
holder._x = 450;
holder._y = 255;
}
on (release) {
createEmptyMovieClip("holder",2);
holder.loadMovie("chat.swf");
holder._x = 450;
holder._y = 255;
}
For those who are interested, here's an AS3 script that does work...
var swfLoader:Loader = new Loader();
stage.addChild(swfLoader);
swfLoader.x=100;
swfLoader.y=100;
var bgURL:URLRequest = new URLRequest("yourmovie.swf");
swfLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadProdComplete);
swfLoader.load(bgURL);
function loadProdComplete(e:Event):void {
trace("file loaded");
}
var swfLoader:Loader = new Loader();
stage.addChild(swfLoader);
swfLoader.x=100;
swfLoader.y=100;
var bgURL:URLRequest = new URLRequest("yourmovie.swf");
swfLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadProdComplete);
swfLoader.load(bgURL);
function loadProdComplete(e:Event):void {
trace("file loaded");
}
Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.