Printing new pictures

I can only print new pictures in a new roll. I cannot print pictures that i took a few weeks ago. It's strange ~ Sally

Sally:
Can you give us some information on your setup: model, RAM, HD size and free space, system version, iPhoto version and the exact steps you're taking in trying to print the older pictures.
OT

Similar Messages

  • Auto import, how to prevent LR from jumping to new pictures

    Hi,
    I would like to use my Nikon D700 together with the WT-4 to send pictures automatically to my laptop on events.
    The pictures appear on the laptop's hard drive on a folder that is watched by LR's auto import feature.
    Then my assistant would be at the laptop printing these pictures for customers to buy.
    However, while testing this I cannot seem to disable Lightroom always jumping back to the latest imported pictures.
    This is very annoying, because my assistant has to display the pictures to the customers, so she would be showing some pictures to a customer, and suddenly when I snap a new shot, the laptop jumps to the new picture and my assistant has to go hunting for that customers pictures again...
    Is there some way to disable this?
    Or am I taking the wrong approach to this?
    I could off course disable the auto-import but in that case my assistant would have to go to the import screen every once in a while, which is also not ideal.
    Thanks for any help!

    I don't know a way to disable this.

  • Print a picture from an URL

    HI All,
    is it possible to print (using a sapscript or a report) a picture directly from an URL instead of upload this picture into SAP (with report RSTXLDMC)?
    Many thanks.
    Luca

    Hi
    Check this report
    program zsap_picture_demo.
    set screen 200.
    TYPE-POOLS cndp.
    * CLASS    c_event_receiver
    * DEFINITION
    class c_event_receiver definition.
    * The class is used to test the events raised by the cl_gui_picture
    * class
      public section.
        methods event_handler_picture_dblclick
                for event picture_dblclick of cl_gui_picture
                importing mouse_pos_x mouse_pos_y sender.
        methods event_handler_context_menu
                for event context_menu of cl_gui_picture
                importing sender.
        methods event_handler_context_menu_sel
                for event context_menu_selected of cl_gui_picture
                importing fcode sender.
      endclass.
    * DATA
      data function like sy-ucomm.         " OK-Code field in screen 200
      data url  type cndp_url.                " URL-field in screen 200
      data url2 type cndp_url.               " URL-field in screen 200
      data picture_control_1 type ref to cl_gui_picture.
      data picture_control_2 type ref to cl_gui_picture.
      data container_1 type ref to cl_gui_custom_container.
      data container_2 type ref to cl_gui_custom_container.
      data event_receiver  type ref to c_event_receiver.
      data event_tab type cntl_simple_events.
      data event_tab_line type cntl_simple_event.
      data return type i.
    * PBO
    * before_output
    module before_output output.
      set pf-status 'MAIN0001'.
      IF PICTURE_CONTROL_1 IS INITIAL.
    * Create controls
        create object container_1
          exporting container_name = 'PICTURE_CONTROL_1'.
        create object container_2
          exporting container_name = 'PICTURE_CONTROL_2'.
        CREATE OBJECT PICTURE_CONTROL_1 exporting parent = container_1.
        CREATE OBJECT PICTURE_CONTROL_2 exporting parent = container_2.
    * Register the events
        EVENT_TAB_LINE-EVENTID = CL_GUI_PICTURE=>EVENTID_PICTURE_DBLCLICK.
        append EVENT_TAB_LINE to EVENT_TAB.
        EVENT_TAB_LINE-EVENTID = CL_GUI_PICTURE=>EVENTID_CONTEXT_MENU.
        append EVENT_TAB_LINE to EVENT_TAB.
    EVENT_TAB_LINE-EVENTID = CL_GUI_PICTURE=>EVENTID_CONTEXT_MENU_SELECTED.
        append EVENT_TAB_LINE to EVENT_TAB.
        CALL METHOD PICTURE_CONTROL_1->SET_REGISTERED_EVENTS
          exporting
            EVENTS = event_tab.
        CALL METHOD PICTURE_CONTROL_2->SET_REGISTERED_EVENTS
          exporting
            EVENTS = event_tab.
    * Create the event_receiver object and set the handlers for the events
    * of the picture controls
        create object event_receiver.
        set handler event_receiver->event_handler_picture_dblclick
                    FOR PICTURE_CONTROL_1.
        set handler event_receiver->event_handler_context_menu
                    FOR PICTURE_CONTROL_1.
        set handler event_receiver->event_handler_context_menu_sel
                    FOR PICTURE_CONTROL_1.
        set handler event_receiver->event_handler_picture_dblclick
                    FOR PICTURE_CONTROL_2.
        set handler event_receiver->event_handler_context_menu
                    FOR PICTURE_CONTROL_2.
        set handler event_receiver->event_handler_context_menu_sel
                    FOR PICTURE_CONTROL_2.
    * Set the display mode to 'normal' (0)
        CALL METHOD PICTURE_CONTROL_1->SET_DISPLAY_MODE
             EXPORTING DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_NORMAL.
        CALL METHOD PICTURE_CONTROL_2->SET_DISPLAY_MODE
             EXPORTING DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_NORMAL.
    * Set 3D Border
        CALL METHOD PICTURE_CONTROL_1->SET_3D_BORDER
           exporting border = 1.
        CALL METHOD PICTURE_CONTROL_2->SET_3D_BORDER
           exporting border = 1.
    * new async implementation since 4.6C
    CALL FUNCTION 'DP_PUBLISH_WWW_URL'
      EXPORTING
        OBJID                       = 'HTMLCNTL_TESTHTM2_SAP_AG'
        LIFETIME                    = cndp_lifetime_transaction
      IMPORTING
        URL                         = url
      EXCEPTIONS
        OTHERS                      = 1.
    * Load the picture by using the url generated by the data provider.
        if sy-subrc = 0.
          CALL METHOD PICTURE_CONTROL_1->LOAD_PICTURE_FROM_URL_ASYNC
             exporting url = url.
        endif.
    CALL FUNCTION 'DP_PUBLISH_WWW_URL'
      EXPORTING
        OBJID                       = 'DEMOWORD97SAPLOGO'
        LIFETIME                    = cndp_lifetime_transaction
      IMPORTING
        URL                         = url2
      EXCEPTIONS
        OTHERS                      = 1.
    * load image
        if sy-subrc = 0.
          CALL METHOD PICTURE_CONTROL_2->LOAD_PICTURE_FROM_URL_async
             exporting url = url2.
        endif.
      endif.
    endmodule.
    * PAI
    * after_input
    module after_input input.
      case function.
    * At the end of the program destroy the control
        when 'BACK'.
          CALL METHOD container_1->FREE.
          CALL METHOD container_2->FREE.
          leave to screen 0.
    * Change the display mode
        when 'NORMAL'.
          CALL METHOD PICTURE_CONTROL_1->SET_DISPLAY_MODE
               EXPORTING DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_NORMAL.
          CALL METHOD PICTURE_CONTROL_2->SET_DISPLAY_MODE
               EXPORTING DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_NORMAL.
        when 'STRETCH'.
          CALL METHOD PICTURE_CONTROL_1->SET_DISPLAY_MODE
             EXPORTING DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_STRETCH.
          CALL METHOD PICTURE_CONTROL_2->SET_DISPLAY_MODE
             EXPORTING DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_STRETCH.
        when 'FIT'.
          CALL METHOD PICTURE_CONTROL_1->SET_DISPLAY_MODE
               EXPORTING DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_FIT.
          CALL METHOD PICTURE_CONTROL_2->SET_DISPLAY_MODE
               EXPORTING DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_FIT.
        when 'NORMAL_CTR'.
          CALL METHOD PICTURE_CONTROL_1->SET_DISPLAY_MODE
        EXPORTING DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_NORMAL_CENTER.
          CALL METHOD PICTURE_CONTROL_2->SET_DISPLAY_MODE
        EXPORTING DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_NORMAL_CENTER.
        when 'FIT_CTR'.
          CALL METHOD PICTURE_CONTROL_1->SET_DISPLAY_MODE
          EXPORTING DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_FIT_CENTER.
          CALL METHOD PICTURE_CONTROL_2->SET_DISPLAY_MODE
          EXPORTING DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_FIT_CENTER.
    * Clear the picture
        when 'CLEAR'.
          CALL METHOD PICTURE_CONTROL_1->CLEAR_PICTURE.
    * Load a new picture
        when space.
          CALL METHOD PICTURE_CONTROL_1->LOAD_PICTURE_FROM_URL
               exporting url = url
               importing result = return.
          call method cl_gui_cfw=>flush.
          if return = 0.
            url = text-000.
          endif.
      endcase.
      clear function.
    endmodule.
    * CLASS   c_event_receiver
    * IMPLEMENTATION
    CLASS C_event_receiver implementation.
    * CLASS   c_event_receiver
    * METHOD  event_handler_picture_dblclick
      METHOD EVENT_HANDLER_PICTURE_DBLCLICK.
    *        for event picture_dblclick of c_picture_control
    *        importing mouse_pos_x mouse_pos_y.
        DATA pos_x(5) type c.
        DATA pos_y(5) type c.
        pos_x = mouse_pos_x.
        pos_y = mouse_pos_y.
        IF SENDER = PICTURE_CONTROL_1.
          MESSAGE I000(0K) WITH
            'DoubleClick' 'Upper Picture' POS_X POS_Y. "#EC NOTEXT
        else.
          MESSAGE I000(0K) WITH
            'DoubleClick' 'Lower Picture' POS_X POS_Y. "#EC NOTEXT
        endif.
      endmethod.
    * CLASS   c_event_receiver
    * METHOD  event_handler_context_menu
      METHOD EVENT_HANDLER_CONTEXT_MENU.
        data menu type ref to cl_ctmenu.
        create object menu.
        call method menu->ADD_FUNCTION exporting
          fcode = text-001
          TEXT = TEXT-001.
        call method menu->ADD_FUNCTION exporting
          FCODE = TEXT-002
          TEXT = TEXT-002.
        call method menu->ADD_FUNCTION exporting
          FCODE = TEXT-003
          TEXT = TEXT-003.
        call method menu->ADD_FUNCTION exporting
          FCODE = TEXT-004
          TEXT = TEXT-004.
        call method menu->ADD_FUNCTION exporting
          FCODE = TEXT-005
          TEXT = TEXT-005.
        CALL METHOD SENDER->DISPLAY_CONTEXT_MENU
          EXPORTING CONTEXT_MENU = MENU.
      endmethod.
    * CLASS   c_event_receiver
    * METHOD  event_handler_context_menu_sel
      METHOD EVENT_HANDLER_CONTEXT_MENU_sel.
        DATA DISPLAY_MODE TYPE I.
        IF FCODE = TEXT-001.
          DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_NORMAL.
        ENDIF.
        IF FCODE = TEXT-002.
          DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_STRETCH.
        ENDIF.
        IF FCODE = TEXT-003.
          DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_FIT.
        ENDIF.
        IF FCODE = TEXT-004.
          DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_NORMAL_CENTER.
        ENDIF.
        IF FCODE = TEXT-005.
          DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_FIT_CENTER.
        ENDIF.
        CALL METHOD SENDER->SET_DISPLAY_MODE
             EXPORTING DISPLAY_MODE = DISPLAY_MODE.
      endmethod.
    endclass.
    Reward all hepfull answers
    Regards
    Pavan

  • How can I print multiple pictures on a single sheet?

    Today 3/27/2012 I tried downloading HP software that says it has a new feature that allows printing multiple pictures on a single sheet of photopaper.  The download started and halted at only one square and sat there flashing for hours, meaning it wasn't downloading on my Pavilion desktop computer.  Since it's a new feature (apparently), no wonder no one as yet has asked this question and so I doubt if anyone has the answer.  But, I'll wait to see.

    You are probably going to get help by posting in the iPhoto forum. You can easily locate it by clicking on Apple Support Discussions on the top left of this page then navigating to the iPhoto forums.
    Roger

  • How to chose either you want to print a picture or document black in white or color?

    How to chose either you want to print a picture or document black in white or color from your computer before printing; regardless of picture being colored or black in white.  
    I bought HP Laserjet Pro 200 Color Mfp m276 yesterday. I am completely new to printers and printing. My question is how to chose either the print out would be color or Black in white. 
    At my school liberary and public liberaries, when i print an image or document, in there printer drop down selection menu, they have the option of Color print or black in white print. I want to make mine same too. I have two printers there which is 
    1.  HP Laserjet Pro 200 Color Mfp PCL6
    2. NPI16FE39 (HP Laserjet Pro 200 Color Mfp m276NW)
    I tried goint to Contol Panel>Drvices and Printers> HP Laserjet Pro 200 Color> printing preferences> and selected "Print in Graystyle"
    than i printed from HP Laserjet Pro 200 Color; by selecting it from drop down menu, but the print out was still coloured..
    PLEASE HELP ME!!
    it may be something to do with printing settings..
    I just want to select between Black in White and color ... before printing the page out (regardless of picture being colored)

    Hi,
    Here's a link to a thread with a similar issue on a different printer that might help.
    "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"

  • Printing multiple pictures per page

    just started working with iphoto. simple question that i can't seem to find the answer for. how do i print multiple pictures on the same page (ie contact sheet)

    Welcome to Apple Discussions,
    Go to the help menu in iPhoto and type in "contact sheet". One of the results you get should be this one: http://docs.info.apple.com/article.html?path=iPhoto/8.0/en/6438.html
    Depending on what your end goal is you might find this help menu entry helpful as well: http://docs.info.apple.com/article.html?path=iPhoto/8.0/en/18460.html
    If you are new to iPhoto consider reviewing the free video tutorials offered by Apple: http://www.apple.com/ilife/tutorials
    Hope that helps.

  • I can not print multiple pictures on one page pse13 windows 8

    I have tried to print multiple pictures on one sheet and the program will not send it to the printer.  I went into picture package and got the 2 pics to show on one page and chose my printer, but when I hit print the screen goes back to the print page with only one pic on the page

    I don’t think it’s my printer I printed many multiple pictures with my old photoshop 5 with no prblems.  the only reason I bought photoshop 13 was because 5 would not work on my new computer with windows 8.
    Sent from Windows Mail

  • CS6 does not support the picture package plug in.  How to print like picture package in CS6?

    CS6 does not support the picture package plug in.  How to print like picture package in CS6?

    If I recall, the picture package is in Bridge. Which was removed in CC and newer.
    In bridge change the workspace to see the output options.

  • Need to print 5x7 pictures rather than 4x6 - using windows 8

    Hi I need to set my new HP Mobile 150 to print 5x7 pictures rather than the default 4x6. I have changed the paper size in the printer properties but I'm still getting 4x6 prints - any advice would be very appreciated!
    Thanks
    BarbaraSki

    Hi BarbaraSki,
    Welcome to the HP Support Forums. I understand that when trying to some 5 x 7 photos that they are printing in a 4 x 6 format using your Officejet Mobile 150 printer.
    To better assist you, would you please provide some additional information:
    How is the printer connected (USB cable or Bluetooth)?
    What program are you using to print the photos?
    Are you trying to print borderless 5 x7 photos? Borderless printing is not support for 5 x 7 photos, please see the Officejet Mobile 150 Printer Specifications.
    What operating system are you using on your computer (Windows 7, Mac 10.9, or Windows 8, etc)?
    Have you downloaded and installed the full feature software and drivers?
    I’m sorry to ask this, but have you loaded 5 x 7 photo paper into the printer?
    Thank you.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • How to print new line in jsp page

    hi
    how to print new line in jsp page
    thanks

    \n - new line character is in java specific not HTML
    specific.Well, if the correct line separator sequence (by far not always \n) would be used, it does add a new line to the HTML output. Too bad that you don't want to see HTML but formatted text. The BR tag is a formatting element for the displayed text, not a line break in HTML. ;)

  • Print multiple pictures on one page..so frustrating please help

    Just trying to print multiple pictures on a single piece of paper. The drop down menu that says "print multiple pictures on page" is grayed out and wont let me select it. I have read thread after thread , watched tutorial after tutorial and nothing addresses this simple command. What am I missing. Thank you in advance for your help

    Select the pictures and type Command+P to bring up the Print window. Then click on the Contact Sheet option at the left. You can change the number of photos per page and their size by clicking on the Customize button and the changing the number of columns on the page. The size of each photo will automatically be scaled to fit.
    If you want a specific size, then instead of selecting Contact Sheet select a print size. The size you select will determine how many photos of that size you'll get on the paper size selected.

  • Can I print multiple pictures in multiple custom sizes on the same page?

    Hello. I'm trying to print some pictures for a frame. The frame has 4 slots, with two 3.5x5, one 4x6, and one 3x3. I've already changed the sizes and cropped appropriately, but iPhoto seems to resize the pictures to fit the page when I go to print (in N-Up).
    Does anyone know how to do this (or if it is possible)? I have Photoshop CS2. Would I be better off trying to do this in CS2?
    Thanks for any help.
    15" MacBook Pro C2D 2.33   Mac OS X (10.4.10)  

    Bizarro:
    Welcome to the Apple Discussions. JMEH has suggested the best way to get what you want. Create a blank 8.5 x 11 canvas at the dpi size that your camera produces. Mine Canon gives me 180 dpi. Then, using PS as iPhoto's primary editor, crop the file to the size you want and drag it into the open blank canvas and position it where you want. Just make sure in PS that the dpi is set to 180 (or whatever you choose to use). Once dragged into the blank canvas the changes to the file, i.e. crop, does not have to be saved and you can close that file without making any permanent changes. Do that for each of the photos you want on the blank canvas, arrange and print. When done you can close the canvas without saving for use the next time.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • I have many photos with file extension of .PDD and that Photo Deluxe 4 no longer will operate in Win 7. How can I open?  Next in Elements 11, how do I load and print different pictures and different sizes options on the same page?

    I have many photos with file extension of .PDD and that Photo Deluxe 4 no longer will operate in Win 7. How can I open?  Next in Elements 11, how do I load and print different pictures and different sizes options on the same page?
    Thanks,
    Shir

    sbmgrams wrote:
    I have many photos with file extension of .PDD and that Photo Deluxe 4 no longer will operate in Win 7. How can I open?
    See here:
    Reading PhotoDeluxe PDD Files

  • How can I import only new pictures from my iPhone 5C?

    I want to import only the newest pictures from my iPhone to my desktop.  I used to get a prompt asking me if I wanted to import only the new pictures, and now there is no prompt and my only option is to import all of the photos on my iPhone.  I appreciate any help!

    Try iPhone Data Recovery - Easily Restore Lost Data from iPhone or similar software.

  • I wonder how pro photographers use aperture?I shoot raw and my harddrive is alreay full.I'm not able to import new pictures.Is it ok if i create a vault and delete all my projects in the HD.Can I use an external HD use aperture through the vault??

    I wonder how pro photographers use aperture?I shoot raw and my harddrive is alreay full.I'm not able to import new pictures. I don't know what to do. I created a vault. My plan was to create a vault(put all my master files into an external harddrive) and then delete all my projects in my mac pro's harddrive. Is it the correct way to do it ? What should I do if I have thousands of raw files ? How should my workflow be? Can I use an external HD and use aperture through the vault,without keeping the master files on my computer's hard drive?? Or should I shoot raw+jpeg and store raw files in an external backup harddrive and import only jpegs into my aperture library?

    There's a bit to learn.  It will slowly make sense.
    Aperture is an empty field.  You're given a tractor and a whole bunch of attachments. What you grow, how, and where, is entirely up to you.
    Vaults are for back-up and only for back-up.  They have nothing to do with storing your working files.
    When your Library outgrows your system drive (and for good performance, you should leave c. 20% of every drive empty), it's time to convert some of your image's Masters from Managed to Referenced.  ("Managed" and "Referenced" refer to Masters, not to Libraries.)
    There are hundreds of posts in the forum, and several pages in the User Manual on using Masters.
    Many people run Aperture with the Library on their system disk, and most (or all) of their images' Masters on external FW drives.  This is a good set-up.  Note that you will likely have to take steps to back-up the data on your external drives.
    If you do the above, there should be no reason to delete any Projects.
    The choice of RAW or RAW+JPEG or JPEG depends on the kind of work you are doing.  I capture RAW only -- but I don't do any commercial shoots.  Pros on deadlines report that the RAW+JPEG works well for them.  Capture JPEG if it saves you time.  IMHO, there is not a good reason to shoot JPEG to save space (space is cheap; time expensive).
    Short-term solution: buy and use a FW800 external 1 TB drive, formatted "Mac OS Extended (Journaled)", and using Aperture relocate the Masters of all images older than 30 days to that drive.  (Be sure to change your back-up strategy to include this new drive; you may need a second new drive.)
    This general post of mine might help you understand more about Aperture.

Maybe you are looking for