<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;">To: <A href="mailto:vtkedge@vtkedge.orgHi">vtkedge@vtkedge.orgHi</A> all ! <BR>&nbsp;<BR>I am trying to catch the LeftButtonPressEvent event using the observer/commannd architecture.&nbsp; Code is pretty simmilar to the one in the book where it catches the StartEvent (and the code works) but i try the LeftButtonPressEvent.&nbsp; Code below:<BR>&nbsp;<BR>class vtkMyCallback : public vtkCommand {<BR>public: static vtkMyCallback *New() { return new vtkMyCallback; }<BR>virtual void Execute( vtkObject *caller, unsigned long, void*) {<BR>vtkRenderer *ren = reinterpret_cast&lt;vtkRenderer*&gt; (caller);<BR>cout &lt;&lt; "ana are mere " &lt;&lt; endl;<BR>}<BR>}; <BR>&nbsp;<BR>&nbsp;<BR>... in the main ()&nbsp; i have:<BR>&nbsp;<BR>vtkMyCallback *mycallback = vtkMyCallback::New(); <BR>ren1-&gt;AddObserver(vtkCommand::LeftButtonPressEvent, mycallback);<BR>&nbsp;<BR>I am
 using Visual Studio 2008 and WinXP<BR>&nbsp;<BR>&nbsp;<BR>The problem is that, I don't catch the event and actually the code never enters the Execute function. Could someone tell me why ?<BR>&nbsp;<BR>Best,<BR>Radu. <BR></td></tr></table><br>