Anuncios

The Autodesk Community Forums has a new look. Read more about what's changed on the Community Announcements board.

DWGPROPS ENTRIES

Anonymous

DWGPROPS ENTRIES

Anonymous
No aplicable

Is there a way to easily go between fields when using the DWGPROPS command, custom properties. I'm sure it's pretty simple. But when I'm trying to go to the next field it seems pretty cumbersome to have to select each new field manually and not hit enter or tab to go to the next one. 

0 Me gusta
Responder
713 Vistas
4 Respuestas
Respuestas (4)

fatal.error
Advocate
Advocate

Once the DWGPROP Dialog's Custom Label is displayed, hit the TAB KEY once to change the focus into the Custom Properties list and then the DOWN ARROW KEY to highlight and navigate through fields.

 

fatalerror_0-1638373122983.png

 

0 Me gusta

Anonymous
No aplicable

This only allows me to navigate between the fields, but I still have to manually click the field in order to enter information. When I enter information in the first field I was hoping for a solution to be able to enter info in the next field without having to use my mouse and click the field. 

0 Me gusta

pendean
Community Legend
Community Legend
>>>...without having to use my mouse and click the field....<<<
Not an option with the core commands/pop-ups/features in the program.
0 Me gusta

fatal.error
Advocate
Advocate

IDK your needs, but how about batch editing custom properties with some lisp:

 

 

;;; Create or edit DWGPROPS Custom Properties 

(defun c:CUPRO ( / )

    (setq  si (vla-Get-SummaryInfo (vla-Get-ActiveDocument (vlax-Get-Acad-Object))))
    
    ;;; Change existing custom property value
    (vla-SetCustomByKey si "DwgProperty1" "New Value 1")
    
    ;;; Create new custom property and set a value
    (vla-AddCustomInfo si "DwgProperty2" "New value 2")
    
    (princ pval)

);defun

 

 

 

0 Me gusta