Flash Compile Error 1126
1126: Function does not have a body.
This error typically means that you have a misplaced semi-colon, usually at the end of a function name declaration.
function foo() : void;
{
/*function content*/
}
1126: Function does not have a body.
This error typically means that you have a misplaced semi-colon, usually at the end of a function name declaration.
function foo() : void;
{
/*function content*/
}