|
Hello everybody,
I am kind of new with tables and have some questions for those who have been there. Can somebody help me out?
Goal:
My goal is to make a routine that extracts block data (._dataextraction) based on a previous extraction.
This is saved in a template, somewhere on the server of our company.
So with "one click" (or macro / command) I need a table to "appear".
This is not the problem for it is working.
Routine so far:
[code](defun c:ett (/ Location ScFactor TemplatePath) (setq TemplatePath (strcat "C:/test.dxe")ScFactor (getvar "dimscale")Location (getpoint "Where? ")) (vl-cmdf "-dataextraction" TemplatePath Location)(vl-cmdf "_.scale" "L" "" Location ScFactor) (princ))(prompt "\n\t\t>>>\t Type ett to start Extraction to Table \t |
|