AutoCAD LT :: XRefs Cause Lag In Object Selection

May 22, 2012

I am working on a drawings with nested xrefs and am experiencing major delays when selecting objects using crossing windows. It is as if the computer thinks I am selelecting the xref even though the curser doesn't touch any visible exref entities. Basically, I click to start the window and the curser freezes for 10 to 20 seconds. I am experiencing the same problem with other commands (intermittenly) such as move, line, and offset. The exrefs are on a separate locked layer and have been moved to the back of the drawing.

View 2 Replies


ADVERTISEMENT

AutoCAD 2010 :: Selection Cycling With XREFs

Jun 14, 2010

When using selection cycling (which I think is brilliant, shame we didn't have it 15 years ago) with an xref attached the application slows right down to the point where moving the mouse results in the cross hairs jumping around and making using anything almost impossible.  Turning the xref off or turning selection cycling off restores performance to how it should be.  If both are on I just cannot use the program at all, shame really as this new feature is neat.  I use x'refs extensively so this fault restricts use of the new feature.

I am running a Quad core 6600 intel processor

4gb Ram
Nvidia Quadro NVS 290
32 bit Windows Vista Business

View 7 Replies View Related

AutoCad :: XRefs Detached And Reattached With Latest Model XRefs

Apr 22, 2013

i have a large number of drawings that need xrefs detached and re-attached with the latest model xrefs, any way to do them in bulk rather than opening each individual drawing? the problem started a while back, when opening drawings, ACAD is not loading the latest 'saved' model when opening drawings...

View 5 Replies View Related

AutoCAD .NET :: Read Object Properties Of Object In XRef By Selection?

Jul 3, 2012

Is it possible to select an object for reading in an XRef?

PS I think it has something to do with  Editor.SelectNestedEntity() but it is the end of a long day and I can't fathom it out

View 5 Replies View Related

AutoCAD 2010 :: Select Object And Pan To Another Selection - First Object Deselects

Jul 20, 2011

When I select an object and pan to make another selection the first object "deselects".  The object(s) will stay selected until I pan and as soon as I start to pan the grips go away and the object(s) is deselected.

View 9 Replies View Related

AutoCad :: Object Selection Cycling

Jun 25, 2011

Having problem with object selection when covered by other objects ie lines,arcs etc on a solid model---autocad 2011---did not seem to be a problem in 2006 version,but wondering if switching layers on and off is the only way?

View 9 Replies View Related

AutoCAD LT :: 2010 Object Selection Broken?

Oct 2, 2013

I cannot get the advanced select objects tools to work. 

I type:

select <enter>

wp <enter>

Make my polygon, and then I'm stuck in a single item select mode. If I hit enter, they all unselect and I can't do anything. Typing a command (like "m") does nothing.

Typing m <enter>, and then doing the selection yields the same result. At the end of my selection process and I hit <enter>, it sits in the single object selection mode (the little box cursor). Hitting <enter> here again makes the selection dissapear and I'm back to square one. 

View 3 Replies View Related

AutoCAD 2010 :: Object Selection Property Box

Mar 6, 2012

every time I select something a small box pops up in my way with the object's properties. I can't figure out how it became turned on, and don't know how to get rid of it.

View 4 Replies View Related

AutoCAD .NET :: Convert Selection To Graphic Object?

Jul 19, 2011

i need a code to  save user onscreen selection to jpg.

i think i will declare Graphic object and draw each entity in this object but what will i do for the text dimension complicated blocks.

View 2 Replies View Related

AutoCAD Civil 3D :: Tag Table Object Selection?

Jul 8, 2013

I've got a bunch of tags with a dedicated "tag mode" style, and if I select them individually I can add them to a table, no problem. However, if I try to do a mass selection of a swath of labeled lines or arcs i get the option to convert all non-tag labels to tag lables (I don't want that) OR don't add those labels not in tag mode (presumably keepin those that are). The problem I have is if I select the latter it deselcts everything. Am I missing something or does this not function as it implies (or at least how I wish it would)?

(running C3D 2012 sp4, Win7 64bit, 8GB)

View 2 Replies View Related

AutoCAD VB :: Adding Object To Selection Set By WorkSpace

Jul 18, 2012

I have a pice of code that select MText in my drawing. It looks that it select the MText in ALL my drawing and I am interested to choose the MText that is in the Model Space only.

The piece of code that I have is:

'Adding a Selection set in the drawing
Set objSS = ThisDrawing.SelectionSets.Add("TestSelectionSetOperator")
'Using 4 filters to store in objSS -Selection Set- MText which is located in the Layer Text_MSpace
ReDim intCodes(3): ReDim varCodeValues(3)
       
[Code] .....

How to add a criteria to choose the MText that is in ONLY in my model space?.

View 8 Replies View Related

AutoCAD Civil 3D :: Remove Object From Selection Set

Oct 23, 2012

How can I remove an object I just selected from a selection set?   I can't find the setting that allows this. Is it some combination of items check under the selection modes in the options menu?

View 2 Replies View Related

AutoCAD 2013 :: Two Clicks Required For Object Selection?

May 15, 2012

When selecting an object in 2013, entering the command and trying to select the object without moving the mouse will not select the object on the first pick.  You must select the object a second time before the object is selected and highlighted.

Steps to reproduce:

1) Hover over desired object

2) Enter command on keyboard (M, E, CO, etc...

3) Do not move the mouse and attempt to select the object

Nothing is selected or highlighted

4) Attempt to select the object a second time

Object is now selected and highlighted

The same thing occurs if you attempt to create a selection window or crossing window immediately after entering a command without moving the mouse and clicking the first point.

This does not occur in vanilla 2012.  I do have Raster Design installed with 2013, so not sure if the issue stems from the add-on or not.

View 6 Replies View Related

AutoCAD VB :: How To Reach 3D Object Volume With Solid Selection

Apr 28, 2012

I can use SolidSelection.Item  for 3D object's handles and but I can't take 3D object's volumes with SolidSelection.

Then I can put object 's handles(1EE) to a collection.  Can I use SolidSelection to keep my 3D volumes values? All sub-structure of my program works with SolidSelection Object.

Volume Codes;

For Each tEnt In ThisDrawing.ModelSpace
If TypeOf tEnt Is Acad3DSolid Then
Dim tEntSolid As Acad3DSolid
Set tEntSolid = tEnt
tmpVols1.Add (tEntSolid.Handle & "/" & tEntSolid.Volume)
End If
Next

I can't match with returned result of  these codes and SolidSelection.item(i)

For Each tEnt In ThisDrawing.ModelSpace
If TypeOf tEnt Is Acad3DSolid Then
Dim tEntSolid As Acad3DSolid
Set tEntSolid = tEnt
tmpVols1.Add (tEntSolid.Handle & "/" & tEntSolid.Volume)
[code]......

View 1 Replies View Related

AutoCAD 2013 :: Object Selection - Only Entire Drawing Option

Jan 12, 2013

I'm experiencing problems with selecting objects. Usually, when I double clicked multi line text, I could edit it, now I get a text: "select an MTEXT object:", which basically means I have to select it again.

Another example of this is quick selection tool. Usually I selected the objects, then went to quick select pop up screen and under "Apply to:" I selected "Current selection". Now, there's only "Entire drawing" option and if i want current selection, I have to re-select it again.

I checked all the selection options and stuff. I attached some screenshots.

View 2 Replies View Related

AutoCad 2D :: Selection Stretching / Zooming When Trying To Move Object In 2013

Aug 23, 2012

I have recently upgraded to 2013 from 2007 and I am having some weird trouble with the move command. I will try to explain.. I type the move command and then select a particular object I would like to move a little and it grabs some (not all) of other objects/lines near it and then stretches the lot in all directions! It actually doesn't allow me to move it at all without stretching/extending all these areas. I have tried everything I can think of and am not sure what I am missing. I thought it was somehow related to the polyline I was selecting, but it does it to single lines as well.

View 2 Replies View Related

AutoCAD 2010 :: Selection Modes Object Grouping Not Staying On

Feb 3, 2012

I can toggle "Selection Modes, Object Grouping" on by checking the box and save my file.  When I close AutoCAD 2012 and come back in Object Grouping is turned off again, even if I pull up the same drawing.  I can't seem to find a lisp function or command to turn this on.  Seems that my only option is to go back to the options each time and turn it on. I've got a registry entry or a lisp command I an issue to keep this turned on.

View 2 Replies View Related

AutoCAD 2010 :: Line / Object Selection Not Showing On Properties Tab?

Jul 6, 2012

We have this problem with nothing showing up in the properties tab when we select a line/object.

We have tried everything from here:

[URL]

But still can't get it work.

Is this more of a Windows issue rather than AutoCAD?  We are running Windows 7/64.

View 8 Replies View Related

AutoCAD 2010 :: Object Selection Not Showing On Properties Panel?

May 19, 2010

When objects are selected, they don't show up on the properties panel (or on the Quick Select panel either) It doesn't matter what method I use:

-Pick one object (lines, arcs, circles, blocks, etc), the Quick Properties flyout appears, but empty. Properties flyout show "no selection"

-Window-select object or objects. Quick Properties bar shows up empty again. Properties flyout show "no selection"

-Click on the Quick Select icon. It prompts me to pick geometry. I do. The Quick Select window comes up, but where it says "Object Type", it only has the option "Multiple", and not the normal list of the geometry you selected.

Have Autocad 2011, as well as Autocad 2010 and Inventor 2010 (trial license) on the same machine.

Intel Core2 Quad Q8200 2.34 GHz
8 GB RAM
Windows 7 Pro 64 bit

View 9 Replies View Related

AutoCAD Inventor :: Unable To Show Hidden Line Of Pattern By Direct Selection Of All Object

Dec 30, 2013

I am facing small problem with inverter drafting. I am unable to show hidden line of pattern by direct selection of all object . I have to select one by one item from pattern.

In my drawing there is tie rod item ( find attached file) i have shown hidden line of only this part . and i have to select all items one by one.

View 3 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Distribute Object (circle) In Selection Of Great Number Of Points?

Aug 6, 2013

How to distribute object (circle) in selection of great number of points?

View 5 Replies View Related

Illustrator :: Use Object As Selection Path?

Jul 25, 2012

I know in photoshop you can make shapes with the pen tool and then covert them into a selection path.I was wondering if there is such similar feature in Illustrator
 
For example with the picture I posted here, what I want to do is be able to select the objects that are in contact with the black object on top without having to individually select them or use the "lasso" tool
 
It would make things easier with a "Select all objects under or above" option, theres only the "Select next object under or above"

View 8 Replies View Related

3ds Max Animation :: Lock Sub-object Face Selection

Sep 6, 2013

I have a triangular shape that is against a thin surface. I need to move the pointed end around but I need for the wider end 'face selection' to stay put or be locked in space. The rig was made with bones and skin with constrain and look-at controllers on the bone and nub.
 
I've tried linking verts to point helpers with linked xform and I've tried every kind of contrasting I can find and I just can't get the result I need. My goal is to have the end faces lie on the thin purple wall and be perfectly locked to it so that when I move the point everything else follows but the faces against the wall to be rock solid. 
 
You'll see me move the pointed end around. Then you'll see me select the faces on the end.

View 1 Replies View Related

Illustrator :: Cc - Selection Automatic Of The Last Object Drawn?

Jan 20, 2014

I'm trying Illustrator CC. In old versions, the last objects drawn with brush or pencil was selected automatically, now we need to manually select the object for modify it. Is there a way to activate the automatic selection of the last object drawn?

View 1 Replies View Related

Illustrator :: Disable Object Selection By Effects?

Jun 21, 2012

In CS6, when you apply an effect that somehow expands the appearance of an object, for example by making multiple clones, all of these clones become selectable.  If you click on or drag-box an area that includes these clones, the original object will be selected.
 
is there a way to make CS6 only select an object if I click on the original vectors?

View 2 Replies View Related

Paint Shop Pro :: Creating A Selection In Floating Object

Sep 10, 2013

This is something that I could do very easy with PS, just CTRL + click in the layer and the object get a selection around it. How I can create a selection for an "floating" object? Sometimes I need to remove some pixels around the object I cant find a way to select the contour of the object again.

View 4 Replies View Related

Illustrator :: How To Regain Selection Box / Cannot Resize Any Selected Object

Dec 28, 2012

How do I regain my selection box? Cannot resize any selected object.

View 2 Replies View Related

Illustrator Scripting :: Determining KEY Object In A Selection Via JavaScript

Feb 20, 2013

Is there a way to determine which object in a selection is the key object? For example: draw 10 squares on a layer, select all of them, click on one of the 10 and it becomes the Key Object (heavy border) for things like Distribute Spacing on the Align pallete. I can determine that a particular object is selected via ActiveDocument.Selection.PathItem[n].Selected = true/false. But I can't figure out how to find out if this is the KeyObject. The ultimate goal is to modify the below script so that it uses the KeyObject as the reference and not the object on the bottom-most layer.
 
Here is the Script - from [URL]
 
mySelection = activeDocument.selection;
if (mySelection.length>0){
if (mySelection instanceof Array) {

[Code]....

View 3 Replies View Related

Photoshop :: Quick Selection Tool - Select Or Deselect Object

Mar 12, 2013

On one computer when I select my selection tool I have a circle with a + inside or - whichever I choose to select or deselect an object.  BUT, on my other computer I have a large cross hair type thing and I can't tell whether I am selecting or deselecting...  what the heck is going on!!

View 2 Replies View Related

Paint Shop Pro :: Selection Using History Pallet To Extract Object

Feb 8, 2012

What is made in an exact moment (2:50) of the tutorial bellow, in which "history" pallet is used together selection to extract object. It seems to bring a better result than using "object extractor" tool.

So, my question is related to handling the "history" pallet as showed in 2:50 tutorial. It seems the "undo" is applied to the first "selection" action, but I couldn't make as in the tutorial. My PSP version is X4 and the tutorial version is X2. I don't know if something has changed and I am unable to make it in PSPX4.

[URL] ...

View 3 Replies View Related

3ds Max :: Assign Material To Sub-object Selection In Poly Edit Mode

Sep 3, 2013

In mesh edit mode, when you assign a material to the selection, it works as expected, it assigns the material only to what is selected, for example, a face.

In poly edit mode, it works differently, if you try the same approach it assigns the material to the entire object and you have to deal with multi-materials and material IDs to achieve that, what is very boring and totally unintuitive imho.
Is there an option to make the poly editing mode work like the mesh editing mode, or at least another way to achieve the same result in a intuitive or at least 'visual' fashion?

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved