Hello!
I’m just a begginer, who discovered Corona a few days ago while trying to learn and practice lua.
I started with the “Getting Started” section, and I understand completly at least where I have reached.
I downloaded the sounds files from chapter 7 , I put them in my project file, in the audio folder , but got a warning everytime.
02:34:22.550 WARNING: D:\Documents\Corona Projects\StartExplorer\game.lua:291: audio.loadSound() failed to create sound ‘audio/fire.wav’
Here is the code (which is exactly the same as the Tutorial):
–at the start
local explosionSound
local fireSound
–in the start scene
explosionSound = audio.loadSound(“audio/explosion.wav”)
fireSound = audio.loadSound(“audio/fire.wav”)
TLDR: Simulator can’t load working sound even if they are in the correct folder.
Help?