AutoCAD Visual LISP / AutoLISP :: Wblock To Erase Or Not To Erase?
Feb 18, 2013
Wblock when run from the command line used to erase the entities selected, now it seems it does not, but the dialog box shows an option to keep or erase the selected entities.
Any variable name that controls this functionality?
View 1 Replies
ADVERTISEMENT
May 15, 2013
I have pieced this lisp together from a few I have come across here in the groups, but am now stuck with the final pieces. Once the pline is drawn I would like the lisp routine to select the pline (last ?) instead of the user doing so. I would then like to offset the line 1 (foot) and then erase the original line drawn, so the user does not have to.
View 9 Replies
View Related
Oct 8, 2013
I've been looking for a lisp program. I've tried to mix-and-match code to come up with a working lisp but nothing is working. I am using a polyline rectangle to start with, offsetting it out 0.75 outward, and triming everything outside of the offset and erasing the offset.
View 9 Replies
View Related
Apr 9, 2013
I have a lisp which I use to erase all points in a specific layer.
(defun cPL ()
(setq ss1 (ssget "x" (list '(0 . "point")'(8 . "Points"))))
(command ".erase" ss1 "")
(princ)
)
It is working only if I have the points in the DWG. If there are no points, I receive "Unknow command DPL". Is there anything I can do in order to avoid this error?
View 5 Replies
View Related
Jun 4, 2012
I am using Autocad 2013, and need to have lisp wblock to a 2010 format file. Is there a way I can force it to, without the trouble of opening the file dialog box and setting the format there?
View 4 Replies
View Related
Nov 23, 2011
I am having trouble getting the erase tool to erase part of an elipse shape in Corel Draw. I select the erase tool and click and drag across the part of an elipse that I want to get rid of (so far so good), then I release the mouse and an outline of the nib tool is left behind.
View 5 Replies
View Related
Sep 12, 2013
I would like to remove all the Layers with the name "PLOH*" in them, that do not have anything in the same insertion point. I have been trying to select everything in the crossing window where the point3d's are the same but this does not get them all for some reason.
View 3 Replies
View Related
Jun 8, 2012
I've got a sub that grabs all of the text objects in a drawing and then compares the first 20 characters to a defined string. I want it to be able to erase any objects that are a match prior to moving on to the next object in the selection set. With the following code, it does everything but erase the object.
Public Sub RemoveDisclaimer() Dim myDB As Database = HostApplicationServices.WorkingDatabase Dim myDWG As Document = DocumentManager.MdiActiveDocument Dim myED As Editor = myDWG.Editor Dim dsText As DBText Dim dsMText As MText Using myTrans As Transaction = myDB.TransactionManager.StartTransaction 'select all text objects in the drawing Dim myBlockTable As BlockTable = myDB.BlockTableId.GetObject(OpenMode.ForRead) Dim myTypedValue(3) As
[code].......
View 3 Replies
View Related
Oct 31, 2011
I am using Inventor 2009 SP2, OS is XP Professional 2002 SP3.
I copy a file which has lot of parameters, I want to delete some of them, but Inventor Parameters pop up window just has buttom to add a user Parameter, without button to erase one.
Autodesk Inventor Professional 2013 (64 Bit) SP2
Windows 7 Professional Service Pack 1
Intel(R) Xeon(R) CPU E5645
12.0 GB Memory
View 9 Replies
View Related
Aug 18, 2012
I have a drawing with a Polyline filled with Hatch. Also I have that Polyline ObjectId. So using this ployline ObjectId I want to erase the Hatch inside polyline. How I can erase the Hatch.
I'm developing the application using C#.
View 9 Replies
View Related
Jan 30, 2012
I want erase text in all drawing using batch proces. example i want erase text like "as-build" . i have 50 drawing i want erase using batch proces
View 1 Replies
View Related
Apr 9, 2012
I used to use the Stress Analysis feature at my assembly.
Now I have copied it to another project and do not need this FEA info at copy.
I cannot just delete AIP folder since Inventor claims of missing FEA files while opening.
How to erase those files info from this assembly file?
View 2 Replies
View Related
Feb 8, 2012
I can't click on multiple lines to erase or copy, it will only let me do 1 line at a time.
View 1 Replies
View Related
Sep 11, 2013
I cannot erase certain point styles/label styles in Civil 3D. Why is this, and is there a way I can?
View 2 Replies
View Related
Jul 23, 2010
I am running AutoCAD 2011 on Windows 7 via BootCamp. The Delete Key does not function to erase lines. I have set Pickfirst to 1 and ensured Noun/Verb is checked on. I have tried pressing just the Delete key and also FN Delete, which is the correct combination for Delete on the MacBook Pro keyboard.
View 1 Replies
View Related
Sep 11, 2013
Working in AutoCAD™ 2012... Is there a way to "erase" an entity, line, etc. by selecting it and having it immediately disappear? I work in 3D/DXB files a lot and it really useful when working with an audience either for on-screen seminars or over-the-shoulder.
View 9 Replies
View Related
Aug 22, 2011
Im wondering if exist any lisp, for erasing or selecting elements inside multiple closed polyline.
So if i have 34 closed polyline in drawing, and i wont to be erased everything inside those polyline?.
View 3 Replies
View Related
Dec 4, 2012
In Autocad 2013, Is it possible to erase somme items of a rectangular associative array. I have seen that we can replace an object with a different one.
View 8 Replies
View Related
Oct 18, 2012
I have been trying to use my ERASE command in order to use a window polygon but I'm not getting the results in need. This is what happens....
I type in ERASE, then WP and from there I select my polygon shape and the items I want deleted. I don't join the last endpoint of the window with the first point I just hit ENTER twice but nothing happens.
View 5 Replies
View Related
Sep 27, 2010
i have a drawing i recieved from some one else - that has an ACAD_PROXY_ENTITY in it that i cannot edit or explode or erase or change layer.
View 4 Replies
View Related
Jul 12, 2012
Is there a lisp that will allow me to do a continuous dimension, but will alternate the dimension position from low, high, low and high? If there is no lisp already created, how to create one?
See Continuous dimension attachment for example.
I work at a glass and glazing company and this is how we dimension mullion width and DLO. See typical window dimensioning attachment for window elevation with dimensions.
View 6 Replies
View Related
Nov 14, 2013
I have a list ("temp.dwg" "temp2.dwg") and would like to add the string "insert text here" into each item in the list resulting in ("insert text heretemp.dwg" "insert textheretemp2.dwg"). how would i go about doing that using LISP?
View 2 Replies
View Related
Oct 7, 2013
Is there a way to programatically set a visual style before a drawing actually opens?
We have some huge models and people seem to forget to change their visual styles back to 2D wireframe before saving and exiting drawings. Some models will crash on some workstations when trying to open in a rendered mode.
I found a lisp with a function that looked to set viewport visual styles. But it does not seem to be supported anymore. --> (vla-put-VisualStyle vport 1)
View 9 Replies
View Related
Oct 11, 2012
I'm trying to write a lisp routine that, when I invoke the mleader command, osmode is set to "nearest" & orthomode is set off. I then would like the original settings to be returned.
attached is what I have written so far:-
View 4 Replies
View Related
Jun 20, 2013
Lisp that switches back on Selection Preview i.e. thickens and highlights lines when you hover over them?I don't know why, but they are always unticking the boxes.
View 4 Replies
View Related
Oct 22, 2012
I'm trying to change the dafault varible for the mirror command from no to yes. whne you do the mirror command after you choose your second point it asks if you want to erase the source object and the default is set to no but I would like to change it to yes. I'm able to change the macro for the mirror button which works but only when I push the button. Before the cui file I remember everything was done from the acad.pgp or the acad.mnu files but with the new CUI file i can't seem to locate wher to change the actual command and not just the macro for the mirror button.
View 6 Replies
View Related
Oct 29, 2007
Created L200 Annotative text in C3d drawing w/ SP1, INSTALLED SP2, working in dwg now I can not move, rotate or erase the text that is annotative (the two scale symbols) appear at every piece of text. I tried making in the STYLE text box toggling on and off "Annotative Text" does not work. Also did -purge Regapps, still can not edit text.
View 7 Replies
View Related
Mar 6, 2012
Is there a way to subtract and object but it doesn't erase the original object?
I have a way of doing this by copying an object and placing it in the original position. Than subtract a single object leaving the copy of the object behind.
I wondered if there is a way to accomplish this with less steps.
View 5 Replies
View Related
Oct 8, 2013
I have 200+ page drawings and need to open each dwg to erase same block and text strings. Any way to batch erase same blocks and strings in multi-pages?
View 7 Replies
View Related
Jun 22, 2012
I have only one user with this problem. He tries to edit an attribute block and when he selects one of the values and erases it the default value doesn't erase. He then has to enter some text and erase that and it works.
View 3 Replies
View Related
Apr 14, 2012
how to erase a shadow - I am taking photos of small steel pieces to put on my website.Using the erase tool is sooo slow..Photoshop cs5 extended
View 4 Replies
View Related