Request: Macro to toggle the Crosshair cursor

Hello for everyone,

I need a simple macro (not simple for me) to toggle the normal arrow cursor to the crosshair cursor. (I want to asign a shortcut key for that!)

Thanks for the help, have a nice day!!!

Parents
No Data
Reply
  • I have never tried to change the default cursor in CorelDraw.
    But sometimes in macros I use commands =GetUserClick= or =GetUserArea= one of the parameters of these functions is Cursor.
    When this command is executed (before clicking), the appearance of the cursor can be changed as follows:

    B = ActiveDocument.GetUserClick(X, Y, Shift, 10, False, cdrCursorWinCross)
    or
    B = ActiveDocument.GetUserArea(X1, Y1, X2, Y2, Shift, 10, False, cdrCursorWinCross)

    Regards
    Taras

Children