Hi everybody
I’ll start by saying I’m da biggest newbie/noob you’ve probably ever seen. So please, no “use shfkshjs to do askdbfksbf it’s so easy”
And now, here’s the problem:
local myImage = display.newImage( "example1.png" ) myImage.x = 610 myImage.y = -10000 myImage.rotation = 0 physics.addBody( myImage, { density=0.1, friction=2.0, bounce=0.0 } ) local function touchListener( event ) print( "Touched" ) media.playEventSound( "boom.mp3" ) end myImage:addEventListener( "touch", touchListener )
First problem: I have this in my code. When myImage is touched, it clearly says “touched” in terminal and then plays the “boom.mp3”. But when I built the app just to see if it really works, no sound comes when I touch myImage (sgs3 GT-I9300 Android 4.1.2) 
Second problem: How to make myImage to remove itself when touched and change to another picture, let’s say “example2.png”.
Thaaaanks :) 