Forum Moderators: open
/* Click to Go to Web Page
Clicking on the specified symbol instance loads the URL in a new browser window.
Instructions:
1. Replace http://www.adobe.com with the desired URL address.
Keep the quotation marks ("").
*/
button_1.addEventListener(MouseEvent.CLICK, fl_ClickToGoToWebPage);
function fl_ClickToGoToWebPage(event:MouseEvent):void
{
navigateToURL(new URLRequest("http://www.example.com/rooms-and-specials/specials-and-packages/"), "_self");
}
[edited by: eelixduppy at 5:38 pm (utc) on Nov 11, 2011]
[edit reason] exemplified [/edit]