TheSwamp

Code Red => AutoLISP (Vanilla / Visual) => Topic started by: domenicomaria on September 05, 2022, 06:51:06 AM

Title: double click mouse reactor SIDE EFFECTS
Post by: domenicomaria on September 05, 2022, 06:51:06 AM
I wrote a double click mouse reactor callback function

and when I double click on something,
the callback function is normally called ,

but immediately after

if the doubleclicked entity is a polyline, the comand pedit runs
if the doubleclicked entity is an insert, the comand bedit runs
if the doubleclicked entity is a text, the textedit runs

Is there a system variable (or any trick)
to temporary suspend the USUAL, NORMAL, effects of a doubleclick ?
Title: Re: double click mouse reactor SIDE EFFECTS
Post by: It's Alive! on September 05, 2022, 06:56:10 AM
I don't think so, that would be too cool wouldn't it?
you can disable the double click for commands in the CUI, but that's no fun.
Title: Re: double click mouse reactor SIDE EFFECTS
Post by: domenicomaria on September 05, 2022, 07:12:56 AM
and is it possible, VIA LISP,
disable the double click for commands in the CUI ?
Title: Re: double click mouse reactor SIDE EFFECTS
Post by: VovKa on September 05, 2022, 07:17:45 AM
https://knowledge.autodesk.com/support/autocad/learn-explore/caas/CloudHelp/cloudhelp/2018/ENU/AutoCAD-Core/files/GUID-0A1763AF-D682-4776-99BA-E64BC2B0D286-htm.html
Title: Re: double click mouse reactor SIDE EFFECTS
Post by: domenicomaria on September 05, 2022, 07:24:09 AM
https://knowledge.autodesk.com/support/autocad/learn-explore/caas/CloudHelp/cloudhelp/2018/ENU/AutoCAD-Core/files/GUID-0A1763AF-D682-4776-99BA-E64BC2B0D286-htm.html

VovKa ,
thank you very much !