PDA

View Full Version : open fixed size window from flash


da_marek
02-15-2003, 06:33 PM
hello! i wonder how to make a link in flash which will open window that is 350x400??? equivalent to dreamweaver's onclick="MM_openBrWindow('file:///D|/posao/100posto/DiMare/aboutc_hr.html','','width=350,height=400')"

farafiro
02-16-2003, 08:52 AM
http://www.actionscript.org/forums/showthread.php3?s=&threadid=17312&highlight=javascript

subquark
02-17-2003, 05:40 PM
function OpenPopup()
{
window.open('yourpagetopop.htm','pageName','toolba r=0,
location=0,directories=0,status=0,menubar=0,
scrollbars=0,resizable=0,width=350,height=400,left =200,top=150')

}

then call it from a button in flash . . .