close my project that is in a browser window (close this window)

Ask a Question related to Macromedia Director Lingo, Design and Development.

  1. #1

    Default close my project that is in a browser window (close this window)

    How can I do this with a button? What do I have to put into button?


    Carlos Gonçalves Guest

  2. Similar Questions and Discussions

    1. Can not close the browser window from within a pdf in windows XP.
      Here is the problem I am having right now. Thanks for any help!! 1) I have a jsp/html that contains a pdf file. When the html is loaded to the...
    2. Close Browser Window behaviour
      Hi, Not an ideal solution this... but the boss wants a website to open (from the first page) in a browser window without any toolbars, address...
    3. how to close browser window from flash?
      i have encountered what appears to be a bug with loadvars.send: http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid...
    4. Confirm user wants to close browser window
      Please don't. It's very simple (window's onclose event) but don't do it. Unless your users are total morons who manage to click that tiny X by...
    5. window sizing & close this window code
      Sharon wrote on 16 jul 2003 in microsoft.public.inetserver.asp.general: No ASP to be seen, Sharon, please see a clientside NG, --...
  3. #2

    Default Re: close my project that is in a browser window (close this window)

    If you want to close the browser window to that holds the SW movie, you
    can do this:

    on mouseUp me
    getNetText("javascript:window.close()")
    end

    If you want to close the SW movie and leave the window alone, then just
    call a new page to populate the window:

    on mouseUp me
    gotoNetPage("http:.//newPage.com")
    end

    --
    Rob
    _______
    Rob Dillon
    Team Macromedia
    [url]http://www.ddg-designs.com[/url]
    412-243-9119

    [url]http://www.macromedia.com/software/trial/[/url]
    Rob Dillon Guest

  4. #3

    Default Re: close my project that is in a browser window (close this window)

    Thanks a lot!!


    "Rob Dillon" <rob@ddg-designs.com> wrote in message
    news:141120030841431034%rob@ddg-designs.com...
    > If you want to close the browser window to that holds the SW movie, you
    > can do this:
    >
    > on mouseUp me
    > getNetText("javascript:window.close()")
    > end
    >
    > If you want to close the SW movie and leave the window alone, then just
    > call a new page to populate the window:
    >
    > on mouseUp me
    > gotoNetPage("http:.//newPage.com")
    > end
    >
    > --
    > Rob
    > _______
    > Rob Dillon
    > Team Macromedia
    > [url]http://www.ddg-designs.com[/url]
    > 412-243-9119
    >
    > [url]http://www.macromedia.com/software/trial/[/url]

    Carlos Gonçalves 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