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

  1. #1

    Default open browser window

    Hi, I'm sure this is very simple, but I'm pretty new to dreamweaver and HTML, so your help would be
    much appreciated. What I want is to specify the height and width and other functions like
    no scroll bars etc of my web page, much the same as you can with the open browser window
    function. As I am wanting to link from a graphic in flash to a quicktime movie played through
    dreamweaver.
    Any help or pointers to articles would be great.
    thanks
    max




    maxxi webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Open pop up browser window
      I'm not an experienced web site builder, so trying to find a way to open a new browser window without navigation bars, menus etc. Have used the Open...
    2. get a ink to open in a new browser window
      Is there a way to get publisher to open existing links to new windows?
    3. Open new web browser window
      Can anyone help with the following query. I want to open up a new window from a flash movie when i click on a text box link. The code is as...
    4. How to get a OPEN/SAVE dialog option window when open Excel from IE browser.
      I use the following to open Excel from IE browser, but I don't get a OPEN/SAVE dialog option window. Instead, the Excel opened in the browser...
    5. Open new browser window
      Hello, I want to make a php application, which displays different text in separate windows. I mean for example a new window will open with text...
  3. #2

    Default Re: open browser window

    Hi,

    Ok here is a link
    [url]http://www.flashkit.com/board/showthread.php?s=a12862027ee7a8e1d5e06e7d4455f[/url]
    4ad&threadid=472936&highlight=popup
    This will give you all you need open a pop-up window.

    Hope this helps

    Mark

    "maxxi" <webforumsuser@macromedia.com> wrote in message
    news:bfgnli$fvi$1@forums.macromedia.com...
    > Hi, I'm sure this is very simple, but I'm pretty new to dreamweaver and
    HTML, so your help would be
    > much appreciated. What I want is to specify the height and width and
    other functions like
    > no scroll bars etc of my web page, much the same as you can with the open
    browser window
    > function. As I am wanting to link from a graphic in flash to a quicktime
    movie played through
    > dreamweaver.
    > Any help or pointers to articles would be great.
    > thanks
    > max
    >
    >
    >
    >

    Sir Sixx Guest

  4. #3

    Default Open browser window

    I am using this code

    on(press){
    getURL("javascript:window.open('shirt_side.html',' back')");
    }


    to open a seperate browser window. Works fine on a mac, but when i test it anywhere is, the new window opens, BUT the original window goes blank and displays the word [object] in the corner.

    Why is it doing this, and how do I fix it?

    thank you in advance!

    [url]www.interval-graphics.com[/url]
    valblue webforumsuser@macromedia.com Guest

  5. #4

    Default Re: Open browser window

    > on(press){
    > getURL("javascript:window.open('shirt_side.html',' back')");
    > }
    >
    > to open a seperate browser window. Works fine on a mac, but when i test it anywhere is, the new window opens, BUT the original window goes blank and displays the word [object] in the corner.
    you need to void the request.
    Void returns nothing , means something like Empty or None or Nothing
    YOu can see the Object because the function that made those windows had a return
    value that was an 'object'... if you void() it, you wouldn't see that...

    Void is use to take the result that some function returns and discard it.

    javascript:n_name =window.open('shirt_side.html','back','width=700,h eight=650');void(0);

    By the way , if you using just html document w/o parameters like size than why not just directly getUrl
    only w/o the javascript function ?




    Regards


    urami_*

    <xmas>
    [url]http://flashfugitive.com/[/url]
    </xmas>
    urami_ Guest

  6. #5

    Default Re: Open browser window

    If you are just opening the new URL in a new window and keeping the original content on the other page, try out:

    on (release) {
    getURL("http://www.yahoo.com", "_blank");
    }



    ulrichkm webforumsuser@macromedia.com Guest

  7. #6

    Default Re: Open browser window

    thank you!

    [url]www.interval-graphics.com[/url]
    valblue webforumsuser@macromedia.com 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