I have an app that plays mp3 audio for voiceovers and also launches videos. When I first run the program media.playSound works fine everytime UNTIL I play a video using media.playVideo. After media.playVideo then all calls to media.playSound do nothing.
[code]
media.playSound( “song.mp3” ) --works fine
–… later …
local onComplete = function(event)
print( “video session ended” )
end
media.playVideo( “Movie.m4v”, true, onComplete )
–… later …
media.playSound( “song.mp3” ) --does nothing
[import]uid: 7588 topic_id: 4852 reply_id: 304852[/import]