View Full Version : Flash animations on web
Chuka
12-18-2006, 01:47 PM
Can anyone advise how to make popup Flash windows while people will browse my site??
Will be very thankfull!!!!!!:cool:
mtran
12-18-2006, 11:53 PM
Don't know exactly what you meant. Popup window when someone clicks on a link or automatic popup when someone go to your page?
Whatever it is, I guess what you need is a javascript code that create the proper popup (tons of them on the net), and just embed your flash in that html file loaded in the popup.
BLiZZaRD
12-19-2006, 09:24 AM
this goes in your movie, on a button or what have you:
on (release) {
getURL("javascript:popup();");
}
and this goes in your head section on the published HTML page:
<SCRIPT LANGUAGE="JavaScript">
function popup() {
window.open('pagetopopup.html','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=100,height=100,left=200,top=200') ;
}
</script>
Just change your paramaters in the HTML part for what you want to happen in your pop up.
Powered by vBulletin® Version 4.2.2 Copyright © 2022 vBulletin Solutions, Inc. All rights reserved.