Hello,
I have written a script to respond to mouse clicks:
class test(java.lang.Object):
def init(self):
graphevents.clickNode= self.mouseClick
def mouseClick(self,_node):
self.myFunction()
def myFunction(self)
print "ok until here"
# making an error:
pprint "ex. of a bad command: pprint instead of print"
# other lines...
The problem is that Guess doesn't show any error message for the 3rd
line of myFunction. It just stops working and doesn't execute the
lines after.
So it's impossible to debug my functions.
Any idea?
Thanks,
Massoud