I've tried to load xml document into Shockwave movie.
on mouseUp
 id = preloadNetThing(http://someserver.com/document.xml)
end

on exitframe
 if voidP(id) then exit
 if netDone(id) then
  if netError(id) then 
   ParseDocument(http://someserver.com/document.xml)
  else
   id = VOID
   alert "Error"
   exit
  end if
 else
  myList = GetStreamStatus(id)
  myTextMember.text = "Current load " & myList.bytesSoFar & "/" & myList.bytesTotal
 end if
end

When I run this movie in browser in Internet I see something like this:
 "Current load 0/0".
And nothing else happend. Where is the error?  
[To remove yourself from this list, or to change to digest mode, go to 
http://www.penworks.com/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!]

Reply via email to