AutoCad :: Insert Block - Switch Between Base-point And 0,0,0 Point?
Apr 29, 2013
I'm inserting blocks into my drawing and the block has a basepoint and a 0,0,0 point. The CAD guy who usually works with me is off today but he has a keyboard method of switching between the 2 points when inserting the block.
Its a fairly straight forward thing on his keyboard, nothing he has set up but standard in autocad.
I've had a try hitting a few keyboard buttons this morning but can't seem to do it.
View 1 Replies
ADVERTISEMENT
May 28, 2013
I have been using copy paste with base point on block from drawing to drawing but sometimes the block insert but it is not showing. I go to insert block is there but does not show in the drawing. Then tried to purge it and it does not let me because it is in the drawing but I can find it any where. Then I tried to do the insert block look for the block and inserted as a block and the same result.
View 3 Replies
View Related
Aug 22, 2013
is it possible to create a block so that the base point is the only snap point on the block?
In other words supose I have a block of a simple rectangle with the base point in the center.
If I try to snap to the block, I will be able to snap to all the corners, but not the base point. I know that i can put a point at the base point, but can I turn off the snap to the corners (just for the block) in other words, have an object that is unsnapable to without turning the snap mode off.
View 7 Replies
View Related
Sep 26, 2012
trying to insert point instead of block.
(setq blok (entget (car (entsel))))
(setq point (cdr (assoc 10 blok)))
(setq XX (rtos (car point) 2 20)) ;; x koordinata bloka
(setq YY (rtos (cadr point) 2 20)) ;; y koordinata bloka
(setq ZZ (rtos (caddr point) 2 20)) ;; z koordinata bloka
(command "point" xx,yy,zz) is not working
!xx="5582453.414999999" but when i (atoi xx) i get 5582453 no dedimals...
how to create valid insertation point from xx, yy and zz?
View 6 Replies
View Related
Jan 25, 2013
Can I scale up a 100+ blocks at once and have each base point as the blocks insert point?
View 9 Replies
View Related
Mar 20, 2009
I want to move the base point of a block in the block editor. However, when I move it, the block moves accordingly in the drawing.
How can i move the base point in the editor, so that the block stays at the same position in the drawing.
View 8 Replies
View Related
Feb 14, 2012
I received a 3rd party drawing which contains a block to indicate directions. The block does not display its base point and I am unable to find it. why this block is not displaying the base point.
View 9 Replies
View Related
Apr 2, 2013
I write a program, this program needs to insert some standard illustrations. I made these standard illustrations into different blocks. And I store these blocks in a dwg file. Everytime I need to insert some illustrations, I just click the mouse on the current drawing, I want the illustration inserted. These means the following points:
(1) Import the blocks to the current drawing, if the blocks have already been imported, then do nothing.
(2) Specify the insert point by clicking the mouse, and I want the block's insert point to coincide with the mouse clicking point.
View 1 Replies
View Related
Jul 31, 2011
I have lots of block in a file in different places. How to change the base point of that block with out changing the position of that?
View 1 Replies
View Related
Jun 4, 2012
What method of block base point selection do you mostly use:
Screen selction point
WCS 0,0,0 point
View 9 Replies
View Related
Sep 26, 2013
What's the difference between the "Point" Parameter and the "Base Point" Parameter in the Block Authoring Parameter Pallet?
HP DV7 Laptop
Intel Core i7-3820QM 3rd Generation Quad Core 2.7 GHZ CPU
16 GB DDR3 RAM ( 2 DIMM ) / 180 GB SSD
Nvidia GeForce 650M Graphics w/2 GB Memory
Windows 7 Professional 64 bit / AutoCAD Civil 3D 2014
View 6 Replies
View Related
Apr 18, 2013
I am learning autolips and i found a problem that i can´t solved.
(vl-load-com)(defun c:pmb ( / ss ent pt )(prompt "
selec block : ")(setq ss (ssget '((0 . "INSERT")))) (setq ent (ssname ss 0)), (setq pt (cdr (assoc 10 (entget ent)))) (command "point" pt))
wich this code you select one block and insert one point at insert point´s block.
which this other code yo select all block and insert all point.... but in one block
(vl-load-com) (defun c:pmb11 ( / sele cod bloque nbloque lista pt ) (prompt "
block: ") (setq sele (ssget ( List'(0 . "INSERT"))) Cod 0 )cod (1+ cod) (repeat (sslength sele) (setq bloque (ssname sele cod)) (setq pt (cdr (assoc 10 ( entget bloque)))) (command "punto" pt) );repeat )
View 4 Replies
View Related
May 1, 2013
In previous versions of AutoCad I would just double click on a block do my changes click the save changes button and then a save dialogue would come up with an option to change the insert point. Did this option go away in 2013 AutoCAD? I do not get this option anymore after I finish editing a block? This is very useful. Why would this go away?
View 6 Replies
View Related
May 4, 2012
I have a drawing where I have placed all of my natural gas piping. I have all of the annotative blocks set to 3/32"=1'-0" and 1/32"=1'-0" scales. They are both correctly displayed in this drawing.
When I xref this drawing into another about half of the 1/32" blocks show up correctly. The other half are shifted to the right off of the plan. All of the 3/32" blocks show up correctly.
View 9 Replies
View Related
Apr 19, 2013
I need a routine that inserts a point at the insert point or block named "Insert_Point" at every block in the file. The routine could use the current layer, which would be set prior to starting the routine. If it could request the user for the PDMode value and PDSize that would be great too. This will assist me in creating block libraries.
View 9 Replies
View Related
Dec 3, 2013
I have excel tables that contain 4 columns of data.
The Y co-ords pf the required object
The X co-ords pf the required object
The rotation of the required object
The object number
What would I need to do to insert a block at the coordinates to the rotation shown then have a leader with the point number labeling the block (but the text not be rotated to the angle of the main block.
View 2 Replies
View Related
Apr 3, 2013
I want to add a point after the last point of a polyline. But this point really is the first point and the command insert vertex really insert a new point.So, a solution , reverse the polyline to insert points after the last vertex.
Nobody thought ever to offer a insert_first and add_last commands ?
View 9 Replies
View Related
May 8, 2013
I have a lisp routine that I would like to add to. Right now when running the macro the user is not prompted to "Pick Point On Line" in this example
(command "insert" blk "s" var1 pause pause))
I have added the line
(setq pt1 (entsel "Pick Point On Line "))
(command "insert" blk pt1 "s" var1 pause pause))
but the command doesn't seem to like my PT1 value
BLK and VAR1 are set in another lisp routine.
View 9 Replies
View Related
May 20, 2011
I am just trying to migrate from VBA to VB.net, I want to know, how we can manipulate the Ctrl+Shift+C, in vb.net, if it is not possible at all, then what is the best way I can find the alternate to this.
OR
If I try to use the wblockclone() then, how do I control the location of the objectcollection when I clone it in my new drawing.
in other words, when I in the proces of clonning I should be able to specify a base point.
View 3 Replies
View Related
Jan 11, 2012
I am taking some AutoCAD classes at the local community college, using AutoCAD 2012.
Using previous versions of AutoCAD the copy with base point is in the on screen right click drop down window.
To use the Copy With Base Point The Clip Board icon needs to be selected. How to get the Copy with Base Point and other paste commands in the drop down window as in all previous versions.
View 5 Replies
View Related
Jun 27, 2013
How Can i Get the distance between two base point of any two block in any UCS and WCS
View 3 Replies
View Related
Sep 13, 2012
Having problem of trying to Move, Copy, Stretch etc an object and instead of being able to select a base point...Displacement (which is the default at the command prompt) is somehow selected and your object goes off to coordinate points? It's probably just a setting or its my mouse, but I didn't change anything and I'm just starting to see the problem.
View 2 Replies
View Related
Jun 21, 2011
We have upgraded to AutoCAD Mechanical 2012, and I am having a little trouble finding where AutoDesk has relocated a few of the 2009 commands.
Where is the new location for Copy With Base Point? I used to go EDIT > Copy With Base Point.
I am enjoying a lot of the new features of AM 2012. It will just take a while to get used to where everything is at.
View 2 Replies
View Related
Feb 1, 2012
Is it possible to copy text using a base point in an idw? As I have been doing for years in AutoCAD...
Inventor Professional 2014.
Windows 7 64 bit.
View 9 Replies
View Related
Nov 11, 2013
When I'm copying an object like a bubble note callout (number 1 with a circle around it) I want to be able to snap to the end of the text string so I can copy it uniformly and spaced evenly.
View 2 Replies
View Related
Jul 23, 2013
I encounter this.... after i select object for scaling, can't select base point.
View 2 Replies
View Related
Aug 11, 2005
Currently, I have the base or insertion point of some of my blocks in an undesirable spot and I would like to move it. When I insert a drawing or block I have difficulty in placement due to a poor choice in the drawing or block I am trying to insert.
View 6 Replies
View Related
Mar 16, 2012
When I download a drawing from some suppliers I find that I cannot do a "copy with base point" and paste that copy into my drawing except using "paste special" which leaves me with an unmanageable image. The source drawing has all the normal (it seems) attributes of a .dwg file and can be edited as a normal drawing; it just refuses to be "pasted" into my drawing. What am I missing here!
View 5 Replies
View Related
Mar 24, 2011
I am in the process of converting some static blocks to dynamic blocks. My procedure has been:
1) cut the drawing out of model space.
2) erase all
3) purge all
4) open the block editor and paste drawing in
5) set the base point to 0,0
But when I insert the block in another drawing the base point shifts. I have included the block (_beam.dwg) and the block inserted (dwg.dwg)
Why? I must be missing a setting, property or something.
View 4 Replies
View Related
May 12, 2011
I meet a problem in autocad2010. the normal situation is : the base point is in the line of extended line for dimension. see the picture.
but in my condition,the base point is offset from the extended line .see the picture. how can I solve this?
View 8 Replies
View Related
Oct 3, 2012
I would like to easily update an xref which has moved base point. I work doing mechanical and electrical drawings and we draw our stuff with the Architect's background xref 'd in. Sometimes though, they will change the base point for no reason and all the m&e stuff is miles away. There are two things I can do, I can moved their xref they sent us to match the old location or I can move the m&e stuff to suit the new location (i normally do this because i want to use their base point which is the right thing to do, but i would have to move all the things in all the m&e drawings to suit). Is it better to update an xref that has moved base point but without all the hassle?
View 9 Replies
View Related