On 20/10/2017 at 02:46, xxxxxxxx wrote:
I have an object plugin and I want to know when the user switches documents.
What message, and where, do I receive when the users switches back to the document with the object plugin in it?
I tried this, but it does not work (do I receive CoreMessage() in an object plugin?) :
def CoreMessage(self, id, msg) :
#print "id: ", id
if id == c4d.MSG_DOCUMENTINFO: print "document info"
return True
-Pim