AtuoCAD 2024 running lisp routine and help popup comes up
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
As the title says, when I run a basic lisp routine the AutoDesk help window pops up. in AutoCAD 2023 this didn't happen. I was hoping to find a line I can add to the lisp to stop this popup. I am not a expert in writing lisps maybe some here as had the same problem and found a fix. thanks.
(defun CHANGEMAPFEATURECOLORS ()
(ssget "X" '((8 . "XXLPSchema_Tenant_Label")))
(command "chprop" "p" "" "c" "7" "")
(ssget "X" '((8 . "XXLPSchema_Tenant_Label_1")))
(command "chprop" "p" "" "c" "7" "")
(ssget "X" '((8 . "XXLPSchema_Tenant_Label_2")))
(command "chprop" "p" "" "c" "7" "")
(ssget "X" '((8 . "Tenant - SF")))
(command "chprop" "p" "" "c" "7" "")
(ssget "X" '((8 . "Space")))
(command "chprop" "p" "" "c" "7" "")
(ssget "X" '((8 . "Tenant Space_CalcProp1")))
(command "chprop" "p" "" "c" "7" "")
(ssget "X" '((8 . "XXLPSchema_Unit_Label")))
(command "chprop" "p" "" "c" "7" "")
(ssget "X" '((8 . "Unit")))
(command "chprop" "p" "" "c" "7" "")
(ssget "X" '((8 . "XXLPSchema_Tenant_Space")))
(command "chprop" "p" "" "c" "7" "")
(ssget "X" '((8 . "XXLPSchema_Tenant_Space_1")))
(command "chprop" "p" "" "c" "7" "")
(ssget "X" '((8 . "Space")))
(command "pedit" "m" "p" "" "w" "9" "")
(princ)
)