AutoCad 2D :: Move Multiple Selected Objects Together And Snap Them To Endpoint?

Oct 17, 2012

I have tried using the hot grips selection by holding shift, but some of the grips are overlapping and I can only select the top most grip. It is also a slow process because I must click each individual grip that I want to move as a whole. Is there a way of selecting multiple grips at once including grips that are beneath others?

View 1 Replies


ADVERTISEMENT

AutoCAD Visual LISP / AutoLISP :: Move Existing Objects To Snap Grid?

Dec 22, 2012

I have a slightly unusual query that I can't seem to find a solution for elsewhere. I have an existing OS plan that is 'off grid', and would like to adjust the vertices at the ends of all the existing lines and polylines so that they all sit on a grid point, ie round all vertices to the nearest whole number. Is there a quick command or script that does this?

View 2 Replies View Related

Photoshop :: Why Won't Move Tool Snap Objects

Dec 4, 2012

Move tool was always snapping objects I'm moving before... What I meant by snap is, for example, I'll move an object right beside the left end of the document, it'll snap. And if ever I want to add a tiny bit of space between those two, I'll hold ctrl so it'll get rid of that 'snap' function.
 
Since the time I upgraded to CS6 Extended, It was working fine for a while. Until days ago, the problem started occuring. It won't snap anymore.

View 2 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Move Selected Objects By Value Of Their X Or Y Properties

Nov 23, 2012

I need a program to move some selected text to a line something like as extend command but for text objects!

suppose that there is a horizental line (y=constant) or vertical line (x=constant) and some selected text(or other objects), I want a lisp program that move these selected text (or objects) by their "insertion point" to this line.

in other word, if the selected base line is horizental (y=constant) then property of "Y" of all selected text should change to line's "Y"; and if selected base line is vertical (x=constant) then value of "X" of all selected text should match to line's "X" value.

for example, for base vertical line (x=constant) and 3 selected text(or can be any object) result is:

text1.          |                        text1.|

  text2.        |         ===>       text2.|

    text3.      |                        text3.|

|  .text1                                 |.text1

|    .text2                ===>       |.text2

|      .text3                             |.text3

View 9 Replies View Related

Illustrator :: Cannot Move Selected Objects In CS5.5

Oct 21, 2013

I'm using Illustrator CS5.5.
 
I cannot move anything I select. I try to drag it and it makes the "bump" noise. 

-I made sure that my preferences are not set to "object selection by path only".

-I've restarted my computer several times

-I tried to open a previous Illustrator file and I have the same problem

-I even uninstalled and reinstalled my entire Abode Suite beacuse I've been having several issues
 
I'm not sure if this is related but I also can't create a new document unless I use picas and CMYK coloring. It refuses to adjust to anything other than the default settings. Also, I can't increase the stroke of an object unless I type in the number, meaning I can't use the arrows for adjustment.

View 5 Replies View Related

AutoCad :: Text Editing With Multiple Objects Selected?

Dec 22, 2011

I was wondering if there is a way to edit single line text when there are multiple objects selected. I have multiple text which need their justification edited but there are non-text items amongst them. Instead of clicking on each of them I would like to just select the area and then edit the text as required.

View 3 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Select Several Objects And Get Starting / Endpoint Of Each One

May 4, 2013

I want to make it so that I can keep selecting several objects and get all the starting points and endpoints of each one with (setq ent (entsel))

(Defun c:demo (/ ent)
(setq ent (entsel))
(princ)
)

View 9 Replies View Related

Illustrator :: Multiple Objects Selected - Scale In 2 Dimension

Aug 12, 2013

Scale Stroke and Effects Option Odd Behaviours. If multiple objects selected and they're scaled in only one dimension, Illustrator assumes this to be a scale in 2 dimensions. 
 
Is there a work around for this?

View 14 Replies View Related

Photoshop :: Move Multiple 3d Objects Together

Jan 12, 2009

expansion of the 3D toolset within PS CS4. It is *not* a 3D app, which is fine, but it does make texturing imported 3D objects considerably easier. It essentially simplifies the ZApplink workflow using ZBrush while maintaining your layers [rather than flattening to export back to ZBrush]

Now for my question...

I have imported 3 separate OBJ files as 3D layers. Is there any way to move all 3 objects on the canvas together? As it is, I can only move them independently which throws them out of registration with each other.

I have tried selecting all of the layers at once [shift-click] but the manipulation tools get nulled out. Same thing happens when I group the layers together. I am also not seeing any way to link the layers like you can with a pair of 2D layers.

[also... in order to get all three objects imported with the same scale and registration, I exported a pair of planes above and below each asset to create a bounding box.]

View 2 Replies View Related

Premiere Pro :: Move And Resize Multiple Or Grouped Objects

Feb 17, 2014

Why can't I just highlight multiple objects and move or resize them together? This wasn't a problem in previous versions, but now when I select more than one clip (or grouped objects), the effect controls go away.  I have a lower third (the title and 2 different cropped color mattes) that I want to be able to move and resize while maintaining their relationship, and I can't figure it out. I've been using Premiere for a long time, and this is a huge inconvenience.  I also cannot highlight multiple clips, and adjust their length together.  Sometimes it will work (rarely), but most of the time it will only adjust one at a time.  It's a real nuissance when you have upwards of ten layers you need to adjust together.

View 5 Replies View Related

Maya Animation :: How To Displace / Translate And Move Multiple Objects

May 5, 2011

I´d like to know how to move/displace multiple objects (in this case bricks) like it is done in this animation (at approx. 0:15 sec) [URL].I tried to reconstruct the effect using bigger bricks and tangent constraints, which worked kinda ok but I had to constrain every single brick manually which was rather time consuming and definitely not the approach they must have had used. Is there a way to achieve similar effect (pref. without scripting)?

View 4 Replies View Related

3ds Max :: Scale Multiple Objects At Once Without Making Them Move Along The Axis Being Scaled

Jul 8, 2011

I have several pillars that I want to scale down to the same size, but I don't want to have to scale them individually or reposition them once I'm done. Is there any way to scale them all without making them move along the axis being scaled? (I should have made them instances of each other. My only problem there is that I couldn't reposition one pillar without moving the others. for future reference, is there a way to temporarily break the instance relationship so on can be edited?)

View 2 Replies View Related

AutoCad :: Convert Multiple Single Text Objects Into Multiple Mtext Objects

Jul 3, 2013

I have long used the following lisp to convert multiple single text objects into multiple mtext objects (i.e. make each text entity into separate mtext entities).

; T2M - convert individual Texts/Dtexts to individual MTexts
; modified by Xanadu - www.xanadu.cz
;
(defun C:T2M (/ ss i elist)

[Code]....

However, the mtext entity always moves position slightly (compared to the original text entity) after converting the object. better lisp that converts multiple text entities into mtext entities (which are all separate still, i.e. not joined together) without the position of the entity changing?

View 4 Replies View Related

AutoCAD 2010 :: Using Break Switches Off Snap (Grid) For First Selected Point

Oct 6, 2011

I set a snap for ease of use, e.g. if my intended output scale is 1:50 I will set my snap to 25, this makes drawing lines fast and simple.

When I used the break command in previous versions (I skipped 2011) the break would keep the snap on so I could break either side of a line with a perfect unit gap.

In 2012 when I select the first point it disregards the snap and just puts the break wherever I select on the line meaning the gap is not neat. Is there anyway to put this back the way it was?

View 5 Replies View Related

Photoshop :: Move Tool Auto Select Is Not Capturing Multiple Objects Upon Drag / Select

Jun 18, 2013

I know this discussion title is a bit murky, but the problem is a bit odd.  I have Photoshop CS6 v13.1.2.  In this version, I will activate the Select Tool, check Auto-Select: Layer, check Show Transform Controls, and then while using the Select Tool I will drag to create a rectangle to select multiple layers with content within the specified area. 

Unfortunately, this action only works when I begin the selection from outside of the canvas area.  If started from within the canvas area, no rectangle will appear, it will show me a measurement of my selection size, and then no layers will be selected upon release.
 
This cannot be working as intended right?  I mean multi-select dragging cannot be intended to only work when started outside of the canvas right?  Is there some way to fix this issue?  Is this a bug?  See the images below for more information on this issue.

View 5 Replies View Related

AutoCAD LT :: Automatically Snap ALL Objects

Jun 3, 2013

I've inherited a dozen heavily detailed drawings only they have been drawn freehand and do not conform to any snap mode or grid. Unfortunately the objects are not all out by a certain amount, so to adjust the entire drawing to conform to the nearest snap point I need to pretty much go through every single object and snap it to the nearest point, which will take weeks.

I've googled around a bit and have found a lisp that may potentially work however I'm running 2004 LT so therefore can't test this lisp until I find someone with a full version.

I'm sure I can find someone with a full copy of Autocad even if it means borrowing their computer just to re-align the objects. I've yet to test out the lisp I found [URL] .... although this lisp seems to suggest it will work with text objects, unfortunately my drawings include a range of objects including text, rectangles, plines etc.

I've taken a look at DotSoft's 'ToolPac' and will buy it if needed as it will apparently align all objects to the nearest snap, but I thought I'd check to see if there was any other easier/cheaper ways of doing it first.

View 2 Replies View Related

AutoCad 2D :: How To Snap All Objects To New X / Y Grid (old Was 0.00 Precision Now 0)

Nov 14, 2012

I made a drawing which contains lots of circles with a diameter of 12 and some lines that connect them. Pretty simple.

But.. i made the drawing with a x.xx precision (2 numbers and the program that has to load the .dxf file only likes all objects on the x. precision.. so no tents or hundredths precision.

I changed the precision from "0.00" to "0" in the unit settings but... the objects in my drawing still hanging on the old coordinates.

Is there any simple function or way to bulk action all this objects to the correct precision grid? I worked out that it is possible to select the circles which are in 1 horizontal line with each other and then change the Y setting to (for example) 45.0 if it was at 45 In this way it will put the circles on the correct grid. But... i have 1400 circles and lines

I also saw that the X coordinates of the circles in a horizontal line are different (ofcourse) and will be mentioned in autocad with *VARIES* I thought maybe can do something like *VARIES*.0 to put them on the correct grid but this kind of things didn't work.

View 7 Replies View Related

AutoCAD 2013 :: 3D Objects Not Shown Where Their Snap Points Are

Oct 25, 2013

This problem has just started to occur and frankly, I'm totally stuck. When I created 3d objects to represents conduits runs in a building, they worked fine. However, when I saved and reopened my file, the objects  are shown in different locations, yet their snap points (endpoints, midpoints, arcs, etc) are shown in the correct location. I have attached an image showing what I mean to clarify. I am using Autocad 2014 and Civil 3D 2014.

View 1 Replies View Related

AutoCad 2D :: Selecting Multiple Snap Points

Feb 1, 2012

I want to move a few snap points on a line but not all of them... Usually I would shift + click each individual snap point and then move but when I have a lot of points it gets pretty time consuming.

If there was a way to drag select multiple snap points in a line.

View 4 Replies View Related

Maya Modeling :: Move / Scale Entire Item - Objects Move Separately

Dec 9, 2012

So a friend created a model using zbrush and exported several different *.OBJ files. I imported those to maya and added shaders. They all fit correctly together when imported.

some of those obj files required me to do a mesh->combine. so now it appears that not every item has the same reference point so that when I move or scale the entire item, some of the objects move seperately. I think it is only the ones I had to combine.

I tried freeze transformations, but when doing that, some of the objects lost their scale settings and still didnt move together as one unit.

View 2 Replies View Related

AutoCAD 2010 :: Moving Existing Drawing Objects To Snap Grid?

Dec 22, 2012

I have a slightly unusual query that I can't seem to find a solution for elsewhere. I have an existing OS plan that is 'off grid', and would like to adjust the vertices at the ends of all the existing lines and polylines so that they all sit on a grid point. Is there a quick command or script that does this?

View 2 Replies View Related

3ds Max Modeling :: Move And Snap Vertex Along Axis

Aug 16, 2011

I have read that this feature was removed(??) in 2011. How to do it in 2012?

Use Axis Constraints is ON in the Grid and Snap Settings but when i hoover over the vertex the snap goes away and a small circle shows up. When i click the vertex and drag it the axis constraints are turned off. I use the vertex snap all the time.

View 1 Replies View Related

3ds Max Modeling :: Multiple Vertices Selected At Multiple Positions (heights) In The Z Axis

Mar 25, 2013

Is there a way to have multiple vertices selected at multiple positions (heights) in the z axis and enter a value of 0 and have all of them jump to 0 in the z axis? Seems like a no brainer to me, but can find a way to do it.

View 9 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Disable Snap For Specific Objects Or Layer?

Nov 28, 2012

Is there a LISP code for disabling OSNAP for specific objects or layers?  An automatic disable for multileaders would be useful when fine tuning the text placement. Trouble is you need the snap for the leader end. Maybe you could disable the snap for the text grip only. 

View 1 Replies View Related

AutoCAD Print / Plot :: Multiple Viewports Multiple Objects

Sep 27, 2013

I have one layout. On that layout I want to have 2 viewports. I also have ssay block A and block B I want to insert.I would like Viewport1 to display block A and viewport 2 to display block B.

What happens to me is when I created Viewport 1 and inserted block A. I go on to create viewport 2. But viewport 2 displays only block A, which I cannon delete to insert block B.

View 1 Replies View Related

AutoCad 2D :: Move / Align And Rotate Text To Two Selected Points?

Nov 2, 2012

Any routine (perhaps a lisp) to move, rotate and align text with one swift command?

Something like this video below.

View 9 Replies View Related

Xara :: Get Objects To Snap To Bleed?

Jul 29, 2011

Is it possible to get objects to snap to the bleed?

I can only snap to the page but would have thought it a common requirement to snap background gradients / textures to the bleed size.

Of course a work around is to set up guides or draw my own bleed rectangle, but that rather defeats the point of offering a native bleed?

View 4 Replies View Related

AutoCAD .NET :: Save Selected Objects For Later Use

Feb 13, 2013

Is there any way to have a user select entities and then save that selection for later use not only in the current drawing session but also for later retrieval in another completely new session and even by someone else?  I anticipate the need to save the data out to an external file/database but I am not sure what to save out as I believ the object ids are session dependent.

View 6 Replies View Related

AutoCad :: Objects Appear Only When Area Is Selected

Nov 1, 2013

I am running autocadlt and opening up a very detailed drawing by an architect which was likely drawn on the most recent version of the autocad. When i go to select a certain area of the plan, elevation views appear in the background as i drag my selection with the mouse. The elevation views are not visible in the plan in the model space. All layers are on and unfrozen.

I am a surveyor and am trying to import the plan into my survey program (which only accepts files in autocad 2007 or earlier anyway). When I open the file in the survey program, for some reason the elevation views are showing and can not be turned off.

I tried to use the command erase, then "all" it tells me "2891 objects found, 19 not in current space". Does that have anything to do with it?

I have gone into the layer manager and selected all the layers and turned them on, and have unfrozen them

Did the proxygraphics command as well

Could it be because autocadlt???

View 8 Replies View Related

AutoCad :: Selected Objects Disappearing?

Nov 19, 2012

When working with large plant layouts I sometimes need to copy may things from different parts of the plant. Some large some small. When I zoom in to select the smaller objects i have lost lots of objects that were selected before.

View 8 Replies View Related

AutoCAD Visual LISP / AutoLISP :: How To Move The Selected Object Using ObjectDBX

Aug 7, 2013

Using Nentsel function, I can get info on a object that is nested with an Xref. Is there a way to move the selected object using ObjectDBX?

View 9 Replies View Related







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