Selteco Software
Selteco.com > FlashDesignerZONE.com > Tutorials > T1022

How to close browser window from a Flash file without prompt.

Example Popup

Note: In Flash Player 8 this method will give a security warning. Use FSCommand method.

Call JavaScript function in Flash using OnClick action:

javascript:window.opener=self;window.close();

You can also use:

javascript:window.close();

but the browser will prompt to confirm.

Creating "Close" button

  1. Choose "Insert" > "Symbol" command
  2. Choose the following symbol from "Wingding" list:

  3. Choose "Action" > "OnClick"
  4. Choose "Get URL" action and enter the code:

    javascript:window.opener=self;window.close();

    Click OK

  5. Choose "Action" > "On Over Color", uncheck "No Color" and select your favorite color, click OK