>I'm new with shockwave files. The preload will download all the movie before
>play or just part of it?
Preload will download the entire thing, and use a *lot* of hard drive
space, plus taking forever. You would need to loop forever on a frame,
checking netDone()
>If not how can I load the movie?
I haven't tried streaming video, but this works for me with streaming audio:
gSoundObj = new(#swa)
gSoundObj.url = swaFile
gSoundObj.stop()
gSoundObj.streamName = swaFile
gSoundObj.preLoadTime = 5
gSoundObj.preLoadBuffer()
then wait for gSoundObj.state=2
That preloads 5 seconds of audio. I would imagine you could do the same
with a QuickTime movie, though you might want to preload more than 5
seconds to prevent buffer underrun.
Cordially,
Kerry Thompson
Learning Network
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi To post messages to the list,
email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo. Thanks!]