AutoCAD LT :: How To Filter Out Excessive Number Of Scale Options In Plot Dialog Box

Nov 14, 2011

I have recently started working on a project in metric and have a weird (to me) issue when I try to plot. There are literally hundreds, of scale options in the Scale popup, most of which make no sense to me. I know that I need 1:25, or 1:100 to fit on the page I am printing to. How do I remove or filter out all of the others such as 1:100 3_1_1_1_1_1? I don't even know what that notation means.

View 9 Replies


ADVERTISEMENT

AutoCAD .NET :: Get Number Of Copies Value From Plot Dialog

May 3, 2012

I have moved from VBA to .NET. Is there a way to access the "Number of copies" value as set in the Plot dialog?  I know this value always gets re-set to 1, but I want to know if it is possible to get the value set by the user *after* clicking OK in the Plot dialog.  "Number of Copies" does not seem to be exposed as part of the "Layout" object in .NET (nor was it in VBA).  Is it available anywhere else?  Is this stored in the registry, and if so where is it located?

View 4 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Plot Transparency Option In PLOT Dialog Box

Sep 11, 2012

Where else do they keep this setting? I only have found it in Active Layout in extended dada

(entget (vlax-vla-object->ename(vla-get-activelayout (vla-get-activedocument(vlax-get-acad-object)))) '("*"))
The last pice of extended data is:
 ("PLOTTRANSPARENCY" (1071 . 0))
When i change it to 1
(setq layout(vla-get-activelayout (vla-get-activedocument(vlax-get-acad-object))))
(vla-getXdata layout "PLOTTRANSPARENCY" 'type 'data)
(vlax-safearray-fill data  '("PLOTTRANSPARENCY" 1))
(vla-setXdata layout  type data)

it stays there (extended data), but the setting in Plot dialog box doesn't change!!! And it still prints no transparency.

It takes to save the drawing and reopen it again to see the change.

The command -PLOT does not have this setting as well, so my options back to VBA or Lisp, but HOW?

View 9 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Set Plot Scale By Annotation Scale?

Aug 9, 2012

I am working on automating page setups in model space and am looking for a way to set the plot scale equal to the annotation scale for scaled drawings with

(setvar "filedia" 0)

(setq a (getstring (getvar "cannoscale")))

(command "-plot" "YES" "MODEL" "" "" "" "" "" "" !A "" "" "" "" "" "" "_Y" "_N")

Setting the plot scale with !A causes the lisp to fail.  However, when running each prompt through the command line individually, !A works fine.  what is missing?

View 2 Replies View Related

AutoCAD 2013 :: Block To Scale Based On Plot Scale?

Apr 19, 2013

I have a block that i would like to scale based on the plot scale when plotting.

We set up our drawings full size and occasionally we want to plot them at half size. We do this by setting the plot scale to 1:2 (custom) in the plotting dialog. We have a few blocks that we want to print at the same size on paper, essentially become twice as big.

Is there is a way to fix the size or just set a few scale states and have them automatically adjust based on the plot scale (not drawing/annotative scale)?

View 1 Replies View Related

AutoCAD 2010 :: Annotation Scale Is Not Equal To Plot Scale

Mar 15, 2011

I work in autocad 2010 and I draw in scale 1:1 . What an annotation scale is, moreover I have never used annotative objects in my drawings.

Nonetheless, when I try to plot a drawing, while I am in the model view, I choose the scale in mm/units, I select the plot area and when I press preview or plot, I get the message THE ANNOTATION SCALE IS NOT EQUAL TO THE PLOT SCALE. DO YOU WANT TO CONTINUE?

I press yes, I print it and the outcome is always a bit smaller than it should be.

When i am in the layout mode and I try to plot, I dont get this message. But I dont know how scaling works in this case. For example I want to plot in a A4 paper, scale 1:100. So I type 1000mm/100units, as I did in the model mode, but the result is wrong.

View 3 Replies View Related

AutoCad :: Annotation Scale Does Not Equal Plot Scale?

Sep 20, 2012

I do warehouse layouts: circles, squares and rectangles. I don't know a thing about these scales.

I get this message when i try to print D-size drawing. Received this drawing from outside source and need to print.

View 4 Replies View Related

AutoCAD 2010 :: Options Dialog Box Doesn't Open

Mar 19, 2013

I am difficulty getting the options dialog box to open (under the file menu "red A" dropdown list, options button). When I click on it, all of the buttons on top go gray and nothing appears. When I click on the black workspace, I get a compluter bell sound.

What I've tried to do to solve the problem is restart the computer and shutdown the computer.

View 2 Replies View Related

AutoCAD .NET :: Adding Options To The File Save As Dialog Box

Jun 7, 2012

I have the following function that opens the File "Save As" dialog box.  It gets fed a drawing number and allows the users to browse to a folder where they want to save it.  The problem is when a file already exists with the same name.  A message box pops up letting the user know that the file already exists and do they want to overwrite it.  The can pick yes to overwrite, but it doesn't really overwrite the old file, it seems like it opens it and then crashes when the rest of the program tries to run.

What I want to do is create a loop to determine if the file already exists.  If it does not exist, then save the path and drawing name as usual. 

If the drawing exists, I want to pop up a dialog giving two options; Overwrite, or Rename the current drawing.  If they pick Overwrite, I can have the program delete the old existing drawing and then just save this one.  If they pick Rename it will loop back to the "Save As" dialog giving the user the ability to change their drawing name (like add a "-1" to it.

Public Function GetFilePathAndName(ByVal dwgNumber) podDWG = ApplicationServices.Application.DocumentManager.MdiActiveDocument podDB = podDWG.Database podEd = podDWG.Editor podPSO.InitialDirectory = "W:Work_in_Process" podPSO.InitialFileName = dwgNumber podPSO.Filter = "AutoCAD DWG Files|*.dwg" podPFR = podEd.GetFileNameForSave(podPSO) Select Case podPFR.Status Case EditorInput.PromptStatus.OK SaveDwgName = podPFR.StringResult Case EditorInput.PromptStatus.Cancel MsgBox("User Cancelled.") End Select Return SaveDwgName End Function

View 4 Replies View Related

AutoCAD Civil 3D :: Options Dialog - Missing Buttons?

Jan 6, 2014

According to this blog: [URL] .......

And posts elsewere, there are two more buttons on the bottom of the options dialog box, under the user preferences tab, that I am missing. One is Initial setup and the other is default scale list.

View 4 Replies View Related

AutoCAD 2013 :: Options Dialog Box Asks To Enter Integer?

May 16, 2013

why I get a this when I click on a tab in the Options dialog box?

View 2 Replies View Related

AutoCAD Civil 3D :: Cannot Select Curve Number Dialog Box?

Oct 26, 2012

Why I get this error when trying to enter a curve number?

View 1 Replies View Related

AutoCAD LT :: How To Turn On Large Number Of Annotation Scales Dialog

Apr 27, 2012

If I accidently turned it off and can not find it in the Hiddeen Messages Settings dialog, is there a variable or registry key or other trick to turn it on again?

Would be interested in a variable for the "missing shx files" dialog as well.

View 9 Replies View Related

AutoCAD Print / Plot :: PDF Publish Options Ignored

May 31, 2011

I am using Autocad 2010, and have upgraded to windows 7.  When I publish to pdf using Dwg to Pdf.pc3, my options (single-sheet file, do not include layers, etc.) are ignored and I always get multi-sheet files with layer information included regardless of what options I select. 

View 9 Replies View Related

AutoCad :: Any Way To Change Options In Plot Menu

Jun 3, 2012

I was wondering if there is any way to change options in the plot menu. For example I have a long list of printer's and many duplicates, when I only use 2 of the 25 printers on the list. I would like to just have the 2 printers i use displayed, rather then having to search through all the names every time. There is other options I wish to customize in the plot-model tab as well.

View 2 Replies View Related

AutoCad :: PDF Output Tool Vs Plot Dialog

Oct 11, 2011

I am using AutoCAD 2012 with Acrobat Pro 9. When I output via the plot dialog in CAD to pdf print the text looks different then when I use the output toolbar export to pdf. Both files plot the same on paper, but when I look at the output tool pdf file zoomed out, the text looks unclear with some characters looking grey vs. black. Is there a setting that changes this so the text can be more readable even when zoomed out?

View 0 Replies View Related

AutoCAD Architecture :: Plot To File Naming Options

May 31, 2011

Is there an option to eliminate AutoCAD from automatically inserting the layout tab name into the file name when creating a PDF?  Once upon a time it would only use the file name (i.e. A-101).  Now it uses "A-101_Layout1" (or whatever the layout name is) by default.  I either have to live with it or manually change each file name during the process of creating the PDF or after it's been created.

View 1 Replies View Related

AutoCAD Architecture :: CTB Files Do Not Appear In Plot Dialog Box In 2013?

Jan 7, 2013

the ctb files do not appear in the drop down list in the plot dialog box. I have checked the files and are located in the correct directory. Also have verified that the files are being pointed to in the options dialog box.

View 2 Replies View Related

AutoCad :: Remove Unused Printers From Plot Dialog?

Oct 24, 2012

using acad 2010.

i want to remove all the printers i don't use from the plot > printerlist (also system printers). how can i do it?

View 2 Replies View Related

AutoCAD Architecture :: Annotation Scale Dialog Box

Mar 23, 2012

I have 2 computers with Windows 7 OS and 2011 ACA installed with a custom profile set current. When I select annotative text, right click and select ADD/DELETE SCALE, the Annotation Scale dialog

box SHOULD open.... but it does not.  I have this same profile set on other computers with Windows 7 and they are working fine.  We have completely uninstalled ACA, wiped the registry clean, and reinstalled...

it's still doing the same thing.  I can switch to the Out of the Box profile and the dialog box opens as it should. I'm not sure where to look within the profile for the issue since it's working on other computers.

View 3 Replies View Related

AutoCAD LT :: Object Scale Dialog Box Missing?

Mar 20, 2011

I am unable to coax the Object Scale dialog box to appear.  Typing OBJECTSCALE and invoking the Add/Delete Scales command via Annotate on the ribbon do nothing.  I looked in the CUI and everything appears normal with the command and macro.  I have attempted to see if the box was just off screen, but when I hit Alt+Spacebar, the main Autocad menu highlights, as if the Annotative Object Scale dialog box is not even open. I have lost dialog boxes off screen before, so I don't thing that is the issue.  I have done a Repair and an update to the latest service pack.

I am running Autocad 2010 LT on a Windows 7 64-bit machine with 8MB memory.    I have FILEDIA = 1, CMDDIA = 1, and ATTDIA = 1.

I have not done a complete reinstall due to the pain of updating all of my settings, but I guess that is a last resort if I cannot figure out how to get the dialog box to show up. 

View 6 Replies View Related

Photoshop :: How To Restore TGA Options Dialog Box

Jan 28, 2013

Today, after accidentally exporting a file as a TIFF the options dialog box for TGA files no longer appears.
 
Which means my workflow has come to an absolute and complete stop since I can no longer export proper 32-bit TGA files that are required for import into other software.
 
I've deleted all the preferences inside ~/Library/Preferences though that did not fix it.

View 1 Replies View Related

Photoshop :: Prevent PNG Options Dialog?

Aug 6, 2013

Whenever I save something as a PNG, Photoshop asks if I want to save it in interlaced format. Is there a way to set a default for that so it doesn't ask me every flippin' time?

View 4 Replies View Related

CorelDRAW X5 :: How To Patch Big Options Dialog Box

Mar 7, 2010

Patch or apply the free version of big options dialog to x5. 

View 3 Replies View Related

Photoshop :: JPEG Options Dialog Box

May 13, 2004

Sometimes when I save an image as a jpeg the dialog box defaults to a higher compression and lower image quality. I change it to the highest quality but when I save the next image it is again at the lower quality setting. How can I get it to default to the highest quality setting or at least stay at the last setting.

View 6 Replies View Related

AutoCAD Architecture :: Purge Page Setups From Plot Dialog?

Nov 23, 2011

Is it possible to purge page setups from the plot dialog?

ACA2011
Win7-64

View 4 Replies View Related

AutoCAD 2010 :: 2012 Plot Shaded Viewport Options Sketchy

Mar 1, 2012

How to use the "Shaded Viewport Options" in the Plot dialog box? We saw an option for Sketchy in the dropdown menu but I can't find any information about how to use it, or how to change the settings, or even what the intent is for it. When we have selected it and viewed in Preview it shows up as a mass of lines too dense to be usable. 

We are using AutoCAD 2012 on a PC in model space.

View 3 Replies View Related

Lightroom :: Stacking Options In The Export Dialog

Oct 3, 2012

What happened to the stacking optons n the export dialog when adding the exports back into the catalog? After watching Jared Platt's creativelive course, I started creating my PSD's by exporting them in bulk, adding them back into the catalog and stacking them on top of the original raw files. After updating to LR 4.2 I don't see the option in the export dialog any more.

View 11 Replies View Related

AutoCad :: CTB Doesn't Show In Plot Styletable Roll Down Of Page Set Dialog Box?

Dec 19, 2012

I have received a ctb file from someone else and need to use it for my dwgs - but it does not appear in the plot style table roll down of the page set dialogue box? Other ctb files are visible. I have used stylesmanager to locate where to copy it in, and done so. I have tried the command CONVERTPSTYLES in case my dwg was not color style based but I get this message:

THIS COMMAND CONVERTS A COLOR DEPENDENT PLOT STYLE DRAWING TO USE NAMED PLOT STYLES. YOU SHOULD CONVERT YOUR COLOR DEPENDENT PLOT STYLES TABLES (CTB FILES) TO NAMED PLOT STYLE TABLES (STB FILE) WITH CONVERTCTB BEFORE YOU CONVERT YOUR DRAWING.

Doesn't this mean that my dwg is already a color dependent plot style dwg? I have successfully copied and used this ctb file somewhere else yesterday, and feel I am doing the exact same thing, so very frustrated and lost. I really need to get these dwgs out!

View 3 Replies View Related

AutoCad :: How To Reset Large Number Of Annotation Scale List

Oct 21, 2011

i m new in auto cad 2010 i today i face new problem i dont this is what? the message is that " the drawing contains a large number of annotation scales do u want to reset the scale list? "

View 2 Replies View Related

AutoCad :: How To Plot Drawing In Scale

Jul 13, 2010

How to plot my drawing in scale.. i always print in A3 and A4 size paper. i wanted to know how to do this.. ex.. 1:100 , 1:200, etc. 2nd:

Here is the scenario.: i have an forwarded drawing then i wanted to print/plot it in scale of 1:100 it is possible to do that?

View 7 Replies View Related







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