Michael C. Hanson wrote:

> on exitFrame
>   if not(voidP(gNetID)) then
>     if (netDone(gNetID) = TRUE) then
>       serverString = netTextResult()
>        parsePacket(serverString)
>     end if
>   end if
>   gNetID = void
>   go the frame
> end

um, just noticed that gNetID is being set to
void every frame...

on exitFrame
  if not(voidP(gNetID)) then
    if netDone(gNetID) then
      serverString = netTextResult(gNetID)
      parsePacket(serverString)
      gNetID = void
    end if
  end if
  go the frame
end

may work better

Christian

----------------------------
Christian Wach
[EMAIL PROTECTED]
----------------------------


[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!]

Reply via email to