You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to guess-discuss
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.