Thread
:
preloading sound.
View Single Post
Nutrox
17 Creative Assets
2006-11-23 #
9
No problem.
There is also the Sound.onLoad event that you can use when the sound has loaded... if you don't need any load progress info.
ActionScript Code:
mySound.
onLoad
=
function
(
)
:
Void
{
trace
(
"mySound has loaded"
)
;
}
mySound.
load
(
"file.mp3"
)
;
Nutrox
View Public Profile
Visit Nutrox's homepage!
Find all posts by Nutrox