Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Did make a Flash banner and it al works fine. But when i want to put with the rectangle tool a button over the whole banner and put in the action tab the code:

Symbol16.onRelease() {
getURL('http://www.domainname.nl/');
}

I will get an error:

Scene 1, Layer 'Layer 5', Frame 1, Line 1 1086: Syntax error: expecting semicolon before leftbrace

I've allready searched for many hours to the solution but couldn't find anything on the web.

Does anyone know how to solve this problem.

If more info is needed let me know.

share|improve this question

2 Answers

You should add a method by this way:

Symbol16.onRelease = function() {
getURL('http://www.domainname.nl/');
}
share|improve this answer

You should change your script version if you are on ActionScript 3.0.

To do this press Ctrl+Shift+F12, Flash Tab → Script: ActionScript 2.0 → Press OK.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.