Photoshop :: Why CS6 Has Crossed Out Print Options

Dec 29, 2012

Why my PS CS6 has crossed out my print options.?

View 6 Replies


ADVERTISEMENT

CorelDRAW X4 :: Can't Print / Print Options Are Grayed Out

Sep 4, 2013

I have CorelDraw X4... I created a design like I always do, but I can't print.  All the "Print" options are grayed out and won't let me use them.

View 4 Replies View Related

Photoshop :: 5.5 Print Options Don't Work

Jun 12, 2013

I can only print my photoshop work on A4 when I want it on A3.  Its not greyed out it doesnt respond. Strange as it was working no problem then suddenly stopped.  I am using a mac OX10.8.4 and a macbook pro. I have reloaded my printers drivers Brother DCP 6690CWP and it still doesnt work.

View 2 Replies View Related

Photoshop :: Print Options Changed After Loading...

Jan 31, 2009

I loaded Photoshop 7 on my Vista Premium machine and now I do not have all of the print size options that were listed on XP. I need these options to print photos, cards, etc. for my business.

View 1 Replies View Related

Photoshop :: JPEG Quality Options For Print

Oct 16, 2006

I have been told that when sending my JPEGS to my PRO lab that I can save them with a JPEG image quality of 10 instead of the maximum of 12. They say that there is no difference in the 10 versus the 12 in print quality. Is this true or are they just telling me this to save capacity and space on their server? The bulk of my print sizes are in the range from 4x6 to 8x10. Why are there 12 quality options to choose from? What are the differences from low, medium, high and maximum?

View 9 Replies View Related

Photoshop Elements :: Unable To Set Print Options

Aug 24, 2012

i cant seem to set print options on a Mac using Mountain Lion.Where can I find the options such as paper type, resolution and gamma etc.  its available when i print from pages but not from PSE9

View 14 Replies View Related

Revit :: Trees Which Look Like Two Crossed Planes

Oct 22, 2011

I have a site plan with trees which look like two crossed planes when looked in 3D black and white. I wonder if there is a way to smooth these trees so they look smooth at least during the time that I prepare a PDF of the black and white 3D Site Plan.  If this setting can be reverted to the crossed trees after preparing the PDF, that is fine.  Also at this time I am working with black and white 3D, so color is not an issue, only the smoothness of the trees. Is there a setting that can make these trees look smooth?

View 1 Replies View Related

CorelDRAW X5 :: Detecting Loops Or Crossed Lines

Dec 28, 2012

Is there a command to find loops and crossed lines in curves/lines.

I've been playing with Powertrace and noticed that quite often the lines/curves will have loops in them, particularly at sharp bends.

I have to zoom right in to see these but this is a very painstaking and slow method of finding these. I use Draw primarily to get cut paths so there can't be any crossing lines. Visually the drawing can look good but cam software finds these loops as tiny as a few thousands of an inch.

View 14 Replies View Related

AutoCad 2D :: Getting Area Of Quadrangles That Are Being Crossed With Two Lines

May 16, 2013

As the first picture presents:
1.Only some of the quadrangle are being crossed with two red lines
2.Numbers, quadrangles and red lines are in separate layers

I need to do the following thing:
1.Make sure that all quadrangles are closed and that each quadrangle has one number inside of that closed area.
2.Get a list of quadrangles that are being crossed over with two red lines (the space between two red lines is the one that counts) (for this example I must get: 500, 501, 505, 506, 507, 50
3.Find out the area of each given quadrangle in step 2. (for example 500 – 1360.32, 501 – 4056.42, 505 – 5050.03 etc.) and hatch each one of them (it would be nice if I could automatically find out the number of hatched quadrangles – for this example: 6).

So the final result should be: in CAD as in picture 2 with number of hatched objects: 6 and in a file that is excel/notepad readable as in picture 3.

[URL].........

View 0 Replies View Related

Paint.NET :: Print Options In PDN

Jun 20, 2010

I have found the printing options in PDN to be..In all probability, PDN will print just the way I want it to, and I'm just not smart enough to figure out how to do it.

Right now, all I want is to be able to print at something less than full-page. For example, I create a simple drawing, size it in PDN to, say, 2 inches by 2.5 inches. It will print out at 8 inches by 10 inches, with no other choices, at least not that I was smart enough to find.

This is probably the rankest heresy to say this on the Paint.Net forum, but I find the Microsoft Paint print options to be far more useful, with the ability to scale the drawing by percentage, fit to a single page or fit to multiple pages, make my own choice about landscape vs portrait mode, etc. Unfortunately, MS Paint won't run on my computer anymore, probably a corrupted DLL file or something that will require a nuke and repave operation to fix. [This is one of the better things to happen to me, because without it I wouldn't have found and installed Paint.Net! ]

Rick Brewster has said in the "Popular Feature Requests" thread Better printing user interface -- Planned for a pre-4.0 update. Will this just be a change to the UI, or will there be added functionality? I installed the "PrinterPlus" plug-in, and while it mimics the MS Paint print interface to some degree, it does not add any of the MS Paint print options.

What will the "Better printing user interface" actually do, and is there any projected time frame?

View 13 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 :: Make DWG File Into PDF - Print Options

May 11, 2013

Need to make the dwg file into pdf but I also need to set margins (10mm top,right,bottom and 20mm on the left side), tried with some programs but it only gives me the option to set "global" margins and if i use CAD it trims the drawing. I'm working with A4(210,297).

View 1 Replies View Related

AutoCAD Inventor :: VBA Printer Options Not Affecting Print

Apr 2, 2013

When set it to use 11x17 paper it will print 8.5x11 which is the default size for the printer. So if I change the printer options to default to 11x17 it will print with 11x17. Changing the color between color, greyscale, and blackandwhite don't affect the prints either.

Also is there a way to detect the default printer since I noticed when I "printed" a pdf manually and then tried this script it used the pdf printer and not the default printer, which I would always want to use.
 
Public Sub Single_Print_11x17() Dim oPrintMgr As PrintManager Set oPrintMgr = ThisApplication.ActiveDocument.PrintManager If MsgBox("Using default printer """ & oPrintMgr.printer & """ with 11x17 paper. Do you want to continue?", vbYesNo + vbQuestion) = vbNo Then Exit Sub Print_doc printer:=oPrintMgr.printer, paper:=kPaperSize11x17, black_white:=TrueEnd Sub

 If you notice that i'm not using two of the arguements in the function that are passed, that's because they don't appear to affect anything so I just left some of it hard coded. When/if I can get the different options working I'll start using the arguements more since I have plans.
 
Function Print_doc(ByVal printer As String, ByVal paper As String, ByVal black_white As Boolean) If ThisApplication.ActiveDocument.DocumentType <> kDrawingDocumentObject Then Exit Function Dim oDrgDoc As DrawingDocument Set oDrgDoc = ThisApplication.ActiveDocument Dim oDrgPrintMgr As DrawingPrintManager Set oDrgPrintMgr = oDrgDoc.PrintManager 'choose printer works oDrgPrintMgr.printer = printer 'choose sheets works oDrgPrintMgr.PrintRange = kPrintAllSheets 'choose size doesn't work oDrgPrintMgr.PaperSize = kPaperSize11x17 'choose scale works oDrgPrintMgr.ScaleMode = kPrintBestFitScale 'color/black & white don't work oDrgPrintMgr.ColorMode = kPrintGrayScale oDrgPrintMgr.AllColorsAsBlack = black_white oDrgPrintMgr.SubmitPrintEnd Function
 
I'd love to get all these options working since I want to be able to select size and color options when using my print scripts.

View 9 Replies View Related

CorelDRAW Graphics Suite X3 :: Print Merge With Formatting Options

Dec 5, 2012

I am using CorelDraw to create price labels for my store.  When I merge in the price field for an item I want it to show on the label with the cents in superscript as opposed to using a decimal and full sized cents text.  Is this possible in any version of CorelDraw using the print merge feature?

Keep in mind that I also have the price field in an envelope so that the price takes up the full size allotted on the label whether the price is $1.99 or $999.99.

View 6 Replies View Related

Illustrator :: Preparing File For Print - Flattening Options And PDF Creation

Jan 26, 2014

A client has asked for an advert to be reset for magazine publication. For various reasons I am preparing it in Illustrator CC (mainly that I am more comfortable with Illustrator and it contains some reasonably complex effects and blending options). Anyway the time has come to send it to the printers and I have that heavy feeling that all is not well! The Publisher is asking for a PDF
 
There are two gradients within the artwork, the entire background is a photograph blending into a Black gradient (the body text sits in white over the black). To get the right effect the black gradient overlay has blending option - Multiply on it and being concerned it may not print propery or have transparency issues I chickened out and justt created one whole background image in PS (photo, gradient and all) and just imported it as a single jpeg back into Illustrator (ensuring I was working in CMYK).
 
But there is also an outer glow and drop shadow on some white text that sits over the Photograph. Do I need to flatten the image manually before creating the PDF? Or does the creation of the PDF do this for you? When I manually do this it displays correctly providing I tick Preserve Alpha transparency.
 
I work in Illustrator CC, the publisher has asked for Pass4Press Ver 9, but this preset is for Illustrator CS3. Are there no updates? and indeed does it really matter?

View 3 Replies View Related

CorelDRAW Graphics Suite X6 :: Printing Options Not Saved With Print Merge?

Nov 23, 2012

Whenever I perform a PrintMerge the print dialog and its options are reset everytime I leave the print dialog.

Usually you hit print set parameters and hit apply, you now can cancel the dialog and hit print again, your previous settings should still be there. Same goes if you actually print and want to repeat the print process, as long as you dont close the document. This works for normal printing but fails with print merge.

Every time I close the dialog (not the document) all the settings are back to default. This did not happen in X5 and is very annoying since it resets to default even if you actually hit print, forcing you to set the parameters every time.

View 4 Replies View Related

CorelDRAW Graphics Suite X6 :: Print Preview - All Options Gone Back To Default

May 9, 2013

I use Print Preview in X4 for all printing - great tool.

When I use Print Preview in X6 the print options are not saved when I exit Print Preview to make adjustments.

I make the correction - go back into Print Preview and all options have gone back to default. Is there anyway of correcting this.

View 1 Replies View Related

Xara :: Size Of Page Differs In Dialogue Box To Listed In Print Options Box

Dec 15, 2011

Size of page differs in page size dialogue box to that listed in print options box. I changed computers and it works correctly in the second one in that the page size is the same in both boxes, but I still cannot get it to work in the original pc. Both the file and the printer are common. Reinstalling Xara does not work. It looks like it is not installing correctly, even though it appears to be.

View 1 Replies View Related

Xara :: Missing APPLY Button On Print Options Menu Page?

Aug 1, 2013

The "Apply" button is missing on my print options menu (XDPX9). I cannot apply any of the functions such as Imagingsetting - crop marks, output settings, layout settings, separations settings.

View 3 Replies View Related

Illustrator :: AI CS6 Layers Panel Missing Labels When Deselect Print In Layer Options

Oct 9, 2012

AI CS6 Layers panel missing labels when you deselect print in the layer options. Is this a bug? I noticed this on a furnished file at work on a MacPro and had a hard time working the file because all of the labels were missing.

I stumbled on the cause when I turned on the Print Layer and all the labels came back. To be sure it was not computer related, I made a file on my AI CS6 version 16.1.0 with the same result. See screen shot.
 
MacBook Pro, OSX 10.6.8, 2.8 GHz Intel Core 2 Duo, 4 GB 1067 MHz DDR3.

View 2 Replies View Related

AutoCad :: Options Window Not Display When Typing Options In Command Line Or Selecting From Drop Down

Jul 2, 2013

The options window will not display when typing "options" in the command line or selecting from the drop down. The options menu has to be hidden somewhere because AutoCad will not allow any other commands after typing options until I hit escape. I have tried restarting CAD and rebooting my computer with not luck.

View 9 Replies View Related

Lightroom :: 4 Print Module - Print And Print One Tabs Greyed Out

Nov 25, 2012

In LR4 print module the print and print one tabs are greyed out and I can't reset.

View 1 Replies View Related

Photoshop :: Print Preview Colors Don't Match Work Window + Print Sizes

Jan 16, 2009

So I am working on this document and it has silver background. I go to print preview (Photoshop cs3 and cs4 on Vista) and I get color looking more like bronze looking but when I do print, it comes out just like it should (in working mode which is Monitor RGB with Proof colors checked).

This setting is the only one I've used to make sure image/psd looks exactly like what it should when printing. I tried the default Working CMYK with and without Proof colors but it's still showing me the bronze look instead of silver. I've looked on the net and no exact easy fix for this was found. I really really appreciate any help.

Another simple question is regarding size. I'm working on a document size of 17.5 x 8.7 inches and the actual Banners will be printed at size 175 x 87 inches (5 banners each at 35inch wide but combined into a big one). So essentially, I'm working at 10% the size of what the final print will be and my file size is 760mgs. You can only imagine how big the file would be if I work on the actual size.

View 4 Replies View Related

Photoshop :: When Printing From CC Using Print Dialogue Box Getting Severe Red Shift In Final Print

Jun 27, 2013

When printing from PS CC using the print dialogue box I am getting a severe red shift in the final print. When I print the same image from PS CS5 or CS6 I get a color-correct print.
 
I am running a MacPro with OS 10.7.5, and printing to a Canon iPF8300 with its latest firmware and print driver. I am using the proper ICC profile for the paper. In the print dialogue box, I select "Photoshop Manages Colors".
 
A couple things I noticed: In the "Print Settings" where I dial in the printer setup, the settings for "Color" are both turned off (Colorsync & Vendor).In the printer driver settings (still within "Print Settings") the "Color" tab is grayed out, but when I click the "Settings" for that sub-panel, Colorsync is selected.When I printed the image from the Canon PS Plug-in, the red cast was gone, but the blacks were too heavy (there is no "Black Point Compensation" check box available because the Canon plug-in uses Adobe Color Engine for that, and it's only 32-bit and won't run). 

View 13 Replies View Related

Photoshop :: Why It Would Take So Long For Print Dialog Box To Open After Selecting Print

Dec 5, 2012

-PC based system running Windows Home Premium 64 bit8 GB ramLots of hdd spaceCS5.5 Master Suite
-Epson Sylus Photo R1900
 
Operating system, CS5 suite and printer drivers all updated.
 
When attempting to print a photo, it can take anywhere from 5 to 15 minutes for the print dialog box to open up. It takes SO LONG that it appears that Photoshop has frozen, but it has not.  The print dialog box opens eventually.  This started about 2 months ago. I have looked at all preferences, assigned more RAM to Photoshop, uninstalled and reinstalled the entire suite, ran all updates, uninstalled and reinstalled the printer drivers - all to no avail.
 
I am at a loss as to why it would take SO LONG for the print dialog box to open after selecting print? I thought there may be a problem with the print spooler or print queue, but the slowness happens BEFORE the print back system is touched. The print queue is empty, and there is nothing stuck in there.  I've checked.

View 6 Replies View Related

Photoshop :: Error :: Could Not Print Because Of A Problem Writing The Print File

Feb 14, 2008

I'm having trouble printing in Photoshop CS2. Rregardless of which printer I try to print to, I get the message "Could not print because of a problem writing the print file". I have never encountered this error before.

The psd file I am printing is a wall banner, and is quite large (~200MB). It contains elements copied/pasted as pixels from Illustrator CS2. However even if I flatten the file, or save as a flattened tif, I still get the same error message.

Thinking that the psd file is corrupted, I tried printing an earlier version of the file, with no luck. I've even tried printing other, small unrelated files, and can't print those either. Even after rebooting the computer.

The computer I'm using has a dual core processor, 4GB RAM, a decent graphics card and is running under XP. I have gob-loads of HD space and also use a scratch disk.

I really only want to print the file myself as a proof. However, I'm concerned that the banner printers won't be able to print the file either.

View 3 Replies View Related

Photoshop Elements :: Get Print To Completely Fill A 4 X 6 Print Paper?

Jan 8, 2013

I have Windows 8 and am new to Elements 11.  How do I get print to completely fill a 4 x 6 print paper?

View 5 Replies View Related

Photoshop Elements :: Shutterfly Print Page To Print Individually

Feb 26, 2013

I have trial version of Elements 11; Also have full version, but have not installed yet, as I wanted to wait until I completed current project. I created/edited an album of wedding photos in the Organizer. I tried to upload album to Shutterfly to make an archival DVD and also make a photo book in Shutterfly. The photos uploaded individually to the Shutterfly print page to print individually, but the album will not upload to My Pictures, it shows the album name, but it is empty. How do I get the photos to upload?? Shutterfly was not sure how.

View 1 Replies View Related

Photoshop Elements :: How To Print Multiple Images On 4 X 6 Print

Apr 17, 2013

Using a Mac, what is the best way to print multiple images on a 4 x 6 print in Photoshop Elements 11?

View 5 Replies View Related

Photoshop :: Print 11 X 18 In LR4-Print Module / Much Smaller In CS6?

Apr 26, 2013

I use CS6 on a Mac pro os 10.8.3 & print to an Epson Pro 4900. If I print an image via LR4 print module the print comes out at 12 X18 in. Recently I have tried that same image via CS6 and the print comes out  at 6 5/8 X 8 1/2 in.
 
In Print Settings in Printer Setup in the print module of CS6  stats "Super A3 / B 13 X 19 but the printed image dimensions are a little over half of that.The printer used to print normally in CS6 print file.

View 9 Replies View Related

Photoshop :: Can't Click On Print - Print Menu's...

Jan 9, 2009

I've been using Photoshop CS3 for awhile and printing fine. I just updated my print driver (Epson 3800 to version 6.5) as well as my graphics driver (NVIDIA GeForce 8500 GT)at the same time. After rebooting I cannot click on the Print menu selection to print. IE: When I click on Menu the Print option is greyed and not selectable. Print as well as Page Setup, and Print One Copy are all greyed out (not selectable). I rolled back my graphic driver and rebooted and it still doesn't work. I then upgraded my driver again and it doesn't work. I've opened jpg's as well as psd files and no matter what file I open the Print menu's are greyed out. I can print from Word and other programs. I also reset my preferences (con-alt-shift) and still can't select print. I've done everything but uninstall. I'm hoping not to do that. My computer is on: Vista Ultimate 32 bit SP1, 4gb ram. In addition to updating the print driver and graphics driver I updated: Ultimate Extra Sounds, Group Policy Preference Client Side Extensions, Samsung CLP-310 Printer driver, and Microsoft Tinker.

View 4 Replies View Related







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