Hi @richtornado,
Welcome to Corona! The first comment I have is that your “:addEventListener()” calls are not correct. If you look at the documentation…
https://docs.coronalabs.com/api/type/EventDispatcher/addEventListener.html
… you’ll see that it only accepts two arguments, not a long list as you have done. You have the first argument correct (i.e. “tap”) but the second argument needs to be either a reference to a properly-scoped function, or an inline “anonymous” function. So, it might look something like this, using an anonymous function (I’m making some assumptions since I don’t know all of the code you’ve written):
[lua]
rectangleA:addEventListener ( “tap”,
function()
slide1();
score = score + 1;
shipSmash();
– more?
end;
)
[/lua]
Hope this points you in the right direction,
Brent