Search:
Tools, Resources and Technologies for Web Developers
,
SIGN UP NOW!
Home
Forum
Login:
new account
-
request password
Home
»
Forums
»
Development and Support
»
Flash and ActionScript
Open Url in Browser using GetUrl
No replies
Wed, 06/17/2009 - 03:44
jose
Offline
Joined:
03/30/2009
To open a url with Flash just have to use function "getURL" inside a button:
on
(
release
)
{
getURL
(
"http://www.bananatools.com/"
,
"_blank"
)
;
}
or may be you want to open a email link:
on
(
release
)
{
getURL
(
"mailto:info@bananatools.com"
)
;
}