Are you in as3? In as3 buttons can not have action script applied to them directly as in as2. You have to call the button from the timeline. For example this is the code for a button called "btnhelmet" in a movie clip called "contentMain" to open on release "index.html" in a new window. I'm 98% sure this is as3 i switched the page code to as2 though because i added in other elements from older fla's. so I can't test it to make sure but if you liked the old adding the code to the button just switch back to as2 and it'll let you.
Code:
contentMain.btnhelmet.onRelease = function() {
getURL("pages/helmet/index.html", "_blank");
};
Bookmarks