WARNING: Failed to create audio sound

I was able to get the sounds to play by switching to this instead. No more warnings and everything works.

[code]
local path = system.pathForFile( filename, system.DocumentsDirectory )

local file = io.open( path )
if file then
io.close(file)
playWord = audio.loadSound( filename, system.DocumentsDirectory )
audio.play( playWord )
else
print(“File does not exist”)
end
[/code] [import]uid: 138352 topic_id: 8782 reply_id: 130717[/import]