View Single Post
  #2  
Old 03-05-2011, 07:02 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
afaik it's not possible without separate functions

use this instead of name when you're catching events.

PHP Code:
thiso.catchEventname"onMouseDown""RotateChar");  
thiso.catchEventname"onRightMouseDown""RotateChar"); 
should be

PHP Code:
thiso.catchEventthis"onMouseDown""RotateChar");  
thiso.catchEventthis"onRightMouseDown""RotateChar"); 
the name stuff only works through some silly guessing stuff in the engine (same reason profile = "ProfileName" works?).
__________________
Reply With Quote