Q: I am having trouble adding pages to  print pics.

I have 102 pics  that need to be layed out, but can do one page only.  Am using a "Custom format"  Thanx

Thanx Frans:  Tried that, but I must be missing a step.  I have openedd the "New Page", but I get a blank document next to the first one.  When I select the format, I lose the first layout.
Feliz Navidad

Similar Messages

  • I am having Trouble adding Audiobooks in iTunes 12

    Hello, I am having Trouble adding Audiobooks in iTunes 12.1.2.27 with OSX Yosemite 10.10.3, I downloaded 4 Audiobooks from Audible, Synced my iPod but the new Audiobooks do not show up in either the Audiobooks or Music section of my iPod after I sync my iPod, I do see them in the Audio section of iTunes but not on my iPod, any help would be greatly appreciated. thank you Michael

    I do have an icon of my iPod but if I click on it it disconnects my iPod from iTunes.
    If the iPod is connected via Wi-Fi, please connect with USB. If it's already on USB, or if USB is the same. log out or restart the computer and also restart the iPod, then try again. If it still doesn't work, see below.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then take the action that isn't working the way you expect. Select any lines that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name or email address, may appear in the log. Anonymize before posting.
    When you post the log extract, you might see an error message on the web page: "You have included content in your post that is not permitted," or "The message contains invalid characters." That's a bug in the forum software. Please post the text on Pastebin, then post a link here to the page you created.

  • HT4623 I have updated to ios7 and am having trouble adding appointments to my calendars??

    I am having trouble adding appointments to my various calendars. No probems before ios7 update. What am I doing wrong??

    iPhone 3G IOS 4.2.1 is the latest & greatest. There's no more updates for this iPhone.
    You have to buy a new iPhone since most apps target IOS 6 & IOS 7.

  • Having trouble adding purchased and imported music to my playlists

    I'm having trouble adding purchased and imported music to my play lists. For example when I purchase or import new music to my playlists I have to re sync my ipod or the new songs don't appear on my playlists. Perhaps this is because I once unplugged my ipod w/out first disconnecting it. Previously when I purchased and imported music songs would appear on my play lists when I dragged them from purchased to playlist.

    Remember to authorise your new machine with the Apple ID
    Essentially copy the itunes folder and all sub folders over to the same place in the new computer.
    Windows XP: C:\Documents and Settings\username\My Documents\My Music\iTunes\
    Windows Vista: C:\Users\username\Music\iTunes\
    Windows 7: C:\Users\username\My Music\iTunes\
    Windows 8: C:\Users\username\My Music\iTunes\

  • I am having trouble adding art work for itunes 12.0.1.26

    I am having trouble adding art work for itunes 12.0.1.26. Trying to add artwork after you go into "get info" and then "add artwork" doesn't work. Can anyone help. BTW, went into the authorization edit and gave my user id permission to modify things as was suggested in one posting, but that didn't work either.

    thanks a lot

  • Having trouble adding my Mac Pro Tower to my Apple ID  not sure why it does not work

    Having trouble adding my MacPro Tower to my Apple Id will not allow me to download the music and videos I purchase on my Iphone or IPad... Very frustrated with apple....

    Tank 64 wrote:
    My Daughter changed her Apple ID, not sure why. Then she changed it back to the original. She has lost $50 on her iTunes. How does she restore the funds?
    How did she change her AppleID?
    If she simply updated the AppleID (not created a new one with a new email address), log out then log back into iTunes store.

  • I am having trouble adding a gmail account on my iPad..I keep receiving same response that the user name and password are in correct and that mail cannot be retrieved.  I know the username and password are correct.   Any suggestions?

    Having trouble adding a gmail account on my iPad.  This would be a second email account.  Keep receiving message that says username or password are incorrect but I know the are accurate.   Any suggestions?

    You might be better off deleting the account and starting all over again with the account. Here is a gmail help site that will take you through all of the set up steps.
    http://support.google.com/mail/bin/answer.py?hl=en&answer=77702

  • Having trouble adding information to a join table

    I am building a Proof-of-concept HR application in Apex using the hosted site and having trouble entering information into a join table. There are three tables in my schema: Applicants, Postings, and ApplPostings
    "Applicants" fields: Applicant_ID (PK), Name, Address, City, State, Zip, Phone, Email
    "Postings" fields: Posting_ID(PK), Posting_Number, Item_Number, Posting_Date, Title, Description
    "ApplPostings" fields: Appp_ID (PK), Apply_Date, appl_appl_id (FK), post_post_id (FK)
    I have 5 pages in my application
    1. A Report that shows all Applicants
    2. A Form that shows Applicant details and allows editing
    Contains 3 regions: Applicant Detail, Associated Postings, Available Postings
    3. A Report that shows all Postings
    4. A Form that shows Posting details and allows editing
    5. A Form that allows creating an entry in ApplPostings
    On page #2 (from the list above, it's p3 in my app), the "Associated Postings" region shows data from the Postings table for selected applicant per the ApplPostings table. This is the SQL:
    select jp.posting_number,
    jp.posting_date, jp.title
    from applicants ja,
    applpostings jap,
    postings jp
    where ja.applicant_id = jap.appl_appl_id
    and jp.posting_id = jap.post_post_id
    and ja.applicant_id = (:p3_applicant_ID)
    The "Available Postings" region uses this SQL to show information on the remaining postings:
    select jp2.posting_id, jp2.posting_number, jp2.posting_date, jp2.title
    from postings jp2 where JP2.POSTING_ID
    not in
    (select jp.posting_id
    from applicants ja,
    applpostings jap,
    postings jp
    where ja.applicant_id = jap.appl_appl_id
    and jp.posting_id = jap.post_post_id
    and ja.applicant_id = :p3_applicant_id )
    The Posting ID column in "Available Postings" is set up as link to page #5 (from list above, p7 in my app)
    This page shows three fields: Apply_Date, appl_appl_id, post_post_id
    Source information for appl_appl_id:
    Source used: Always
    Source type: Item
    Source value or expression: p3_applicant_id
    Source information for post_post_id:
    Source used: Always
    Source type: Item
    Source value or expression: p3_posting_id
    Both ID fields populate with inherited values correctly.
    The problem is when I try to use the Apex generated "Apply Changes" button
    Nothing happens, there is not data added to that table.
    I get the "Action Processed" message, but the row is not created in the ApplPostings table.
    Any suggestions on what to do next will be helpful.
    Thanks,
    Jody
    Edited by: user10651585 on Dec 31, 2008 9:41 AM

    Hi,
    On the form, any items that represent database columns must use "Database Column" as the Source Type and the column names as the Source Value or Expression. The "Fetch Row..." and "Process Row..." processes refer to these to determine where to write the data. So your first step is to change the two page items to use these settings. Without these settings, there is nothing to write into the table - the "Action performed" message will be displayed because there is no SQL error.
    Now, on your report, your link should pass in the two values needed. In the Column Link settings for the column you are linking on, you have three pairs of fields headed Item 1, Item 2 and Item 3. Each item has a Name and Value setting. Into the Name setting enter in the page 7 item names. Into the corresponding Value setting enter in the column names that contain the values these items need to receive, surrounded by # symbols (for example, #POSTING_ID#).
    Then, when you click on the item in the report, you are passed to page 7 and the fields are correctly populated. As the form correctly identifies these fields as database columns, when you click Apply Changes, the insert can take place.
    Andy

  • Having trouble adding new collection in ibooks?

    Hi
    I am having trouble a adding a new collection in ibooks.  When I click on "+New Collection" it disappears and the keyboard does not pop up and then seems to freeze.  It was working fine yesterday and only encountered this problem this morning.
    Has anyone else had this problem or know how I go about fixing it?
    Thank you!

    The problem is not thru TWC... I can access my account in Outlook and also by Webmail.
    The problem is on the Iphone 4 (I had no problem on my 3G). Like I said, the settings I have entered are the same as the settings for the other 4 accounts. The only portion of the setup that I cannot access during the "failed" setup is the "Advanced" where I can turn SSL off and confirm password authentication.

  • I'm having trouble opening pages through javascript.

    Whenever I try to open a website that requires javascript, a warning message pops up: "Firefox doesn't know how to open this address, because the protocol (javascript) isn't associated with any program."
    However, when I went to options to see if javascript was enabled, it was checked.

    I open Word documents on my Mac using Pages and textedit without any problems.
    I also have a copy of OpenOffice and it can also open Word documents without any problems.
    Could you please provide more details on exactly what you mean when you say you having troubles opening Word documents? What kind of troubles?
    Allan

  • Having trouble loading pages, DNS issue..

    Hello,
    I found my exact problem, and fix at:
    http://docs.info.apple.com/article.html?artnum=106797
    But, the issue didn't resolve. I'm still having trouble loading certain pages, and uploading information to the internet. Is there anything else I can try?

    Hi Diva,
    Can you (briefly) describe what you mean "uploading information to the internet"?
    Safari is not designed for, and will not permit uploading to an ftp (FileTransferProtocol)site like WindowsInternetExplorer might allow.
    There are specialized and free ftp applications that work very nicely.
    "Trouble loading certain pages" is vague, and hard to track down. Maybe it's a problem at their server's end, and not your problem at all.
    If you have highSpeed (DSL, cable) internet, some issues with pages not found can be resolved by:
    Shutdown Mac.
    Power down router.
    Power down dsl/cablemodem.
    wait a minute.
    Power up cablemodem, wait til it's restarted.
    Power up router, wait til it's restarted.
    Power up mac.
    Smile, hopefully

  • Having trouble adding Bellsouth email acct to iPhone 5

    I just purchased an iPhone 5 for my wife and am having trouble setting up her Bellsouth email account (@bellsouth.net) on the phone. This email account works on her 3Gs and iPad 2. The iPhone keeps saying that either the username or password is incorrect. I know the password is correct - just verified that. I used the mail assistant and verified settings on my iPhone from another Bellsouth account. Very frustrating.
    Any suggestions?

    Got it figured out (working). For some reason I had to change the iPad account to an iMap account and it worked. Why is that? They have to be the same? Didn't think that was the case.

  • Recently got LR,and am having trouble communicating with my printer. Photos come out 1/2 bleached. Printer checked out ok. What can I do?

    Recently got LR, and am having trouble with my printer. I get "communication error" messages.Photos come out 1/2 bleached. My Epson R1900 checks out fine. What can I do?

    domh2010 wrote:
    All of that did absolutely nothing. Actually it made things worse.
    If you tried every possible solution in the all those links baltwo provided, there is nothing more anyone here can suggest other than waving a wand over the computer or you throwing salt over both shoulders. 
    Take the computer to an Apple store or an AASP.  Whichever is more convenient for you.  Let the geniuses there figure it out.  Diagnostic testing is free. 

  • Having Trouble adding HREFTrack to new video

    Hi! I am trying to add a HREFTrack to a quicktime movie and it is not working!
    The file I am trying to add is formatted like this:
    {QTtext}{font:Geneva}{plain}{size:12}{textColor: 65535, 65535, 65535}{backColor: 0, 0, 0}{justify:center}{timeScale:30}{width:160}{height:48}{timeStamps:absolute}{lan guage:0}{textEncoding:0}
    [00:00:00.00]
    A<http://google.com>
    [00:00:04.15]
    I have it listed as HREFTrack and not enabled in the properties window. I have even downloaded other videos with working HREFTracks and they do not work when I edit them. I do not want my HREFTrack to have a target-- I would like it to refresh the window I am currently in. I have tried to get this working in Firefox 2.0.017 and Safari 3.0.4, neither with any luck. The working videos I have downloaded were tried in the same browsers.
    I have been creating my HREFTrack by pasting the text for the link into my movie at the point I want it to start, then exporting the text as text, re-opening it in QuickTime Pro to make necessary edits, and pasting it back into the correct location in the movie. Then I save the movie as a self-contained movie. The HREFTrack does not work in Quicktime standalone, or in either browser that I mentioned.
    I am having a similar problem adding text links-- although the text links work fine in the QuickTime player standalone version, but not in either browser.
    I am using TextEdit to edit the files, but I have also tried WordWrangler, with identical results.
    Can anyone tell me what I am doing wrong? Thank you!

    Come on, guys! Someone must know the answer to this!? Or at least where might be a better place to seek assistance? Anyone? Bueller?

  • I use AIM and am having trouble adding .mac users

    I have added a friend who is using a .mac account and I am Using AIM the problem is we both show up off-line to each other.

    Hi Paul,
    Welcome to the Apple Discussion Pages.
    Like the others who have poste I would guess first at entering the account name wrong.
    http://www.ralphjohnsuk.dsl.pipex.com/page6.html see the "What you need to do" section.
    You have to select whether a Buddy is a .Mac name or an AIM one, and choose the Accont type accordingly.
    In neither case do you need to add an @mac or any other suffix.
    Ralph

Maybe you are looking for

  • Search Item drop-down does not show any data for Advanced Search.

    Hi, I have a requirement to add a new criteria to the existing Advanced Search region of 'My Employee Information' in Manager Self Service responsibility. I substituted the AdvancedSearchVO to include the new column. Using personalization i did the b

  • Trying to Add "search" to Form

    In JDev 10.1.2, I have a JSP with a read-only form that has the navigation buttons at the bottom ('First-Next-Previous-Last') and an LOV at the top that also controls which record I am viewing. I have been trying to add the capability to search on th

  • Error: java.lang.NoClassDefFoundError when Automatic Import Service loads

    Hi The netware server running NW 6.5sp4a has been reloaded due to hardware failure. All the data was restored to all volumes. When I run zfdstart I get the following error: error: java.lang.NoClassDefFoundError when Automatic Import Service loads. He

  • Macbook Pro Charger Not Working in USA

    Hi guys, I have a 2009 Macbook Pro 2.6Ghz (15") with a 85W MegaSafe Power Adaptor (UK). I'm using a plug convertor and it doesn't charge within the USA. Am I assuming that my particular version doesn't deal with 100v and I need to buy a USA version?

  • Attachments in and out of forms

    I have a form which I want to gather the attachments off of and render into another form at a later step. I have gotten quite far with this, but have a few issues. The first form submits as PDF and the initial step of the workflow is a processFormSub