How do you specify printer profiles in Elements 11?

I upgraded from Elements 7 where there was a "drop-down" box that listed all of the available printer profiles to choose from.  I don't see a drop-down box in Elements 11 to accomplish the same thing.  I use Color Munki to set up printer profiles and can't find them in Elements 11.

Both Epson and HP have been playing a game of Hide-and-Seek for the last year or two. Instead of putting the profiles they install into one of the common Profiles folders, they are in the /Library/Printers/ folder. For Epson, drill down to /Library/Printers/Epson/InkjetPrinter2/ICCProfiles. At least, this is where the installer for the Stylus Pro 4900 puts them.
It was much harder to find those installed for the Stylus Pro 4000. They are still in this general area, but were hidden inside one of the .plugin packages a bit deeper into the folder structure.
Either way, the Epson print drivers know where these profiles are and show up in the print dialogue boxes. Trouble is, other apps, such as Adobe, Quark, can't see them, so you can't choose any of the profiles from those program's print option boxes.
The only solution is to locate the profiles in the /Library/Printers/ folder and move all profiles to either the /Library/ColorSync/Profiles/ folder, or the Profiles folder in your user account. You want to move instead of copy so each profile isn't showing up twice in the Epson print dialogue box.

Similar Messages

  • How do you install printer profiles in Lion?

    After Installing Lion , I cannot figure out how to install new printer profiles.  Any help greatly appreciated.
    Thanks

    Both Epson and HP have been playing a game of Hide-and-Seek for the last year or two. Instead of putting the profiles they install into one of the common Profiles folders, they are in the /Library/Printers/ folder. For Epson, drill down to /Library/Printers/Epson/InkjetPrinter2/ICCProfiles. At least, this is where the installer for the Stylus Pro 4900 puts them.
    It was much harder to find those installed for the Stylus Pro 4000. They are still in this general area, but were hidden inside one of the .plugin packages a bit deeper into the folder structure.
    Either way, the Epson print drivers know where these profiles are and show up in the print dialogue boxes. Trouble is, other apps, such as Adobe, Quark, can't see them, so you can't choose any of the profiles from those program's print option boxes.
    The only solution is to locate the profiles in the /Library/Printers/ folder and move all profiles to either the /Library/ColorSync/Profiles/ folder, or the Profiles folder in your user account. You want to move instead of copy so each profile isn't showing up twice in the Epson print dialogue box.

  • How do you specify printer start location on a label sheet in Address Book (LION)?

    I have no problem with printing address labels to my correspondents in Address Book, but cannot find the spot to tell the program to start with a specific label location on the label sheet.  It is a complete waste to print one address in the upper left of the label sheet and not to be able to tell the printer to start with row 2 col 1 the next time.

    I've found no way to do this from address book. Printing labels from address book is just simple list style printing ** fill the sheet with names and print. I see no way to insert blank information like I use to do in Clairworks in order to skip rows and columns. If you need to repeat names or print only certain columns and rows, then you would need to do that from another program. I have no recomendations since I haven't used any, but I'm sure there are many out there and probably a lot that are free to download.
    What I do is print out full sheets of mailing labels on the ones I used repeatedly, such as my return address, electric bill, water bill, etc. I used appleworks in the past, but now it no longer works under Lion, so I will have to make new sheets, probably from Word.
    For all others addresses that are not used frequently, I've resorted to just running my envelopes throught the printer.

  • How to install custom printer profiles in maverick

    how to install custom printer profiles in maverick

    NOTE: In Lion and Mountain Lion the Home/Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and press the Return key - 10.7: Un-hide the User Library folder. You'll need to do it again after each system update that's applied.
    OT

  • Printer Profile In Elements 8

    How do I set a printer profile in Elements 8?

    I have to change this for every print. I have a Canon Pro9000. When I set the printer profile for
    my Ilford paper at the next print I find that the profile is reset to a Canon profile and I have to change it again.
    Is there any way to make it stay on a given profile as all I use is Ilford paper.

  • How do you specify a line number with getline() (c++)

    How do you specify which line for getline() to read with c++ similiar to how awk uses $1, $2, $3 , etc etc...
    Example:(Ignore the underscores)
    Line1 Line2
    10____10
    20____20
    30____30
    40____40
    if I were making a program to remove 10 on the first line and 20 on the second line how would I tell getline which line to read
    Example source code:
    #include <cstdio>
    #include <fstream>
    #include <string>
    #include <iostream>
    using namespace std;
    int main()
    string line;
    string line2;
    ifstream in("/Users/lundquisted/Desktop/infile.txt");
    ofstream out("/Users/lundquisted/Desktop/outfile.txt");
    while( getline(in,line) )
    if(line != "10")
    out << line << endl;
    while (getline(in,line2) )
    if(line2 != "20")
    out << line2 << endl;
    in.close();
    out.close();
    remove("/Users/lundquisted/Desktop/infile.txt");
    rename("/Users/lundquisted/Desktop/outfile.txt","/Users/lundquisted/Desktop/inf ile.txt");
    return 0;
    }

    Eric Lundquist wrote:
    store the output of a system() command within a c++ program to a string and/or variable
    A number of apps call Unix utilities and capture both stdout and stderr, typically for viewing in a log window, but for other uses as well. Xcode, for example, starts up gcc and does various things with the text that gcc might otherwise print in a Terminal window. Most apps that rely on Unix commands that way don't use "system()", which is a rather crude way of launching utilities that leaves the parent program with very little control. Usually, the best way to manage helper utils from a Cocoa app is by using NSTask and NSPipe. If you spend some time with the two following pages, you'll learn how to do almost anything you want with command line utils from inside a Cocoa app:
    [http://www.cocoadevcentral.com/articles/000025.php]
    [http://macosx.com/forums/archive/t-3927.html]
    The first link goes to a great tutorial on using NSTask. Capturing stdout and stderr are only covered briefly towards the end, however. Note the last comment explaining why "system()" is a bad idea.
    The second link goes to a forum thread. Scroll down to the code posted by "blb" for some very clear examples of launching with NSTask and reading the output with NSPipe.
    If you really want to use a shell command, you could give NSTask a command like ' +bash -c "ls -lt | grep drwx"+ ' (see how setArguments: is used in the tutorial).
    If you just want to do something cheap and dirty with "system()" so you can see some awk output while you're learning how to do things the right way, I guess you could do something like this:
    system(" cat ~/random.txt | awk '{print $2}' > MyFile.txt");
    NSString *myString = [NSString stringWithContentsOfFile:@"MyFile.txt"
    encoding:NSUTF8StringEncoding error:nil];
    Of course you can just read MyFile.txt into cin if you're not using Cocoa.
    - Ray

  • How do you connect printer to the iPad?

    How do you connect printer to ur I pad?

    You need a airprint enabled printer to print documents directly but there is also an app on the app store called print central pro which lets you connect to any printer over wifi or over google cloud print.
    Hope this helps :)

  • How do you specify what format you want the song to download in?

    How do you specify what format you want the song to download in?

    In preferences set up your import settings, then right click on the tracks you need in a different format and use Create < Format> Version. New copies will be created in the target format.
    tt2

  • How do you tether a dslr in elements 11?

    How do you tether a dslr in elements 11?

    Right-click on the album in the left hand panel and choose delete.
    This will not delete the photos from Organizer; only the album.

  • How do you copy photo's from elements to an i-padmini

    How do you copy photo's from elements 10 to an i-padmini

    Brannyboy wrote:
    How do you copy photo's from elements 10 to an i-padmini
    If your IpadMini hasn't got a USB port then the only way I can think of is to email the photo to yourself and then retrieve it by logging to your email account using IpadMini.
    This method is fine if you have few photos only.  To transfer 1000s of photos require completely different device that can handle volume on an industrial scale.
    Good luck.

  • How do you whiten teeth in Photoshop Elements 10

    How do you whiten teeth in Photoshop Elements 10?

    For those with earlier versions of PSE without Guided Edit, try this:
    - Select and feather teeth 1 or 2 px.
    - Enhance > Adjust Color > Hue/Saturation, or add a Hue/Saturation adjustment layer.
    - Choose Yellows from menu.
    - Lower Saturation to remove yellow.
    - Optionally increase Lightness.
    Here I moved Saturation all the way left and changed Lightness to +50.

  • HT3771 how do you delete printer in last use when you try to add new printer again

    how do you delete printer in last use when you try to add new printer again?

    System Preferences > Print & Scan (Print & Fax on older versions of OS X)
    Select the printer and click the "–" (minus) button.

  • How do you "Air Print" an email on ios7?

    how do you "Air Print" and email from iPhone 4s on ios7?

    Open the email, click on the backwards swirling repy arrow at the bottom, tap on print, select your printer and print.

  • How do you delete printer software?

    how do you delete printer software?

    I don't believe you need more than 500Mb of free space if you perform the update through itunes. As all operations are done on the computer, and then the files are simply replaced with the newer versions.
    As to your other questions:
    Tormund0123 wrote:
    After you download a software update, how do you delete it?
    You don't. As long as you don't install it it will be there. Once installation is complete, the system will delete it from the device.
    Tormund0123 wrote:
    Once you press the "Download and Install" button, what happens next? Does it do the former first, the latter first, or both?
    Obviously it can't install if it hasn't Downloaded first. So if you still have the "Download and Install" option as opposed to the "Install Now" option it will first download and then install.
    Tormund0123 wrote:
    If you try to download iOS 7 by syncing tyour device to iTunes, what happens if you press "Download only?" Will the software download AND install, or just download only?
    If you are using Itunes and choose to only Download, then it will simply download the update package and store it on your computer. When you are ready to install it you can then press the install button.

  • HOW DO YOU SET DOCUMENT PROFILE UNDER COLOR MANAGEMENT IN CS4?

    When I try to print in CS4
    (File>Print>Color Management
    >Document(it displays sRGB IEC61966
    -2.1)
    I need to change this to Adobe RGB1998 and I cannot find out how to do this!
    If I go to >EDIT>COLOR SETTINGS the Working Space shows Adobe RGB 1998. Is this what the above "Document" setting should be?
    Please help!
    Dan

    I told you how to set a document profile.
    You set your working preference.  That may have combined with the policies you have set and the processes you follow to get your document into the Adobe RGB color space.
    In any case, I'm glad you have things the way you like them.
    -Noel

Maybe you are looking for

  • ITunes Keeps Opening On Its Own

    All of a sudden, iTunes on a 17" iMac flat keeps opening by itself. I quit it, then about five minutes later, it opens up but it doesn't seem to be doing anything. All podcasts have been cleared and there's no sharing. Any ideas?

  • Why can't I post a new topic in the Leopard discussions.

    The option is available in other Apple discussions, but for some reason it's not an option for me in the Leopard area. I just want to ask a simple question about why Firefox is now launching every time I restart my computer, but don't want to do so i

  • RE: How to Export the Table data Into PDF File  in ADF

    Hi Experts, I am using Jdeveloper 11.1.2.3.0 I am created employee VO and Drag and Drop as a Table in a page. So need to Export the Table data into A PDF file. So please give me some suggestions regarding this Scnerio. With Regards, satish

  • Micro usb to vga for tablet A8

    I want to Micro usb to vga for tablet A8?

  • How do we track how many records INSERT/UPDATE/DELETE per day

    Hi All, We have around 150 tables in database. so many members/persons can access these table and every one can have rights to do INSERT,DELETE,UPDATE the records. I wanted to know How many records are UPDATED,INSERTED,DELETED for a day. is it possib