AutoCAD LT :: Unable To Move An Entity Along Line A Specific Distance?

Apr 18, 2012

RE: Autocad LT not able to move an entity along a line a specific distance using cursor snap and dynamic input

What I want to do is move a line on an angle a certain distance in the direction of the line itself in this case 20mm

What used to happen is you'd simply select move and an endpoint on the line then hover over the mid or opposite endpoint of the line and enter 20 and it would move 20mm along the trajectory of the line.

The same set of actions now only seem to allow you to move the entity 100mm (the default value) along itself in the correct direction. If you enter 20 it does not move and if you enter 50 it moves 100!

View 9 Replies


ADVERTISEMENT

AutoCAD Visual LISP / AutoLISP :: Create New Double Line From Centerline According To Specific Distance

Jan 9, 2014

I have double line pipe drawings but i have to change distances between of this lines in entire drawing and i was thinking that maybe there is a lisp code which can create new double line according to my specify dimensions ...

example :

    Distance between lines : 100 mm

    ------------------------

    ------------------------

here is what i want to do :

1. select double line

2. specify new distance ( for example 200 mm)

3. lisp will create center line middle of the selected lines ( maybe it can ask me that this center line will be permanently or not )

4. lisp will create new double line from this centerline according to my specific distance

5. new double line layers will be the same with selected old double line

and this lisp has to work for double arc or quarter circles too.

View 7 Replies View Related

AutoCAD .NET :: Overrule Specific Sub Entity In Block And Not Showing The Base

Aug 11, 2012

Planning to overrule some of sub entities in a block. Let's make it simple . All lines and attributes in block should be circles and original block should not be seen. I came up with below code.

The code reacts differently if  I remove

MyBase.WorldDraw(drawable, Wd)

and my goal is not to show the real block. Just showing whatever is overruled.

Public Class toverrule Inherits Autodesk.AutoCAD.GraphicsInterface.DrawableOverrule Public Overrides Function WorldDraw(ByVal drawable As Autodesk.AutoCAD.GraphicsInterface.Drawable, ByVal Wd As Autodesk.AutoCAD.GraphicsInterface.WorldDraw) As Boolean Dim myBlock As BlockReference = CType(drawable, BlockReference) If Not myBlock.Database Is Nothing Then
[code].......

View 9 Replies View Related

AutoCAD Civil 3D :: Unable To UN-dock Or Move Command Line Window

Oct 23, 2012

Civil 3D 2013/ When I try to move or un-dock the command line window, a red circle with a line through it appears.

When I switch work spaces still the same result.

View 4 Replies View Related

GIMP :: Unable To Move A Selected Pencil Line

Aug 9, 2011

On a new transparent layer, I have drawn a straight line with the pencil tool. I select the Box Selection tool to select the whole line that I just drawn. I switch to the Move tool and made sure to move just the selection.

At this point, I would think that I would be able to move the line but only the box that is shown by the Box Selection tool moves. The line doesn't move at all. However, when I tell the Move tool to move the selected layer, the whole canvas moves, including the line. Why can't I just select just the line and move it?

View 2 Replies View Related

AutoCAD LT :: Unable To Select More Than One Entity

Jul 8, 2013

For some strange reason i'm suddenly unable to select more than one entity just by clicking with my mouse.

for eg if i select a line and try to select a second one ,the first automatically is deselected.

i'm only able to select multiple entities using the" cross windowing" or 'fulyl windowing' an entity.

this is only a recent occurence  and i suspect i may have inadvertently pressed some key.

View 5 Replies View Related

3ds Max Modeling :: How To Clone An Object By A Specific Distance

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

AutoCAD .NET :: Prompt Line Entity From The User?

Aug 16, 2012

How could I prompt a "two points" line entity from the user?

Something similar to " Editor.GetPoint() " ??

I was trying to use Editor.GetPoint() method two times. But this option does not show the preview of a line.

I also tried a combination of

doc.SendStringToExecute("line ");
db.ObjectAppended += new ObjectEventHandler(LineAppended);

but this option triggers LineAppended event handler as soon as I create the first point of a line. So it does not work.

View 1 Replies View Related

GIMP :: Draw Parallel Lines With Specific Distance

Nov 1, 2012

How do you draw parallel lines with a specific distance between them? I was gonna use this function for futuristic artwork. Do you have to use the grid for this or is there another way?

PS. is there a plugin maybe?

View 1 Replies View Related

Illustrator :: How To Repeat Object N Times Within Specific Distance

Sep 18, 2013

know if there is a tool like "Ofset" in AutoCAD for Adobe illustrator CS6? I need to repeat an object(let say a Rectangle) 100 times with a distance of 1 cm. I already find the "Transform Effect" function from Effect --> Distort & Transform but this function create a None- Editable copy of the selected object. What I need intact is a independent object which can be edited in future!

View 2 Replies View Related

AutoCAD .NET :: Select Entity With In Line Closed AND Not Using Editor?

Jan 1, 2014

I want to load file with database.ReadDwgFile

i dont want use editor (i don't want use CommandFlags.Session)

after the load in the database (see my code for xdb), i want to select all bloc within a closed line entity (within the xdb)

but how to do that whitout editor (editor..SelectWindowPolygon )

here my code for load each file , and mémorize all block for each file
 
Dim CollDocOuvert As New Collection For Each NomFichier In Fenetre.CollFichier 'recherche et extraction des blocs Dim Fichier As New IO.FileInfo(NomFichier) If Fichier.Exists = True Then GestionAUTOCAD.TxtOnLigneCOmmande("Gestion du

[Code]....

StatusLabelBar is a component of my form for write msg. is use me.refresh and a timer (1s) for refresh my form. (a trick i have found for do this [if you have better trick i take it.])

View 9 Replies View Related

AutoCad :: How To Move Object A Certain Distance From Original Location

Nov 14, 2012

When I want to move an object a certain distance from the original location, I go to long winded trouble of drawing a line and attaching it to say, for example, the centre of a circle. Then MOVE the circle, selecting the base line as the centre to the end of the LINE using OSNAP.

Is this how you Pro's do it, I'm guessing not.

View 8 Replies View Related

AutoCad 2D :: Move Circle Center Point To Middle Distance

Jul 8, 2013

How to move circle -centerpoint- to the middle of distance between two rectangles?

I am using autocad 2013.

View 9 Replies View Related

AutoCAD .NET :: If Selected Entity Xdata Contains Value Then Select Additional Entity

May 22, 2013

I would like to add additional entities to the selection if any of the selected entities contains a an xdata value.

If I put the condition into the ImpliedSelectionChanged reactor I imagine will probably loop back on itself.

View 9 Replies View Related

AutoCAD .NET :: Changing Distance Parameter In Dynamic Block Doesn't Move Attached Attributes

Aug 28, 2011

 I have this Dynamic Block which has a few  distance parameters on it and  an attribute at beginning of each parameter which are attached to a stretch action. If   manually bring the block in. And  set a value to attribute and then stretch the it , attribute move along with action. But when I do it pragmatically it doesn't . Basically attribute stays at original location of original block before stretch. What is wrong with my code. Or Shall I do something to Attributes when I change the distance parameters in Program? I don't know .

I have a function which bring the block in and set attribute first and then another call which change the distance . So I don't show the first function which to me works fine . The problem is this part.

For Each myBRP As DynamicBlockReferenceProperty In myBRC
For I = 1 To NumbderOfDistanceParamsinDynBlk
If myBRP.PropertyName = "Distance" & Trim(i.ToString) Then
myBRP.Value = DynDistancevalue(i)
End If
Next
Next

View 7 Replies View Related

AutoCAD .NET :: Break Line With Known Distance

Oct 6, 2011

I have to break a line/polyline with a known distance around a point of the line. I was thinking of  creating a circle with a specific radius and then trim the line inside the circle, then delete the circle but I could not find how to use trim in .net.

View 1 Replies View Related

AutoCad 2D :: Set Distance Between Text And Line

Oct 22, 2012

Is there a way in AutoCAD 2012 to set a distance between a line and the text above it? How to be able to mark all my bearings and set a distance so all of them ends up with the same distance from the line they refer to.

View 9 Replies View Related

3ds Max :: How To Move Mouse Away From A Distance To Select

Jul 5, 2011

I have a big problem with the viewport in 3ds max 2011/2012. On each viewport I have a black or white bars on right. these bar make the mouse become inaccurate for example when i want to select a vertex I can't drag the mouse on it and click. I have to move the mouse away from it a distance to select it (see my attachment image). I tried to update the graphic driver and the 3ds max 2012 SP1 but the problem's still there.

View 9 Replies View Related

AutoCAD 2013 :: Move Line The Square Move With It?

Jun 5, 2012

When I draw a square and then a line attached to the square and then try to move the line the line the square move with it. How can i avoid that

View 1 Replies View Related

AutoCAD 2013 :: Dimension Line Distance

Jan 22, 2013

I used direct-distance entry to place the dimensions 3/8 away from the object lines... needless to say, while most horizontal dimensions are 3/8 away, the vertical and inclined dimensions are not. see attached. other than creating construction geometry and physically moving the endpoints of the arrows to the correct location, is there any way of getting this precise and correct the first time i do it?

View 1 Replies View Related

AutoCad :: Displaying Distance In Command Line?

Jan 6, 2012

i have been using the DI command to get line lengths (of road widths, that sort of thing), and in the command line, it just gives the X, Y and Z distances, and not the actual length of the line.

how to change the displayed information so that the length of the line drawn with DI shows in the command line?

Also is there an option to choose what is displayed in the command line with DI command?

View 9 Replies View Related

AutoCad :: How To Move Object To A Specific Coordinate

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

Illustrator :: Move Object With Distance And Angle?

Jun 21, 2012

Illustrator CS6, menu object, transform, move: when I move an object using orizzontal value and vertical value (example 10 mm from X and 10 mm from Y) the value in distance and angle is correct (14,1421 of distance and -45° angle) but, when I want to use distance and the angle for drawing in isometric way (example: 10 mm distance and 30° angle) the orizzontal and vertical value is not correct as you can see in the attached file below

View 14 Replies View Related

AutoCad :: Place Start Of Line Certain Distance Away From End Of Another Endpoint?

Oct 22, 2013

I am look at a way to place the start of a line a certain distance away from the end of another endpoint. Is there a more productive way of doing this rather than drawing one line on the x axis and another on the y axis.

View 9 Replies View Related

Illustrator :: Move Object Using Distance And Angle Dialogs Only?

Oct 16, 2013

I am using Illustrator CS6. When I select an object and open the Move window (either by pressing the Enter key or selecting Object>Transform>Move), I try and move the object at a given angle and a given distance. I leave the Horizontal & Vertical dialogs blank and just fill in the information for the Distance and Angle. When I press OK (or Copy), nothing happens. In all previous versions of Illustrator, this feature worked perfectly. I can not get it to work in CS6.

View 1 Replies View Related

AutoCAD Architecture :: Set Distance / MEASUREGEOM Command To Label Line

Feb 22, 2013

m in the middle of a little project and want to know if its possible to save the info that the _MEASUREGEOM command displays when applied to measure distance or angle to the project.

I used to use a lisp script to do this but that was on my PC. Im not running autocad on my mac and it wont alow me to run the script. it loads it but then gives the error

 error: vl-load-com not supported on  "Mac OS X Version 10.8 (x86_64)"

when i try and apply the command. Does MEASUREGEOM have a built in feature to save these details to the project i.e. next to the line or shape measured?

View 2 Replies View Related

AutoCAD 2010 :: Distance Rubber Band Line Is Black

May 24, 2011

One drawing we have has a weird quirk. The rubber band line for the Distance command is black. The background of our AutoCAD is also black, which makes it very hard to see. This only seems to affect the Distance command as the rubber band for the Line command is grey (though the current layer is yellow).

I have confirmed this is limited to just one drawing, no matter what machine you open it on. The AutoCAD version we are using is Civil 3D 2011.

I have checked the following: DRAGMODE (auto), HIGHLIGHT (1), restored colors to default, made sure 3D views were not on, rendering off, UCS set to world.

Next step? Repairing the AutoCAD installation is not likely to fix the problem.

View 5 Replies View Related

AutoCad 2D :: Temporary Tracking Line On Distance Command Has Disappeared?

Nov 26, 2013

The temporary tracking line on the distance command has disappeared.

View 2 Replies View Related

AutoCAD 2010 :: Distance Command And Rubber Band Line

Jun 28, 2011

When I use the distance command and pick the first point the rubber band line doesn't appear and then when I pick the second point I get a distance, but I have no way of knowing exactly where the points I picked landed.

I saw another post about the rubber band being black against the black background, but that is not the problem.

When I turn Otrack on I get the rubber band, but I don't like Otrack on because it causes other problems. How to get the rubber band to work the way it did before?

View 9 Replies View Related

AutoCAD 2013 :: How To Edit Line Space Distance For Dimension Text

Apr 12, 2013

how to edit the line space distance for the dimension text. I can change the style, size and several other features.  But the line space distance is the one thing I can't seem to edit. The only solution I know of and use is exploding the dimension and then the text turns to mtext and the option becomes available.  But then if the section changes to a shorter/longer area, i have to go through several steps with the exploded lines.  how to edit the line space distance for the annotation in the dimensions. i have also attached a pic of my issue as well. 

C3D 2014 SP1
DELL Precision T3600
Intel Xeon E5-1650 @ 3.20GHz
NVIDIA QUADRO 4000 Dual Monitor
32 GB RAM / Win7 Pro 64-bit

View 9 Replies View Related

AutoCAD Inventor :: Simulation - Move Cylinder To Find Specific Surface

Nov 17, 2011

I am developing an assembly, however it needs to move a cylinder to find a specific surface.

How do I determine through simulation that dynamic surface will collide with one another?

View 3 Replies View Related







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