Emergency! i need help trying to print from light room

I need to be able to print 4 different images in 2x3 on 4x6 paper. I created a print package with 4 2x3's. but it keeps displaying the same image in all for 2x3's and just print is on 4 different 4x6s... help?

That is how a picture-package works.  You can make a custom package and drag specific photos into each cell.

Similar Messages

  • Need help trying to print from my android tablet

    I downloaded HP eprint and I can print pictures but when I go into my gmail account and bring up a message there seems to be no way to print the message

    Hi,
    If you open the eprint app, there should be a tab that allows you to add your gmail account to eprint and access it through the app - have you tried this?
    "Although I work for HP, I'm speaking for myself and not on behalf of HP"
    "Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

  • Does anyone know why when printing from light room to pdf the program just closes on me? I've talked to tech support and they are going to get back to me tomorrow but I am desperate I have tuns of homework to finish !!

    Does anyone know why when printing from light room to pdf the program just closes on me? I've talked to tech support and they are going to get back to me tomorrow but I am desperate I have tuns of homework to finish !!

    No, but if you really mean that the way you said it, I don't know that Print is the best way to this. If you haven't already, after selecting the images you want to get printed, try clicking the Export button in Book or Library module and then selecting format .PDF. Once you export the file to .PDF, try opening it where you saved it and printing from there, not in Lightroom but in Adobe Reader. If that doesn't help, here are a couple of videos that might--follow their instructions carefully with no shortcuts:
    Adobe Photoshop Lightroom 4's Export to PDF Using the New Book Module - YouTube
    Lightroom 5 - Exporting Images | Getting Started with Adobe Photoshop Lightroom 5 | Adobe TV
    If Lightroom keeps closing even when you try all this, you may need to reinstall Lightroom because your copy may be screwed up.

  • I need help trying to print ,move and resize multiple images on a page to print!help!

    can anyone give me to some advice. I was using an older version of photoshop elements where i could position the image i wanted to print on the page. I could resize it, move it around and add more photo's. I print small images that I cut out for jewelry making and need to be able to add 12 small images to a 4x6 print size page. My new elements is not allowing me to do that! I'm frustrated and need help!! thanks!

    It should work just the same as before: create a blank document, place your images on it, then print it. The only difference is that you can't change the position of the image in the print window anymore.

  • Need help trying to print Date

    Im trying to print out the date in this format:
    Tuesday, Nov. 6, 2007
    Not sure how to do it...thanx

    System.out.println() and SimpleDateFormat

  • Need help, trying to print strings backwards while ignoring certain things.

    To clarify the topic what I mean is I want to spell the words the user inputs backwards while skipping over certain characters. Here's my code:
    import javax.swing.*;
    import java.util.*;
    import java.text.*;
    import java.io.*;
    class SConvert{
    private static final char BLANK = ' ';
    private static final String stop = "STOP";
    public static void main(String[] args){
    char[] ignore = new char[21];
    ignore[0] = '.';
    ignore[1] = '/';
    ignore[2] = '>';
    ignore[3] = '<';
    ignore[4] = ',';
    ignore[5] = '?';
    ignore[6] = '-';
    ignore[7] = '~';
    ignore[8] = '!';
    ignore[9] = '@';
    ignore[10] = '#';
    ignore[11] = '$';
    ignore[12] = '*';
    ignore[13] = '&';
    ignore[14] = '^';
    ignore[15] = '%';
    ignore[16] = '`';
    ignore[17] = '_';
    ignore[18] = '+';
    ignore[19] = '=';
    ignore[20] = '|';
    String word, statement, append;
    boolean go = true;
    int i, numOfchar, index;
    char[] chr;
    index = 0;
    word = " ";
    statement = " ";
    append = " ";
    Scanner scanner = new Scanner(System.in);
    while (go){
    System.out.println("Enter a word");
    word = scanner.next();
    chr = word.toCharArray();
    numOfchar = word.length();
    if (word.equals(stop)){
         break;
    else if (index < numOfchar && word.charAt(index) == BLANK + BLANK){
         index = BLANK;
    else if (index < numOfchar && word.charAt(index) == (int)ignore[19]){ //Trying to range for entire array, I don't know how.
         index++;
    else
           for (i = word.length() - 1; i >= 0; i--)
              statement = statement + chr;
              append = append + " " + statement;
    System.out.print(append + " ");
    What's messing me up is the fact that whenever I try to enter words into the program, printing append only repeat EVERY occurance of statement. For example, say I type in "Ham with gravy." I get "maH htiwmaH yvarghtiwmaH".
    That's not what I want. Also, I don't know how to make the entire array of ignore available to the program, anyway to do that?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Wow. What's with the hostility? Even I was in error of detecting anything that could have solve the problem completely there's no need to use such a negative tone, epsecaility with someone who is learning to program in OOP, let alone the syntax of Java. Also, no your program did not solve all of my problems in it's original form. Let's take a look at it.
    Here's your code:
    import java.lang.String;
    import java.util.*;
    public class ReverseString {
      public void ReverseString(){
      public void printReverse(String s){
         int i;
        String noPrint = "no print'";
        char ch = '*';
        if(s.length()>1) printReverse(s.substring(1));
         ch = s.charAt(0);
        if (!noPrint.contains(ch + " ")) System.out.print(ch);
        return;
      public static void main(String[] args) {
          String myString = Here is my String.;
       System.out.print("My String: " + myString + " Reverse: ");
       new ReverseString().printReverse(add);
       System.out.println();
    }In it's original state the program doesn't allow for any user input, which is something I needed (and added on my own), it doesn't convert the ignore[] I had in my original code to anything readable (however this can be done in the noprint String quite easy as someone else mentioned earlier.) the if command does in fact ignore the special characters in noprint String HOWEVER it doesn' t not print those characters as they would appear in the myString String in the position that it original appeared in (which is the primary problem I am having.) That is the problem with your code and why it is not the complete to soultion to my homework problem. I've modified your code to satisifed all but one of the problems.
    Modified:
    import java.lang.String;
    import java.util.*;
    public class ReverseString {
      public void ReverseString(){
      public void printReverse(String s){
         int i;
        String noPrint = "~`!@#$%^&()-=+[{]}\':;?/>.<,'";
        char ch = '*';
        if(s.length()>1) printReverse(s.substring(1));
         ch = s.charAt(0);
        if (!noPrint.contains(ch + " ")) System.out.print(ch);
        return;
      public static void main(String[] args) {
           Scanner scanner = new Scanner(System.in);
          String myString;
          String add = " ";
           while (true) {
       System.out.println("Please input String.");
       myString = scanner.next();
       add = add + myString;
              if (myString.equals("STOP")){
                   break;
       System.out.print("My String: " + add + " Reverse: ");
       new ReverseString().printReverse(add);
       System.out.println();
    }If you run this code you'll see what am talking about. The only remaining problem, which I am about to restate if you are still unclear of it, is that the noprint String contents are ignored but not printed in the original position. If you are still having trouble understanding what I am talking about then let me show what I got by running the program.
    String: Ham with grav?y
    Reverse: yvarg htiw maH. [Note the ? is missing.]
    By removing the ! in the if command I get:
    Reverse: y?varg htiw maH. [Now the ? is in the wrong position.]
    It's suppose to be:
    String: Ham with grav?y
    Reverse: yvarg htiw ma?H.
    Secondly, I understand that you are frustrated with my apparent lack of understanding of proper Java tems and syntax but you must keep in mind I am student thus I am not fully aware of java as you are. With that one would expect you to act with a bit more patience, yet you not only took offense to an innocent comment you choose to slander my name and intelligence by erasing your code and calling my understanding of Java, ?ignorant.? I may be less than careful with my choice of words concerning Java but I do understand enough code to know the inner workings of a typical program, so please refrain from calling me ignorant or any variant of this in the future.
    I merely asked for help from general populous, do not think I owe you any particular praise for your code even if I find it is not exactly what I desired. I may be new to java but I am not new the message boards. With that said I find your response awfully rude and ask if you to refrain from do so in the future. I'm assuming you are an adult so act least act like someone with a bit of civility. If you were so committed to believing your code was the de facto solution to this problem then you could have simply asked why I say what I said, if had done so and shown me the error of my statement I would have not taken offense. Instead you choose to throw a fit and deleted your code. I do not know if you are like this around other board members but you should at least show courtesy to all members of this forum regardless of their time here.
    With that said, I think I've all ready found a solution to this problem I've had. I'll just tell the program to simply count over the position the character is in. That way it will stay in the same position.

  • I need help, trying to update from 3.1.3 to 4 or higher.

      Im not sure which generation it is or whatever but I do not have a camera on mine. anyways i am trying to figure out how to udate it from 3.3 to 4 or higher.

    You connect it to iTunes on a computer and check for updates. If iTunes says none are available, it can't be updated further.
    (70490)

  • Need help trying to transfer my information from one iphone to another

    need help trying to transfer my information from one iphone to another

    If you are restoring from an icloud backup you are going to have to erase a content and setting and while in the setup prompts you will get the option to restore from an icloud back...that's the only time you will get the option to restore from an icloud back and that's during setup

  • I am trying to print from iphoto to my printer.  When I click print on under File tab it says that a theme cannot be found and that a theme needs to be intalled?  Why is this window popping up and how I install a "theme" on iphoto?

    I am trying to print from iphoto to my printer.  When I click print on under File tab it says that a theme cannot be found and that a theme needs to be intalled?  Why is this window popping up and how I install a "theme" on iphoto?

    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store or have a Recent Mac you can find it in your Purchases List.

  • 7515 keeps trying to print from photo tray when main tray selected (Mac)?

    Just started uing a iMac with the 7515.  It's driving me nuts that it keeps trying to print from the photo tray when I have main tray clearly selected in the print dialog box.
    I'm trying to insert the picture of the print dialog box, but doesn't seem to be working.  In presets (the second selection box from the top) I've got "Print from Main Tray" selected pretty plainly.
    Turning the printer on and off does not help.
    Any help appreciated.

    Hey Chriscic,
    Welcome to the HP Forums!
    Always the best recommend steps to start off with when troubleshooting with a Mac, is to reset the printing system. Then verify, and repair the disk permissions.
    So to start with the reset of the printing system, I have included the document 'Macintosh: Resetting the Printing System in Mac OS X'. Please select your version of Mac, and follow through the steps. If you have Mavericks, you can follow the steps for OS X v10.8. Also, please do not re-add the printer just yet.
    After the reset of the printing system, you will need to complete the verify, and repair of the disk permissions. I have included the document 'Disk Utility 12.x: Repair disk permissions'. For step three when it asks you to select a disk, please select your hard drive. Once the repair has completed, please restart the Mac.
    After the Mac has restarted, you can now add the printer back into the print queue. The try to print. Are you still experiencing the same issue? Or are you able to print from the main tray?
    If you do require further assistance, please let me know the version of Mac OS X you are running. If you need it, I have included the document 'Finding your OS X version and build information'.
    Looking forward to your reply.
    I worked on behalf of HP

  • I am trying to print from my iphone to my LEXMARK printer. When I select the select printer option when trying to set it up, it does not find my printer??? i dont know what to do at this point. Maybe it does not have the capability? it is a year old???

    Hello!  I am trying to print from my iphone 4 to my LEXMARK printer. When trying to select my printer in my phone it comes up and says that there are no printers available... I dont know what to do at this point. Can someone PLEASE HELP???
    I also cant get my music I have purchased, to become my ringtone???????
    Thank you so much,
    Michael

    What's the model number of your Lexmark printer?

  • I have 10.6.8 and have installed two new printers HP 8610 and an Epson 7880 and can not find the Page Set-up menu anywhere in the applications I a trying to print from. There are no page sizes, paper types, appearsto be locked on a 13x19 size but It.

    Hi to the Mac Folks,
    I have 10.6.8 and have installed two new printers HP 8610 and an Epson 7880 and can not find the Page Set-up menu anywhere in the applications I a trying to print from. This is regardless of either printer selected.
    I primarily print photos from Photoshop CS5.  The term Page Set-up has gone missing in the file pull down menu. Can't make any choices  There are no page sizes, paper types, appearsto be locked on a 13x19 size paper format. Either being too large or too small.
    Saw a 2008 locked issue about this however none of the help fit my situation, options discussed are not available to me.
    Preview has no "Page Setup" - or does it?
    Does the constant struggle with computer compatability weirdness issues ever end or is it a enslavement scheme?
    Woody

    Hey,
    if you know the name(s) of the root folder(s) you want to access (eg. by making a note on the Windows side) then you can make them appear by just doing Shift-Command-G in Finder ("Go to Folder…"), and entering the full path to the required folders.  You can then navigate all the contents as normal.
    HTH,
    S.

  • Hp officejet pro8500 a910 shoots out blank paper when trying to print from windows 10 installed firefox. Printer works fine from chrome and ie.

    I am beta testing windows 10. I use both a hp laptop (dv77128nr) and a desktop (home made). I use a hp officejet pro8500 a910 printer.
    When using firefox I get only blank pages while trying to print from within the browser. Only using firefox. Chrome works fine. IE works fine. If I boot to windows 7, firefox works fine. Can you help or should I report this to Microsoft?
    Thanks for your help.
    ps. Tried resetting firefox. Haven't tried a new install.

    Firefox isn't officially supported on Windows 10. For that matter, Windows 10 isn't officially supported either. This is most likely a problem between Firefox, Windows 10, and your printer's driver. Try updating your printer's driver and see if that helps. Otherwise, it might be a good idea to post this on Microsoft's forums as well.

  • Tried to print from ipad4 with wifi printer. Saying can't find air printer. Printer on and it has printed previously.

    Tried to print from my ipad 4 but saying can't find air printer. It has printed before.

    Sharonanthony-
    First, try double-clicking your Home button.  A row of recent Apps will line up along the bottom of the screen.  Scroll across and look for the Print Center icon.  If it is there, you should be able to delete any print job that might be hanging it up.
    If you can access the internet, then you should have a good connection to a printer that is using the same WiFi.  If you do not have your normal connection to the internet, then I suggest you unplug your WiFi router for a few seconds.  Then reset the iPad's network at Settings-General-Reset-Reset Network Settings.  You will need to reconnect the iPad to WiFi.
    Fred

  • Frustrated trying to print from Canon Pixma 9500

    Does anyone have any tips for printing from Canon Pixma 9500?
    I profiled the screen, printer and paper using colormunki.
    Trying to print from photoshop. Frustrated that the printer interface isn't as described in many online forums (for example, it seems impossible to turn off colour management).
    Getting strange blue borders around everything when using the paper profiles via colormunki.
    Does anyone have any good tips?
    .......help.....!

    I used colormunki to calibrate my screen, printer and to make a paper profile.
    Read one site that suggested the strange blue borders are related to V4 vs V2 paper profiles...whatever that means. Apparently it is an issue printing from photoshop.

Maybe you are looking for

  • ICloud will not allow me to download my documents... Pages won't let me view them...

    Yesterday I decided to start fresh with my iPad so rather than going through and deleting countless bits of info, I restored it back to factory settings. I had pages set up to back up my work to iCloud. I restored my iPad and then put Pages back on t

  • Class, interface, or enum expected error

    import java.awt.Graphics; import java.awt.BorderLayout; import java.awt.GridLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.Icon; import javax.swing.ImageIcon; import javax.swing.JButton; import jav

  • Dissappearing Music (The actual files!)

    Hey guys n gals, I'm running itunes 8.0.0.35 on Windows XP, and I've got a bit of a problem. Every time I open itunes, 2-3 random, whole albums have been removed from my harddrive. The information remains in the library, but with that evil little exc

  • How to make and save my own templetes

    Hey. I use my Ipad and Pages at my work. I have some templetes that I use over and over again, so I would like to save them in the allready made templetes documents, but cant figure out how. Anyone knowing how to do this, Ill be glad. Right now, I us

  • Determine avg of student_marks quickly

    Hi every body, i have a table thrat contain approximately one million records, and i made a function that determine avg of selected student, but i takes 1 to 2 minutes (or more) to return the avg of this student, my question is : 1) is this normal. 2