Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

pop-up windows in flash 3

Status
Not open for further replies.

funkymunc

Programmer
Aug 18, 1999
10
CA
Using flash 3 for web design for about 4 weeks, I am having dificulties with opening a small popup windows within the browser, Options on the get url action seems limited is there any way to size a new window such as adding java script etc?<br>
<br>
One more question regarding anchoring movies within a movie? Is it posible? Mine keep on appearing in top left corner no matter the dimensions of the movie.<br>
<br>
If you can help thanks.
 
Flash provides an action called FSCommand that allows you to communicate with the browser. You can pass javascript or comunicate with javascript in the header of your HTML page. I'm not sure I understand the second question are you refering to a "movie clip" or an external movie loaded with the LoadMovie command
 
chose a get url action,<br>
write JavaScript:windowname()<br>
and<br>
write in your html tag<br>
&lt;!---<br>
function windowname()<br>
{<br>
window.open &quot;your.html&quot;,&quot;name&quot;,&quot;toolbar=no,location=no,directories=no,status=no,menubar=no, scrollbars=no,resizable=no,top=50,left=200,width=198,height=317&quot;);<br>
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top