I’m trying to determine the best way to preload my audio and am having trouble figuring out the difference between audio.loadSound() and media.newEventSound().
My guess is that the functions are used for different platforms. I’m using media.newEventSound() on iPhone and it seems to be working. But I’d like to know for sure that I’m using the correct function. [import]uid: 10489 topic_id: 6221 reply_id: 306221[/import]
In essence the difference is that media.newEventSound() is the older API that used the platform’s software-based sound libraries, while audio.loadSound() is the newer API that uses OpenAL. In theory the newer approach is better, but of course because it is new there may be bugs. Personally I say use “audio” and forget about “media.”