|
|
 |
|
|
|
|
|
Closing Popups from swish.
If your movie or the html containing your movie is loadded in popup window, you can close it with in your movie button.
Create a button for close Add its action JavaScript
self.close();
window.close(); does the same thing.
parent.opener=top;parent.close();
This script will bypass the windows box that pops-up asking you whether you want to close the window or not.
Also allowes you to close a chromeless window.
that's all
|
|
|
|