Hi list...

I have a frame script that's interrupting the flow of code.  I suspect a
bubbling issue.  A swf sprite, on mouseUp, calls a parent script.  When
debugging, I can see it gets to the parent handler, but this always
occurs on a frame that has a frame script on it.

In that frame script, I have a handler:

on mouseUp(me)
  if pHandler = "mouseUp" then
    do(pDoWhat)
  end if
end

on exitFrame(me)
  if pHandler = "exitFrame" then
  -- here, pDoWhat = "_movie.go(_movie.frame)"
    do(pDoWhat)
  end if
end

The mouseUp handler grabs the code out of the parent script and
automatically into the frame script, after one step.  I think it's a
combination of a bubbling issue and the on enterFrame handler, so how
can I prevent the code from being diverted from its intended flow?

Thanks,
- Michael M.


[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