|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
I am able to have a popup window created from flash using both techniques: javascript within flash and javascript within the page called by flash. (i have tried both of these for the problem below)
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? maybe the solution would be to call up an external javascript file (.js) using an absolute path, if this is possible in actionscript??? this is my current popup actionscript that works in ie5: getURL("javascript:window.open('http://www.domainname.com/page.html','','width=200,height=200');void(0);"); dev |
|
#2
|
|||
|
|||
|
try these
Code:
getURL("javascript: void(window.open('http://www.domainname.com/page.html','my_popwin','width=200,height=200'));");
Code:
getURL("javascript: void(top.open('http://www.domainname.com/page.html','my_popwin','width=200,height=200'));");
|
![]() |
| Viewing: Dev Shed Forums > Web Design > Flash Help > flash popup window problem - ie6 domain cloaked |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|