replace mouse
only had a brief look at your patch. it seems to me that the "move x y" is your problem. you have a [pak move 0 0] going to a [prepend set] going to a message. well, since you use the "set" message that will only set the message but not send it!! so get rid of the message box and the prepend object and go directly from [pak 0 0] to the jsui. that should do the trick.
good luck.
Thank you for your answer. It was very helpful, but now max crash after some actions. i don't know why. Tank's a lot!
help me please....
Your touch and move function should probably look like this:
function touch(x,y)
{
onclick(x,y);
}
function move(x,y)
{
ondrag(x, y);
}