A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: No resize pop-up window

  1. #1
    Junior Member
    Join Date
    Aug 2000
    Posts
    9
    Hi,
    My problem is that I have pop-up window that I won't to be
    resizeable if I put resize=no

    onLoad="MM_openBrWindow('flash.htm','pepe','toolba r=no,scrollbars=no,resizable=no,width=200,height=2 00')">

    Netscape is Ok but Iexplorer doesn't work so do you have clue what should I do

  2. #2
    Senior Member
    Join Date
    Aug 2000
    Posts
    1,317
    here you are-

    in da page
    function newWindow()
    {

    var newWin = window.open ("da_window.htm","newWin","height=200px,width=300p x");

    }

    in da .fla file-
    GetUrl("javascript:newWindow()")

  3. #3
    Senior Member
    Join Date
    Aug 2000
    Posts
    1,317

    oh yeah

    if you want to send more than one url from more than one window..

    function newWindow(loc,name,params){
    var newWin = window.open(loc,name,params);
    }

    and in the file
    Get URL ("javascript: newWindow('your_page.html','newWin', 'height=200,width=200')", vars=POST)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center