On 2016-08-08 10:39, Devin Asay wrote:
MP3s play natively on both iOS and android. You should be able to use
the play command followed by the path to the file. Or is the issue
that you need to have it cross platform? In that case WAV is a good
choice.
Devin is correct - the 'play' command should work on iOS and Android
with mp3s. For the desktop platforms, you are best to use a hidden
player. This can be abstracted with a command in a library script -
which 'does the right thing' on all platforms. i.e.
command playSound pSoundFile
if the environment is "mobile" then
play pSoundFile
else
set the filename of player "myHiddenPlayer" to pSoundFile
play player "myHiddenPlayer"
end if
end playSound
Warmest Regards,
Mark.
--
Mark Waddingham ~ [email protected] ~ http://www.livecode.com/
LiveCode: Everyone can create apps
_______________________________________________
use-livecode mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode