Assign snaps to Mouse Middle Button

In Autocad I assigned to middle button some snaps using this code:

^pend,mid,cen,int,ins,nod;\

I'm trying to do the same on Bricscad but don't behave the same way...

Can anyone tell me how I can fix this ?

Thanks

Comments

  • In Autocad I assigned to middle button some snaps using this code:

    ^pend,mid,cen,int,ins,nod;\

    I'm trying to do the same on Bricscad but don't behave the same way...

    Can anyone tell me how I can fix this ?

    Thanks


    Have you turned MBUTTONPAN OFF?

    Regards,
    Jason Bourhill

  • Yes I did.

    The middle button recognize the command, with the snapmode off or 0, the "end,mid,cen,int,ins,nod" osnaps are activated, but to finish the operation I must press the mouse left button.

    Must be something missing on the macro...

     
  • Try this:
    [code]^P_endpoint;_midpoint;_center;_intersection;_insertion;_node;[/code]
  • Oops:
    I mean try this (actually the same as your macro but without the '\')
    [code]^P_end,_mid,_cen,_int,_ins,_nod;[/code]
  • Oops:
    I mean try this (actually the same as your macro but without the '\')
    ^P_end,_mid,_cen,_int,_ins,_nod;  


    Same result, enable the snaps but don't assume the click.

  • OK, now I understand and remember (see here).
    Try this:
    [code]^P_end,_mid,_cen,_int,_ins,_nod;(cadr (grread T));[/code]

  • OK, now I understand and remember (see here).
    Try this:
    ^P_end,_mid,_cen,_int,_ins,_nod;(cadr (grread T));    


    Perfect, many thanks !!!
This discussion has been closed.