Search the Community
Showing results for tags 'problems with autolisp'.
-
Could anyone help me with it?? I am trying to install Global Attribute Extractor & Editor (http://www.lee-mac.com/macatt.html) on a colleague's computer which has Windows 10 inside. When I run extractor or editor, Autocad let me to state all the blocks and the files. However, when i press ok button it send me a error with automatisation problem. Did you have something similar?
-
- problems with autolisp
- lisp
- (and 3 more)
-
Hi, I am having a problem when I try to create a *.txt file and write a simple line on it. I have the following code for my Autolisp function: (defun c:prueba4() (setq f(open "AAA.txt" "w")) (write-line "Hi friend" f) (close f) ) I made a *.txt file previously and I have not had problems creating it (it was a similar file). I probed on my office pc and it worked good, but when I returned to my house and tried to write the code above as a new file, I could not make it. So I decided to modify and change some of the text in the file that had already working correctly, but the new modified code does not set up, I always have as result the same original text. Can anyone had the same inconvenient? Regards