PDA

View Full Version : confused??¿¡


Tekken
04-15-2003, 12:33 AM
waaazzaaap?? ppl?? :D
firts of all. im a newbie with flash.. and still.. im trying to make my site on flash (the entire thing) but i have no idea to make an url to call an IEwindow with a specific size (how do i make the window in a specific size)
i tried doing it on javascript, but flash doesnt recognize javascripts. so im screwed.. can some1 help me??:confused:

____
04-15-2003, 01:13 AM
If you want to launch the sized window from an html page use this java script its fairly easy
<script>


function openpopup(){
var popurl="/dreamweaver/frameset.html"
winpops=window.open(popurl,"","width=844,height=550,")
}

</script>

<a href="javascript:openpopup()">Click here to open window</a>