Is this possible?

Hi everyone.

I have images with soun events but they sounds separately. I want to enable that sound both while simultaneously touching and that thew sounds while I slide and touch any of them. Any help with this.

Here is the code for what i got
local tocauno = display.newImageRect(“bar.png”, 91, 60)
tocauno:setReferencePoint(display.TopLeftReferencePoint)
tocauno.x = 83
tocauno.y = 160

local unosonido = media.newEventSound (“haz.wav”)

local function playuno (event)
if event.phase == “ended” then
media.playEventSound (unosonido)
end
end

tocauno:addEventListener (“touch”, playuno)
local tocados = display.newImageRect(“bar.png”, 74, 56)
tocados:setReferencePoint(display.TopLeftReferencePoint)
tocados.x = 130
tocados.y = 67

local dossonido = media.newEventSound (“hez.wav”)

local function playdos (event)
if event.phase == “ended” then
media.playEventSound (dossonido)
end
end

tocados:addEventListener (“touch”, playdos)

Thank you [import]uid: 81363 topic_id: 15613 reply_id: 315613[/import]