Paul Steven <[EMAIL PROTECTED]> wrote:
>Here is the exact handler I have
>
>--------------------------------------------------------------
>on Change_Sprite_To_Appropriate_Note_Member me

Hi Paul,

The message you are getting is likely to be due to "me" being void in
the handler that uses it.

I imagine that your initial event handler is something like this:

on mouseUp me -- me IS AN APPROPRIATE BEHAVIOR REFERENCE
  Change_Sprite_To_Appropriate_Note_Member -- me IS MISSING
end

Use the Debugger window to step through your code, and note at which
point "me" becomes <Void>.  That should help you determine where you
have omitted it.

You can use either...

  me.Change_Sprite_To_Appropriate_Note_Member()

or...

  Change_Sprite_To_Appropriate_Note_Member(me)

Since Director 8, Macromedia recommends the first form, but both have
the same effect.

Cheers,

James


[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