AutoCad :: Use Layout To Print - Scaling Drawing

May 25, 2011

Scale in Layout. I drew my drawing in mm , and I want to use Layout to print it like I saw in a video, but how do I scale my drawing? For example, the counter and shelf I drew is 1:1 in the Model workspace(1600 by 2000mm) but in Layout, for printing on to an A3 sized paper how do I get it to print in 1:40 or something of that sort?

Right now I'm printing by using Fit To Paper with the dimensions included, but I notice our contractors are using 1:30, 1:40 etc. , my boss doesn't mind since I include the dimensions but I reckon it might cause problems in the future.

And is it possible to just select anything in my selection window, even 3/4 of a line? Because right now, I can only select the whole line no matter what, I only want 1/2 of it because I want to cut the whole drawing in half and move it apart.

By the way, is it possible to customize the panel? Instead of switching between tabs constantly, can I make my own panel? I googled this and tried using CUI but it is confusing. I just want certain sections grouped into 1 bar. Like... Draw/Modify/Attach/Windows all on the first panel.

I really want to be able to type in certain commands without hitting Enter, is that possible? If I hit M, it will move the object without me hitting Enter. Can that be done? Maybe not M, maybe Alt+1 to move, Alt+2 to Scale etc. etc.

View 6 Replies


ADVERTISEMENT

AutoCad :: How To Set Drawing To Layout And Print It

May 22, 2011

how to set out a drawing to a Layout from model space?

View 7 Replies View Related

AutoCad :: How To Print Multiple Drawing In One Layout Combined

Jun 19, 2013

I want to print multiple drawing in a single layout (see picture) . It is possible in autocad to setup printing once? For example: One project contains 100 A3 drawing, one layout contains 20 A3 drawing. Up to now, i print to pdf separately, and i combined the 100 pdf in one file.

And i print from this file. (only in this way succeed to print collating multiple copies). But if the project changes, I could start all over again. Is there a solution to publish an combining the sheets to print immediately?

View 9 Replies View Related

AutoCad :: Print Or PDF Drawing In (8.5x11) Layout View?

Apr 5, 2012

My issue is this: While trying to print or pdf a drawing in (lets say 8.5x11) layout view, the edges get cut off. It looks as though the template I copied is too large to be printed in full. If this were the case, wouldn't it be the same even if I tried printing in extents? It still does the same thing printing in extents.

I am using Mechanical 2012.

View 9 Replies View Related

AutoCad :: Trying To Show Only Portion Of Drawing In Layout To Print

Feb 2, 2014

How to get only part of the drawing to show up to print. I've drawn a floor plan and have copied it several times. I have also drawn several patterns that represent a few different floor tile layouts and then put them over each floor plan and after some trimming I have a variety of options that someone can choose from for floor tile layout. I'd like to show each one on a separate sheet and of course when I go to layout the whole drawing comes over and how to only show one floor plan at a time.

View 4 Replies View Related

AutoCAD Print / Plot :: Why Drawing Plots Results Using Viewport Scale In Layout Is Not Accurate?

Oct 8, 2013

why the drawing plots results using the viewport scale in the layout is not accurate?               

View 1 Replies View Related

AutoCad 2D :: Scaling When Plotting In Layout Tab?

Sep 4, 2011

If I used millimeters as my UNITS, how can I scale them when plotting it into A1 or A0? How will I know the scale that I will use in Layout tab so that it will fit on the paper that I will used?

View 9 Replies View Related

AutoCAD 2010 :: Annotative Objects Not Scaling In Layout Viewports

Oct 30, 2012

After drawing in model space(1:1 Scale) I then dimension as needed using Annotative Dimensions, Multileaders and MText using the same 1:1 scale. But when I create the variuos viewports on my layout pages the dimensions aren't scaling to the viewport scale.

This is where it may be partly my fault; When I first started using annotative dimensions etc. a box would pop up asking what scale to use.  Because I am dimensioning in model space, rather than always seeing this text box I selected "Do not ask again" check box to always use 1:1 scaling.

These are some of the other settings in place;

ANNOAUTOSCALE = 4
Annotation Visibility = ON
Automatically Add Scales = ON

View 3 Replies View Related

AutoCAD Print / Plot :: How To Print Multiple Layout Pages In A Printer

Oct 14, 2012

I have multiple layout pages (58 pages) and would like to print them in a printer at once. How do I do that?

Currently, I open 1 layout at a time then print it 1 by 1, in which its killing me specially if I do have lots of drawings.

Publish does saving in DWF, PDF... But does not print in the printer.

View 3 Replies View Related

AutoCad :: 2012 Layout Print And Designjet T2300 / D Size Incorrect Print Rotation

Jun 13, 2012

I have a template with layouts of different sizes that had been working fine with a previous Xerox 6204. My D size and E size automatically oriented with the 36" side parallel to the roll feed. I have since moved to a job that got a Designjet T2300. On this machine the D size orients the 24" side parallel. This wastes 1' of paper on the left and uses 1' extra as it runs the 36" side perpendicular. I have been unable to rectify the problem. I have tried printing in portrait, that actually cut off some of the image. I have tried all types of rotation within the driver and layouts. Tech support had me going into the machine settings and set rotation to 90. Nothing. There is a warning that "HP utilities" is not installed. Could this be a remedy? When the tech came to set up the printer he installed the necessary drivers but mad no mention of this utility.

AC2012, HP desighjet T2300

View 1 Replies View Related

AutoCAD Print / Plot :: Change Print Limits Of A Layout

Sep 12, 2012

I’ve done it before in the past so I know its possible but I have forgotten how. See the attached image I would like to change the printable area of my paper space layout.

View 5 Replies View Related

AutoCad 2D :: Scaling Down 2D Drawing

May 20, 2013

I have a 2D drawing that is drawn if full scale, it is 26feet wide approximate and 20 feet tall. I need to scale down to fit on a 4 X 8 for a mockup, i have tried using the scale command, but to no avail.

View 9 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Insert Another Drawing Layout Tabs Contents In Current Drawing

Mar 7, 2013

I want to insert another drawing layout tabs contents in current drawing.

It's easy for MODEL tab, but for LAYOUT tabs, I dont know how!?

I prepared a code for INSERTING MODEL tab in current drawing:
 
(defun INS_DWG (TAB path dwg P / blk)(setq blk (strcat ""*" path dwg """));(setq N (vla-get-count (vla-get-layouts)));;Number of LAYOUT TABS in dwg(if (or(= TAB 0) (= TAB nil))(command "INSERT" blk P 1 0)); TAB=0 or omitted ==>Insert MODEL;(if (= TAB 1));==>Insert the 1st LAYOUT in dwg file;(if (= TAB 2));==>Insert the 2nd LAYOUT in dwg file;and so on....);;;usage:;;(INS_DWG 0 "c:\test\" "test.dwg" '(0 0))

View 8 Replies View Related

Lightroom :: Print Layout Not Matching Final Print

Sep 26, 2012

Epson 3880.
Lightroom 4.
Moutain Lion.
All current.
 
I am trying to print on 5x7 paper. I set the page setup to 5x7. I have the margins set to .2" on each side. The layout image inside Lr looks exactly how I want it to.Then I print. I end up with a .125" margin on the left and top, and a .625" margin on the right and bottom.

View 6 Replies View Related

AutoCAD 2013 :: Scaling A 3D Drawing

Oct 30, 2013

I'm trying to scale down 3D drawings but when I use the 3DSCALE command the perspective gets distorted.  Is there a way I can scale my drawing without messing up the perspective?

View 7 Replies View Related

AutoCad :: Properly Scaling Drawing From PDF?

May 2, 2012

I need a way to properly scale a drawing that I've pulled into AC..

Example, I get a drawing for customer in PDF that I have to trace into AC. Said PDF is marked 1/4 = 1. Up to this point I've been guessing at accuracy by measuring doors to 3'. I know this cannot be the prefered way

View 9 Replies View Related

AutoCad :: Dimension Scaling Within A Drawing?

Nov 23, 2011

When I upload a drawing from the internet I save it as a wblock.when I insert it into my exixsting drawing it is not scaled to the same dimensions as the rest of the drawing.

I change the units to the same as the drawing befeore I save it as Wblock. But Im still having this Problem.

View 9 Replies View Related

AutoCAD Civil 3D :: Scaling - Units In Drawing

Oct 16, 2012

I have a drawing that was given to me by an architect with a scale 1:250 (0.004 in viewport). The architect drew everything in millimeters and it's a Site Plan, why ? I do not know. The units in the drawing are decimal-millimeters.

The page set-up for layout 1 was for 24x36 drawing size (typ.)I know need to make a layout 2 for a sheet size 11x17 but I can not get my viewport to scale correctly. So, if a 24x36 sheet size had a VP with scale 0.004 (1:250) then what is the scale for a sheet size 11x17 ?

View 3 Replies View Related

AutoCad 2D :: Scaling Individual Entities In A Drawing

Oct 26, 2012

I have a dxf file that consists of multiple rectangles (filled). I need to keep the X-Y position of each rectangle / entity the same but scale the size of the rectangle.

So for example, scale by -10%. If its a filled rectangle centered at (1,1) size (2,2) I need it to be centered at (1,1) and size (1.8, 1..

DXF is a text file and I can write a piece of VBA code to go through, decode the text, find the rectangles, scale, save the text file back to DXF.

View 1 Replies View Related

AutoCad :: Scaling Text In Xreferenced Drawing?

Jul 26, 2012

I'm currently using Autocad 2012, how I can scale a text in viewport whose drawing was referenced in the model view.

fyi the referenced drawing is a survey drawing.

View 4 Replies View Related

AutoCad :: Matching Scaling To Drawing Details?

Jun 17, 2011

I downloaded a free PDF to DWG converter and converted a land survey PDF to DWG, subsequently i imported the file to ACAD 2006 LT.

I would like to be able to dimension the drawing using the dimensions from the PDF, this would require some form of rescaling.

I've attached the file, you can see the line i've dimensioned is 80,6 units whereas the drawing is detailed 312.63 feet - how do i make them match?

View 3 Replies View Related

AutoCad :: Scaling Drawing - 1/48 Xp Is 1/4" Scale

Sep 22, 2009

I am using the dinosaur version of autocad 14. I know it is old but is working great for what I want to do. I learned on 12 and was using 14 when I stopped working 10 years ago.

I am having trouble scaling my drawing. I remember that 1/48 xp is 1/4" scale. 1/64 ?? is that 1/8" scale?? 1/24 is 1/2" scale.

View 9 Replies View Related

AutoCAD Civil 3D :: Scaling Drawing In Model Space

Dec 19, 2012

i'm working on a drawing started by someone else. They do everything in model space...no paperspace and no viewports. drawing and border are both in model space. I'm not used to just model space. 

How do i set the scale of the drawing in model space? do i need to use different size borders to get the correct scale? I'm drawing everything 1:1 and i need my final prints to be on 11x17 paper. 

on a previous drawingi see that they used a scale of 1/16"=1' but how they determined this scale. going thru other sheets in the setd of drawings it seems that they used different border sizes (but all are printed on 11x17 paper)...some are printed not to scale if they have no set scale...like details. 

example of what i need to do: 

I need to show a building rooftop plan view (the entire rooftop) on one sheet. on the next sheet i need to zoom into a portion of the rooftop.

normally i would use viewports to do this. but in model space i dont see how this is done. do i need to have a set of different size borders? but how then can i print them on 11x17 without using "scale to fit"?

acad C3D 2011

View 9 Replies View Related

AutoCAD 2010 :: Drawing Portions Randomly Scaling?

Jan 9, 2013

I work in both metric and imperial dimensions. I specify european cabinetry, and most of the architectural drawings i receive are for US clientelle so they're in ft and inches. When dimensioning, it's important that the cm dimensions are accurate for the factory, but the inches are accurate for the contractors.

So my drawing had 1 plan and 4 elevations. All drawn correctly. All scaled together, never one at a time. Yesterday morning everything printed correctly with this drawing.

Randomly, after some very minor changes to the drawing, 1 elevation remained at the correct scale and the plan, and 3 elevations randomly scaled down and at different scales from each other. Also, when i plotted this to a printer it matched what was on the screen. When i plotted it to PDF immediately after, the PDF's reflected 5 totally different scales where all 5 drawings and didn't match the screen or print. For example: a cabinet height in one elevation was 87cm, the next 86cm , and the next 83.9cm. Printed to pdf at totally different dimensions (see attached).

The file was closed and reopened, and the plan, and 2 different elevations were at an even different scale, smaller scale than before. They more closely matched what I got when plotting to a PDF.

I purged, and audited (no errors found), I copied only the bare bones necessary info into a new document, and scaled everything by reference to the size it needed to be. Most of the drawing automatically corrected themselves to the correct dimensions with the one step.

However, certain lines on my plans scaled at a far greater scale, while one wall was accurate, and one wall was off just a fraction. So even though i selected the entire thing and scaled it up together, different layers scaled differently. Basically i had to redraw the plan almost entirely.

The same happened with 3 of the 4 elevations. One section scaled correctly, one section scaled more than it should have and made that portion off.

So i had to redo that elevation as well.I created guidelines and set them where they need to be to align every single wall and cabinet and locked the layer in the hopes that if things move again, the guides will remain.

This has happened randomly with drawings previously, but only by a degree of .1 to .3 cm.  I figured this was from scaling the drawings and dimension accuracy. While that was annoying, it was minor. This time we're looking at 2-8 inches difference which can really mess up a job if unnoticed.

what could cause only portions of drawings to scale differently than the rest and at random times even when the scale command hasn't been used? And between closing a document and reopening it? AND from printing to a printer and to a PDF?

View 4 Replies View Related

AutoCAD Architecture :: Scaling Makes The Drawing Disappear

Jun 15, 2013

I have a building plan that needs to be in 1:100. When put my drawing into the new layout its there. Then when I change the scale, my drawing disappears.

View 3 Replies View Related

Lightroom :: Scaling Pictures In Print Mode?

Dec 24, 2011

I have a problem rescaling the pictures when i use the presets in print mode. I figured the CMD key for moving the picture in the frame, but I haven't figured out how to scale the photo inside the frame - not scaling the frame!

View 4 Replies View Related

AutoCad :: Print A Floor Layout

Jan 18, 2013

I want to print my finished floor layout but this layout view tab (layout 1) show me a tiny drawing I want it to cover all the A4 format

print.jpg

View 8 Replies View Related

AutoCad :: Print Multiple Layout To PDF At Once?

Jul 6, 2012

How can I print multiple layouts to PDF at one time?

View 9 Replies View Related

AutoCAD Print / Plot :: Preparing A Layout Space

Aug 7, 2013

I have an A4 peice of paper and need to change the scale of my drawing so it fits onto the page. I remember there was a short cut, but have since forgotten it. 

It is  currently at 1:1 and want to change that to a more appropriate scale.

View 1 Replies View Related

AutoCAD 2010 :: Crash When Print Layout In Windows 7

Nov 3, 2011

I tried to print the layout from autocad, the autocad will freeze and it will prompt out the AutoCAD Application error message as the attachment below. Once click on "cancel", the application will shut down itself.

*The printer is HP LaserJet P5225.

*Other program like Revit, MS Word and etc still able to print well.

*Computer spec: Windows 7-64bit, 12 GB RAM, Xeon processor.

*Installed with the HP original driver from original disc that given

View 9 Replies View Related

Photoshop :: Print Scaling - After Clicking Inside Scale Box Sizes Just Keep Increasing?

Aug 20, 2013

When trying to scale the print size, after clicking inside the scale box, the sizes just keep increasing, even though I never got a chance to enter anything.It just keep getting bigger and bigger. How do I turn this "feature" off?

View 3 Replies View Related







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