Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Closing a Browser

Status
Not open for further replies.

NoviceFlashUser

Technical User
Sep 1, 2003
21
0
0
SG
hi all,

I am using the command geturl to launch IE to activate send SMS using a SMS software. However, I want to be able to close the browser after every launch. Am I able to do it?
 
so you want to close the browser window using the getURL command??

if so: use this

Code:
getURL("javascript:window.close()");

or

on(release)
{
     getURL("javascript:window.close()");
}

you could add an alert to make sure they want to close the window like 
gotoAndPlay/Stop(frame;) or gotoAndPlay/Stop("Close");

Thanx

Martin

Computing help and info:

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top