Printing multiple copies of a picture on the same page

In the past I was able to print multiple wallet size pictures on one page. Now with iPhoto 08 there seems no option to do this. It appears that the only way I can do it is to make duplicates and then highlight them to print them. Does anyone know how I can choose a number of copies to be printed on one page?

I am running iPhoto 7.0.2 (341) and I do not see the options that you are describing. I believe I know what you are trying to describe, so let me walk through how I get there. For the record, I am trying to print 5 copies of the same photo in 2x3 size on the same piece of 8x10 photo paper. This article is giving me hope so I hope that someone can reply to this.
-I select the photo, hit the print button
-Select the 'customize' button
-click the 'settings' button and do not see the choice that you describe. The only options in this dialog are for title font, style and size.
Am I missing something? Did I need to do something prior to this? I am very hopeful for some help.

Similar Messages

  • Can anybody explain how to print multiple copies of different documents at the same time as at the moment I have to open each individually and press print

    Can anybody explain how to print multiple copies of different documents at the same time as at the moment I have to open each individually and press print

    is this a windows in bootcamp question ?

  • HOW DO I PRINT MULTIPLE COPIES OF ONE PHOTO ON A SINGLE PAGE?

    Since Apple has not made this feature available, I am not able to print multiple copies of a single photo on one page. HELP suggested I download Portraits and Prints which I could use for free. However, I have downloaded this and note that DEMO watermark will appear on all photos unless I purchase the program. Is there a way to print without the DEMO watermark using this program or is there another free program that will allow me to print multiple copies of a single photo on a single page? Please help as I have spent 2 hours on the phone with Apple and it has gotten me no closer to a solution - something I could easily have done on the older versions of I Photo. Thanks!

    Sadly, I have no pull down menu when I click on Customize or settings? I am using IPhoto 08 vers. 7.0.1. I was told by Apple HELP that this feature is not yet available, even though the instructions say to do exactly what you have said. But there is no pull down menu and no option to print multiple photos. It says print a single photo and it is clicked and I cannot unclick it. Any help would be appreciated. Do you actually have a pull down menu with Print Multiple Copies of One Photo as an option? What version of IPhoto provides this? Apple seems to think it is not available and it certainly isn't available on my system. Any help will be appreciated. Thanks.

  • Can't print TWO 5 x 7 photos on the same page!

    I recently updated from Photoshop Elements 7 to Photoshop Elements 10 and now I cannot print TWO 5x7 photo's on the same page, letter size photo paper! I've never had this problem before! Does anyone know how to fix this? I have tried everything! Thanks Julie

    Hatstead, I've already tried that and two 5 x 7's will not show up on the preview screen! I'm pretty familiar with all the printing preferences and have tried every concievable option to try and print two 5 x 7's to the same page.  I can go back to my version 7 Photoshop Elements ( havent uninstalled it yet) and print two 5 x 7 photos to the same page with no problem! I'm really beginning to believe that version 10 does not support printing more than one photo to a page even when you want to print say a bunch of 2 x 3's to the same page. Even when i try to print one of the picture packages it will only print one pic to a page at a time!!!!  Something can't be right! I only print two 5 x7's to a page 95% of the time, so this is a HUGH problem for me! Thanks for any help you can give me.

  • How do I print multiple reports to a directory at the same time

    I'm trying to print a list of monthly reports to a directory by using the code below. The first part of the code runs a query to select Business Units that will receive the reports. The idea is to cycle through this list and print one report for each
    Business Unit.  These vary from month to month. I create a record set from that query.  Where I'm getting stuck is in trying to pass the Business unit selected in the first query to the query that runs the final report. I end up getting multiple
    reports with different titles but the content is the same, so I'm doing something incorrect.  Here is the code.  Any help would be greatly appreciated. QryNewMOR runs the report.
    Private Sub Cmd012815_Click()
        Dim qdf As DAO.QueryDef
        Dim strSQL As String
        Dim strPathName As String
        Dim blRet As Boolean
        Dim rs As DAO.Recordset
        Dim stDocName As String
        Dim strSavedSQL As String
        Dim strBus As String
        Dim strExec As String
        If Me.Dirty Then Me.Dirty = False
        stDocName = "RptNewMOR"
        strSQL = "SELECT [Business Unit Long],[Responsible Executive] FROM tblRespExec WHERE (((tblRespExec.SelectedPrint)=True));"
        Set rs = CurrentDb.OpenRecordset(strSQL)
        If rs.RecordCount < 1 Then
            MsgBox "No Bus lines or Execs selected", vbCritical, "Error"
            Exit Sub
        End If
       'CreateFolder "C:\Test MOR"
        'store the current SQL
        Set qdf = CurrentDb.QueryDefs("QryNewMOR")
        strSavedSQL = qdf.SQL
        qdf.Close
        Set qdf = Nothing
    Do
        strBus = rs![Business Unit Long]
        strExec = rs![Responsible Executive]
        Set qdf = CurrentDb.QueryDefs("QryNewMOR")
       strSQL = strSQL + Left(strSavedSQL, InStr(strSavedSQL, ";") - 1) & " and (qryNewMOR.[Draft Distribution List]=" & rs![Responsible Executive] & ");"
        strSQL = strSavedSQL
        qdf.SQL = strSQL
        Debug.Print strSQL
        qdf.Close
        Set qdf = Nothing
        strPathName = "C:\Test MOR\" & rs![Business Unit Long] & ".pdf"
        DoCmd.OutputTo acOutputReport, stDocName, acFormatPDF, strPathName
        rs.MoveNext
    Loop Until rs.EOF
    rs.Close
    Set rs = Nothing
    'restore the SQL
    Set qdf = CurrentDb.QueryDefs("QryNewMOR")
    qdf.SQL = strSavedSQL
    qdf.Close
    Set qdf = Nothing
    End Sub
    Dean J. Waring

    I'm trying to figure out how to combine the two and am obviously not succeeding. Do you have a suggestion on how to make that work?
    Hi Dean,
    I am not completely sure of what you want. I suppose you want to modify the SQL definition of QryNewMOR, and use that modified query for the report?
    In that case, and in the line of your program, I would make a QueryDef: QryStdMOR, with the "standard" strSavedSQL (so: strSavedSQL =  QryStdMOR), construct strSQL in the same way, and assign this to the SQL definition of QryNewMOR.
    Thus, in your code at the very beginning, skip the line strSQL = strSavedSQL.
    strSQL = Left(strSavedSQL, InStr(strSavedSQL, ";") - 1) & " and (qryNewMOR.[Draft Distribution List]=""" & rs![Responsible Executive] & """);"
    ' skip this line: strSQL = strSavedSQL
    qdf.SQL = strSQL
    Within the loop you should not start with strSQL = strSQL & ...., because strSQL will retain then its value from the previous loop, and increases and increases...
    Finally, I have added some double doublequotes around rs![Resposible Executive], because string expressions must be enclosed by double doublequotes (or eventually a single singlequote).
    Imb.
     strSQL = strSQL + Left(strSavedSQL, InStr(strSavedSQL, ";") - 1) & " and (qryNewMOR.[Draft Distribution List]=" & rs![Responsible Executive] & ");"
        strSQL = strSavedSQL
        qdf.SQL = strSQL

  • Problem with multiple copies of Office 2013 in the same account

    This week our company purchased five more copies of Office Home & Business 2013. I followed the steps to redeem online and try to activate it. Now the problem I can't add any more license into this account (it already have 8 licenses
    of office 2013). How many license can register in one account? How can I find out which one is which one? It is a pain to install a copy of office 2013.    Due to this situation I am sure I had made a misktake and used the same key twice...now
    I need to find out which key is reused and try to fix the problem.  Can Microsoft make it easier for us?  Please!!!

    Hello friend,
    I've never heard the limit of the number for one Microsoft Account, there shouldn't be a limit as I know, and One product key should only be able to activate one machine, if you attempt to use it activate a second machine, there should be a prompt.
    It seems you don't have "too many" machines in your organization, you can refer to the below:
    http://www.msoutlook.info/question/537
    We can find the license keys for Office 2013 via a script from Microsoft:
    Office 2013 (32-bit) on a 32-bit version of Windows 
    cscript
    "C:\Program Files\Microsoft Office\Office15\OSPP.VBS" /dstatus
    Office 2013 (32-bit) on a 64-bit version of Windows 
    cscript
    "C:\Program Files (x86)\Microsoft Office\Office15\OSPP.VBS" /dstatus
    Office 2013 (64-bit) on a 64-bit version of Windows 
    cscript
    "C:\Program Files\Microsoft Office\Office15\OSPP.VBS" /dstatus
    It only displays the last 5 characters, but in most cases you can tell which key this machine is using.
    You may also need contact Microsoft's phone service when you need activation issue:
    http://support.microsoft.com/gp/customer-service-phone-numbers/en-us
    I hope this helps on your scenario.

  • Multiple copies of apps open at the same time

    It appears that some documents that have been saved between back-ups are opening from a copy of an app that is saved in Time Machine and not the applications folder.
    In some menus, like in the HP scanner setup, it shows five copies of each app in the "scan to" chooser.
    A little research reveals that the different apps are are stored in Time Machine backups.
    Any ideas or fixes on this one.

    Try ejecting your Time Machine disk and launching the misbehaving apps to see if that persuades them to launch from your internal rather than Time Machine. If the apps don't launch it would probably be a good idea to run Disk Utility and Verify your internal disk and Repair Permissions. If the internal has errors you have to repair it from the Leopard installation disk. After you boot from the Leopard DVD and pick a language pick Utilities > Disk. After you repair the disk repair permissions.
    Booting from the installer DVD forces Time Machine to do a deep traversal so don't be concerned if the first backup after you reboot takes a good long time in the preparing stage.

  • In Acrobat XI, how can I select and move multiple text/image blocks simultaneously on the same page?

    I work with student-generated PDFs that require all content to be within a specific margin range. Occasionally tables and figures are indented or otherwise spaced incorrectly so that the content violates the margin requirements. In Acrobat X, I could use the select tool to draw a select box around all of the text and lines within a table, for example, and just slide the entire table over a bit to meet the requirements without sending the PDF back to the author for a correction. This didn't always work, but often enough that I was able to use it on a daily basis.
    Is there a way to select multiple (but not ALL) text blocks and image pieces on a page, so they may be moved simultaneously? If I have to select every text block and line (or every point and line within a graph) and move them each individually, this is going to be a nightmare.
    I have Acrobat XI for both Mac and Windows, but tend to use the Windows version more often.

    Hey, I'm using Acrobat XI and I can't multi select like I use too do with shift as always. Now I get a green note every time I want to multi select with shift + click as always. I also use Pitstop and I get the same green notes.
    Can someone help me ?

  • Trying to create multiple lines of radio buttons on the same page. how do i do that??

    Greetings. I'm brand new to this, and am trying to create a form with multiple lines of radio buttons on a single page to send to my students.  How can I do this??  I currently have a table that I want the students to fill out and return, but every time I put radio buttons in, the form only allows selection of one of the 12 - I want students to be able to select one on each row.........

    Each group of three radio buttons for a row should have the same field name and different "Radio Button Choice" (see Options tab). So if you copy & paste the first row, be sure to rename the new ly added radio buttons.

  • Need to print data sequential in 3 columns in the same page.

    hi mates
    i have to print values in smarform sequentially in 3 columns in same page. see the below details for clear understanding of the requirement. the ouptup should be printed as shown below on the page and same logic is applicalbe when the data flow to the next page as well.
    value1      value5        value9
    value2      value6        value10
    value3      value7        value11
    value4      value8        value12
    next page: contined
    value13      value17        value21
    value14     value18         value22
    value15      value19        value23
    value16      value20        value24
    hlep me with the solution for this requirement.
    regards
    mano

    1) Define new window as type MAIN in Windows tab.
    2) then go to "Page Windows" tab
    select Edit > Create Element
    select MAIN window from selection which is defined in step 1
    3) enter window margin and width / height for window 1 (Column 1)
    4) Repeast steps 2 & 3 for two more windows (for co;umn 2 & 3)
    so you will have 3 windows as 3 columns of type MAIN, then if you try to print something, it will automatically flow through columns to next page
    Thanks.

  • How do you print multiple copies of a single photo on one page in iPhoto 9.5?

    Help. Duplicating the photo as many times as I need it and then selecting them to print works, but in the last version of iPhoto you could explicitly choose to do just this. How do you do it now??

    That feature has been removed from the latest version of iPhoto. Send a feature request to Apple via http://www.apple.com/feedback/iphoto.html.
    OT

  • Need to print multiple copies

    Hi Friends,
    Anybody can give some idea or suggestion how to print multiple copies of an invoice for the same output type.
    Regards
    raju

    Hi
    In this case you need to change the program, here you can know the message type and so you can decide how many times a document has to be printed:
    DATA: COPIES TYPE I.
    IF NAST-KSCHL = .....
    ELSE.
    ENDDO.
    DO COPIES TIMES.
    > PRINT THE DOCUMENT
    ENDDO.
    Max

  • HP PRO L7780 not printing multiple copies on mac

    Hi,
    Have bot mac (OSX 10.6) and pc (windows 7). On pc I can print multiple copies of a document. The mac only prints one. Even though I select 2 or more. What to do?
    Thanks for the help!

    Hi iwanvoerman,
    I'm sorry to hear that you are having problems printing multiple copies from your Mac OS X 10.6 machine to your Officejet Pro L7780 printer.
    I have included a document on changing the print settings on a Mac, it has a section dedicated to Mac OS X 10.6.
    Changing Print Settings in Mac OS X
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&docname=c01368574#N502
    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

  • 1300 suddenly stops printing multiple copies

    My Laserjet 1300 suddenly stopped printing multiple copies. I am using the driver supplied with win7 and it has been working for the last year. I have tried installing PCL6 driver instead of PCL5 and I can print multiple copies for one job only and then the computer does not recognize the printer. Has HP sent an update that has changed the way win7 works with the printer? Any one with a solution or idea?  Thanks, John

    I am sorry, but to get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial printer. You can do this at Printers - LaserJet.
    Click on New Post.
    I hope this helps.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Laserjet won't print multiple copies on Windows 8

    No matter how many print copies I request, it only prints one at a time. Using Word 2010. I'm running Windows 8.1 and the printer is a 1320 PCL5.
    This question was solved.
    View Solution.

    The START Button returns with Windows 8.1; Classic Shell for Windows 8; and
    future Windows 10.
    METRO interface -- go to Settings for Printers.
    Device and Printers is correct area for setup/changes.
    The ABS PDF Driver v400 is not a Physical Hardware printer, it is the ability for you to convert a MS Word document by "printing" to an Adobe PDF file.
    Under Devices and Printers, you should see an HP Printer (1320) Icon/Image OR
    the HP Universal PCL Driver (Icon/Image) for HP Printers.
    ====
    HP Advisory.
    NOTE: The PCL6 print driver has continued to experience some difficulties printing multiple copies from accounting applications to the HP LaserJet 1320 series printer after enabling advanced printing features.
    Printing with the HP postscript (PS) emulation print driver and enabling the advanced printing features has resolved this issue in these cases.

Maybe you are looking for

  • Error message when trying to install Mavericks onto macbook pro.

    Hi Been trying to install Mavericks onto my macbook pro (10.6.8) but the install fails after 3-5 minutes and I get this error message: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[N

  • Folder Actions script no longer runs on new file creation

    Hope this isn't trivial.......first time posting here...hopefully in the right place.I'm not a total Mac OS X newbie...and surely no techie, either. Dabbled a wee bit with Automator and scratchin' my head on this one. Help, please! Any idea why folde

  • Extremely slow burning w/external firewire dvd burner

    Received replacement refurb dvd drive from LaCie. Burning is extremely slow. Tried unit on another G4 Dual 867MHz RAM 768 MB and unit runs properly. Second unit has no peripherals. Disconnecting everything from original G4 gives very slight improveme

  • ITunes 12.01 will not launch

    I have updated to Yosemite and iTunes 12.01 on a MacBook Pro. All find except iTunes will not launch. It just flashes and nothing happens. I booted in Safe mode and tried - no good. Also reinstalled iTunes but still nothing. Connected my iPhone and s

  • How to create a new Recovery Partition without Recovery Media T440s

    Dear All. My T440s no longer has the recovery partition. I'm with Win 8.1 Pro, but I would like to restore the system. How can I do to restore and create a new Recovery Partition? Thanks, Lucas Mendes