Pop Up window in flash

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default Pop Up window in flash

    I am trying to create a pop up window in the opens from inside the flash
    document.

    getURL
    ("javascript:NewWindow=window.open('http://brianbehrens.net','brian','width=758,
    height=420,left=0,top=0,
    toolbar=No,location=No,scrollbars=No,status=No,res izable=No,fullscreen=No');
    NewWindow.focus(); void(0);");

    this is what I currently am using. It works in my safari browser, but not
    internet explorer.
    Can anyone help. or does anyone know a better way to do this?

    - Brian


    Brian@winmediainc.com Guest

  2. Similar Questions and Discussions

    1. minimize flash window
      Does any one know how to minimize a flash window ( which hides the window like the windows operating system minimize window button) -Thanks Mike
    2. Flash Preview Window - Help
      I have a movie that contains a streaming audio file. I have a preloader movie in frame 1, the audio movie instance on frame 2. I do not want to...
    3. open new window in flash?
      i have a button that i want to open a new window of a .jpg, how can i do that in Flash? Here's the code i tried but didn't work ...
    4. Help with pop up window in flash mx
      Hello I'm having this problem with a flash pop up window that I created for my new website. I'm building the main chunk of the website in...
    5. flash - new window
      Hi I tried to make some very successfull popups from swf files but there was always something wronf, dependin of your browser. So i found another...
  3. #2

    Default Re: Pop Up window in flash

    Create a rectangle with the height and width you need, and delete the fill.
    Convert it to a movieclip, and then put it on stage where you want the loaded,
    give it an instance name, like URL_holder.
    Use this:
    getURL("http://whatever.net",URL_holder);

    pazzoboy Guest

  4. #3

    Default Re: Pop Up window in flash

    Brian,

    The code you pasted into your initial question works just fine for me.
    I noticed a few linebreaks in the string ... had to fix (remove) those, but
    after that, it worked.


    David
    stiller( at ) quip ( dot ) net


    David Stiller Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139