AutoCad 2D :: How To Delete Specific Object Type
Nov 9, 2013
I have a big complicated mesh surface and under every mesh edge there is a line (I have imported it from another software). Now I want to delete lines but I cant select them one by one because it take too long.
View 4 Replies
ADVERTISEMENT
Feb 13, 2013
I need to delete a specific block from current opened drawing by LISP command.
for example removing XREF attached is very easy:
(COMMAND "-XREF" "D" "FRAME")
I can remove "FRAME" XREF from drawing. Now, I want to delete a/all block with "TB12" name with same action!
(command "BlockDelete" "TB12")
so, how can I delete a/all block with specific name in current drawing?
View 9 Replies
View Related
Aug 21, 2012
I'm trying to extrude some text with the font type "CommercialScript BT". In Inventor 2011 this was not a problem. In Inventor 2012 and 2013 I get the error:
Create extruded feature failed
Part4: Errors occurred during update
Extrusion3: Could not build this Extrusion
Self-intersecting loop found in this profile. Remove the intersection by adding a sketch point at curve intersections or by changing non-profile geometry to construction geometry.
Is there a way to solve this? I have tried to extrude other fonts without any problem. I can also extrude one single letter with the font "CommercialScript BT" without any problem but as soon as I writes a word I get the error.
Autodesk Product Design Suite Ulitmate 2012 Sp1 / Vault Collaboration 2012 Sp1
HP EliteBook 8560w
Intel(R)Core(TM) i7 CPU Q 720 @ 2,0GHz 2,0GHz
16GB RAM
Windows 7 X64 SP1
View 5 Replies
View Related
Apr 25, 2011
In autocad 2011 ... I am looking for some sample code to delete all blocks with specific names in a multi layout drawing. There may be multiple blocks with the same name.
This is what I have so far ... this code collects the objects and loops through the layouts and the blocks ... if it finds the text "REVBLK" in the block name ... I want it to delete the block ... it does delete some of them but not all of the blocks ...
Dim E1 As Object
Dim ATS As Variant
Dim EA As AcadAttributeReference
Dim objLayouts As AcadLayouts
Dim LayerNextNo As Integer
Set objLayouts = ThisDrawing.Layouts
LayerNextNo = ThisDrawing.ActiveLayout.TabOrder
[code]....
View 1 Replies
View Related
Sep 27, 2013
When assigning materials to a part in inventor the process is simple, however when one wishes to assign a specific steel type ie ASTM A516 as opposed to just a generic steel then this is where it gets a little more complicated.
This specific steel type will also need to be called up in the parts list relevant to the individual part that it is attached to.
I know that a custom material can be added to the favourites section in the materials library,and this can be done if required.
Have i delved deep enough into the inventor materials library , do the basic steel and others materials ie plastics break down into specific types with their elastic properties,yield stresses etc etc in other words a more comprehensive materials library or is this something that must be created by custom material input.
View 2 Replies
View Related
Aug 25, 2005
I need a LISP routine that could delete specific blocks from drawings. I have over 100 drawings, each having 4 blocks that I need to get rid of.
View 9 Replies
View Related
Aug 29, 2013
I'm trying to delete a material called "Generic" from a part.. I can't delete the material (delete greyed out) I try to add another material to the document and I still can't delete the "Generic" material... I added a new material from the drop down box at the top... It says the correct material but when i open the material library dialog again it says "generic" instead of the proper material name that I selected... Is this a bug? See picture.
View 9 Replies
View Related
Dec 7, 2011
I've had a simple lisp I've been using for years that suddenly disappeared. It required that you identify a block name, tag name, and the value that you want the tag to be. All of this is performed via command line, so it is scriptable. Since I lost it, I've been experimenting with -attedit. This command comes frustratingly close to what I'm looking for, except it only appends an existing tag, or replaces a specific string within the tag; I can't get it to replace the entire tag, regardless of its value.
1> Any lisp routine that does what I describe?
or
2> How to make -attedit replace a tag value without regard to what the value currently is (like a * wildcard)?
View 9 Replies
View Related
Oct 23, 2012
How to delete all ik handle nodes in a scene and all constrain nodes in a scene.
My rig is so complex that going in and deleting one by one seems like a crazy process but if there was a way to get the outliner to show only ik_handles and or constrain nodes then I could just select them and delete them and this would save me a lot of time.
View 1 Replies
View Related
Feb 5, 2013
I have two shapes overlapped (a circle and a star be to be exact). A triangular are of the star is overlapping the circle.
How can I merge the two shapes in order to delete specific paths? Thus creating a pie-like shape (circle, with the triangular section cut out of it).
View 4 Replies
View Related
May 13, 2013
I made a model and i want to place it in 4200sqft . How to do that ?
View 6 Replies
View Related
Mar 2, 2012
When trying to move to an object to a specific coordinate autocad2012 puts @ in automatically. How setvar do i use to remove this unnecesarry hurdle
View 1 Replies
View Related
Dec 14, 2008
I need to export out of Map into MapInfo. My problem is I need the object data to export out into a specific order. At the moment I can only get it to export in alphabetic order which is no good for me. Is there any way I can reorder the object data into the order I want?
View 9 Replies
View Related
Jan 24, 2012
I have the same block repeated multiple times in a drawing, and I want to delete the last attribute in all of the specific blocks. When I edit the block in block editor, the attributes do not show up. After I explode the block, there is no text. The attached image shows the properties of the block.
View 9 Replies
View Related
Feb 24, 2010
How do I draw perpendicular from a line or object at a specific point? I know by holding shift and osnap perpendicular I can draw the line but I can not osnap to the exact point!
View 9 Replies
View Related
Apr 16, 2012
I am using AutoCAD 2008 and I have a layer that contains no objects which I cannot delete. If I try I am told there are objects on the layer but I cannot find any at all. I have turned off all other layers to try to find the object I need to delete but there is none. How to manage to get rid of the layer.
View 8 Replies
View Related
Sep 18, 2012
How can we define new object type in c#.net?
View 2 Replies
View Related
Apr 25, 2012
I'm quite new to .NET in AutoCAD, in an Acad plug-in, I need to get the list of standards associated to the current drawing
So far, I've got:
Dim nod As DBDictionary = tr.GetObject(db.NamedObjectsDictionaryId, OpenMode.ForRead)Dim id As ObjectId = nod.Item("AcStStandard")
I do get the object ID of the AcstStandard dictinary. So far so good, but then ???
Can't seem to find an object type to do the tr.GetObject(id, OpenMode.ForRead)
There's stuff for layouts etc... but not for standards.
View 7 Replies
View Related
Feb 13, 2011
1. AutoCAD 2011, new user & new install. I’m going throught the tutorials and have lost ability to repeat past ability to do tasks. One being to highlight an object and then delete using the Delete key. Second example being lost is to left click a drawn line and then to hit delete. Is this a setup problem?
View 4 Replies
View Related
Feb 27, 2013
Is there a way to get the type of the Solid3d object and its parameters?
E.g. Type = Box, Height = 100, Width = 200, Length = 100 (Or something like that)
View 8 Replies
View Related
Sep 7, 2011
Using AutoCAD from another drafting program and trying to determine if AutoCAD has a feature I have become used to. The program I am using is Vectorworks and they have these items called loci. They are basically just snap points that do not print and are not actually geometry. They are great though for aligning items and referencing points. Is there a similar item in autocad?
View 1 Replies
View Related
Oct 25, 2011
How to delete duplicate or overlap point object? I tried with overkill command, But I didn't get output.
View 5 Replies
View Related
Oct 31, 2007
i have a vb.net dll in network drive,everything is OK except on one machine which installed bluebeam, error msg as below:
Unable to cast object of type 'Bluebeam.Interop.acad16.AcadDocumentClass' to type 'Autodesk.AutoCAD.Interop.IAcadDocument'.
in my code,nothing is related to Bluebeam.
View 2 Replies
View Related
Nov 5, 2013
If I want to place an object in illustrator cs6 on a specific place (for example rectangle, left above corner on X=14mm) and I fill this value in the transform field and I tap the enter button, illustrator places the object on X=14,033.
Why does illustrator do this and how can I avoid that illustrator adjusts my specific X / Y values?
View 5 Replies
View Related
Aug 12, 2013
I would like to iterate all entity in Block and display the type of the object. For example: LINE, BLOCK REFERENCE, LWPOLYLINE, TEXT . . . .
I currently have:
For Each Ent as ObjectId In CurrBTR Debug.pring (Ent . . . .)Next
View 3 Replies
View Related
Nov 22, 2012
Any alternative way to increment an objects specific R, G or B color value? What I am trying to accomplish is to take a group of objects and increment the red, green or blue value by 5 without effecting the other values.
This has to be an increment on all existing values of each individual object. So if 3 objects have 3 different RGB's but I want to increase the RED on all of them by 5.
EXAMPLE
Object 1 : R-35 G-35 B-35
Changed to R-40 G-35 B-35
Object 2 : R-55 G-100 B-150
Changed to R-60 G-100 B-150
ETC....
I know this sounds specific but I am trying to create an RGB table the easiest way possible. In this example I`m referring to RGB but it could be for CMYK as well.
View 5 Replies
View Related
Nov 3, 2011
So simple question. How to clone an object by a specific distance?
e.g I want to clone an object by 200mm on Y cleanly (and make 10 copies)
i7 2600 3.4ghz/16gb DDR3/GTX 560/2x DELL U2311H 23''
View 4 Replies
View Related
Nov 16, 2011
i have problem with hatch,if i delete any lines from related hatch protion object area, my all related hatch object erased.pls guide me how to solve problem.
View 6 Replies
View Related
Aug 6, 2013
I discovered yesterday my burst lisp routine isn't working. It gives the following error message:
bad argument type: VLA-object collection: #<VLA-OBJECT 0971e1d4>
The routine does not appear to have changed. But here is the
(Defun C:BURST (/ item bitset bump att-text lastent burst-one burst BCNT BLAYER BCOLOR ELAST BLTYPE ETYPE PSFLAG ENAME ) ;----------------------------------------------------- ; Item from association list ;----------------------------------------------------- (Defun ITEM (N E) (CDR (Assoc N E))) ;----------------------------------------------------- ; Error Handler ;----------------------------------------------------- (acet-error-init (list (list "cmdecho" 0 "highlight" 1 ) T ;flag. True means use undo for error clean up. );list );acet-error-init ;----------------------------------------------------- ; BIT SET ;----------------------------------------------------- (Defun BITSET (A B) (= (Boole 1 A B) B)) ;----------------------------------------------------- ; BUMP ;----------------------------------------------------- (Setq bcnt 0) (Defun bump (prmpt) (Princ (Nth bcnt '("
-" "
\" "
[code]....
View 6 Replies
View Related
Jun 12, 2013
Civil 3D 2013
Windows 7 x64
I've found several people that had this problem through searching, but none of the fixes worked for me. I'm unable to use the quick select feature as it does not list anything other than "multiple". I've tried different files, different selections, repaired the installation, complete reinstall, updated with SP1 and hotfix 3 to no avail. I also have Autocad 2007 with SP 1 installed, as well as Autocad Architecture 2014, if that makes a difference.
View 9 Replies
View Related
Aug 24, 2012
How to change the colour of a specific object in an image.
View 3 Replies
View Related