flash preload mp3 from xml
flash preload mp3 from xml
Out of context: Reply #1
- Started
- Last post
- 2 Responses
- enjine0
Make sure your mp3.isStreaming is set to false:
var obj = //your sound file
var loaded = Math.floor(obj.getBytesLoaded...
var total = Math.floor(obj.getBytesTotal()/1...
var percent = isNaN(Math.floor(loaded/total * 100)) ?
0 : Math.floor(loaded/total * 100);