GetCursorInfo during drag
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 08/11/2004 at 02:01, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 8.207
Platform: Windows ;
Language(s) : C++ ;---------
I make a tool plugin. In MouseEvent I start a drag if the left mouse button is pressed, to span up a rectangle, so I remain in a while loop in the MouseEvent function. But during this drag I want to display the size of the rectangle in the info line of the editor window, which would be normaly done in GetCursorInfo. But this function is never called while I'm in the loop, even if I call DrawViews.
I there a way how to trigger GetCursorInfo to be called from the MouseEvent function, or any other way how to set the info line of the editor window ( RESULT_BUBBLEHELP ) from the MouseEvent function. -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 10/11/2004 at 02:58, xxxxxxxx wrote:
I don't think this is possible. Perhaps you could set the information in the status bar?
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 10/11/2004 at 03:56, xxxxxxxx wrote:
Yes, I also searched for a solution, and I did it this way, I think its the only possible solution.