Can't play Music and sound effects at the same time? Help

Hi, so my first version of the game used sound effects like so:

sound(SOUND_JUMP, 1232)

Now I’m using the new codea 2.0 app I’m using the music code, but the sound effects appear not to play at the same time. Is this because of the new sound system handling music or something I’m missing?

Thanks
Major

@Majormorgan It’s the way codea handles sounds and music playing together

@kirorp thanks. So I can’t have music and sound effects at the same time?

I think you can play music and sound at the same time

function setup()
    music("A Hero's Quest:Battle",true,0.3)
    parameter.action("sound",function()sound("Game Sounds One:Blaster")end)
end