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
^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
0
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
0 -
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...
0 -
Try this:
[code]^P_endpoint;_midpoint;_center;_intersection;_insertion;_node;[/code]0 -
Oops:
I mean try this (actually the same as your macro but without the '\')
[code]^P_end,_mid,_cen,_int,_ins,_nod;[/code]0 -
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.0 -
OK, now I understand and remember (see here).
Try this:
[code]^P_end,_mid,_cen,_int,_ins,_nod;(cadr (grread T));[/code]0 -
OK, now I understand and remember (see here).
Try this:^P_end,_mid,_cen,_int,_ins,_nod;(cadr (grread T));
Perfect, many thanks !!!0
This discussion has been closed.