Discuss How to make a popup window in flash in the Flash Help forum on Dev Shed. How to make a popup window in flash Flash Help forum discussing all products originally created by Macromedia including DreamWeaver, Contribute, Flash, Fireworks, Freehand, Director, Authorware and HomeSite. Adobe bought Macromedia in 2005.
Receive the tools necessary to be the rock star of your field. Our 12-month program teaches you the evolving world of multi-channel marketing as well as the complex issues and opportunities found in the industry.
ASP Free and Iron Speed Designer are giving away $5,500+ in FREE licenses. Iron Speed's RAD CASE toolset can save up to 80% of your coding time. One free license per week, one perpetual license per month! Download and Activate to enter!
Web development can be a daunting task, even for specialists. There is a lot of information to absorb and a lot of technologies to learn in order to manage a superior website. When trying to learn the ropes, developers need a reliable source to introduce new ideas that can be easily implemented. When working on large projects, even web veterans may run into a technology or an aspect of a technology that they are unfamiliar with.
Posts: 23
Time spent in forums: < 1 sec
Reputation Power: 0
How to make a popup window in flash
Hello,
Could some one give some hint about adding an action to a button then popup a new window in flash. The new window is an asp file. Many thanks in advance!
Posts: 23
Time spent in forums: < 1 sec
Reputation Power: 0
Thanks for your reply
Hello,
Thanks very much for your suggestion, and it works for the first time when I add a link to it. But then after I changed the link to some other page, it isn't refreshed in IE when I open it there. Do u have any experience about this?
Another thing is I have pictures in the .asp file, how to pass that back the flash file when I make a choice.
Posts: 23
Time spent in forums: < 1 sec
Reputation Power: 0
Thanks for your reply
Thanks for ur reply and now it works well. Then I wonder do you have any idea about how to post the variables between asp file and flash file. Bucause I have code in asp file like choosing a picture from a form and I want to pass that image back to the flash page. How could the code be? Hope you have good suggestion! Thank you again very much!
Posts: 2
Time spent in forums: < 1 sec
Reputation Power: 0
popup problem - ie6 domain cloaked
I am able to have a popup window created from flash using both techniques: javascript within flash and javascripted withing the page called by flash.
The problem I'm having is that i have the domain cloaked so that the page is actually masked within frames.
When the popups are activated they work fine in ie5 but not at all in ie6. Would anyone know the solution to this problem?
(most fustrating)
Posts: 596
Time spent in forums: 2 Days 3 h 56 m 23 sec
Reputation Power: 21
Quote:
Originally Posted by SBUH
Thanks for ur reply and now it works well. Then I wonder do you have any idea about how to post the variables between asp file and flash file. Bucause I have code in asp file like choosing a picture from a form and I want to pass that image back to the flash page. How could the code be? Hope you have good suggestion! Thank you again very much!
If you first of all pass the variables to the page with the movie embedded in it you can then get them into flash. So if you change your form to look like
function sendForm() {
var f = document.myForm;
var url = "action.php?color="+f.color.value;
window.open(url,'','width=200,height=200');
return false;
}
then your page action.php which is opened in the popup has the variable color in the querystring. If you have php/coldfusion whatever it's then easy to pass that variable onto the movie by writing it onto the querystring of the movie url in the OBJECT and EMBED tags. (If not it's more of a pain)
Posts: 596
Time spent in forums: 2 Days 3 h 56 m 23 sec
Reputation Power: 21
Quote:
Originally Posted by devmond33
I am able to have a popup window created from flash using both techniques: javascript within flash and javascripted withing the page called by flash.
The problem I'm having is that i have the domain cloaked so that the page is actually masked within frames.
When the popups are activated they work fine in ie5 but not at all in ie6. Would anyone know the solution to this problem?
(most fustrating)
thanks
dev
if your frames/popup are on different domains then this won't work, it's a security issue.