Receiving the error:
Incompatible Override,
Overriding a function that is not marked for override
why is this? I want the button to play sound when it is clicked.
Error is referring to the line with the function on.
[SIZE=6][FONT=arial black]Code:[/FONT][/SIZE]
[FONT=book antiqua]playbutton1.addEventListener (MouseEvent.MOUSE_DOWN,isPlaying);
function isPlaying( evt:MouseEvent )
{
soundchannel = mysound.play(0,2);
}
[/FONT]