Using Aperture, I printed a large hardcover book.  Upon delivery, I found a gross error in wording on the cover.  Is there a way to get the cover only reprinted?

Using Aperture, I printed a large hardcover book.  Upon delivery, there was a spelling error on the cover  of the books.  Is it possible to get just the cover of the books reprinted correctly?

No.  If Aperture works similar to iPhoto as far a creating PDFs of the book you can create a pdf of the book and using it find a printer like Kinkos that could print a new cover. The PDF file that gets created by Control-clicking the background in the book mode will create the correct type of pdf file for this:
Click to view full size
In iPhoto the PDF that gets created when you try to print the book and select PDF ➙ Save as PDF creates the wrong format for what you want.  If you have trouble creating that PDF file ask over in the Aperture forum.
OT

Similar Messages

  • My mac book is not working so i can no longer use my mac to back up my note in my phone and unfortunately i dont have outlook on my pc is there a way to get all my old notes from my 3gs to my 4s iphone?

    my mac book is not working so i can no longer use my mac to back up my note in my phone and unfortunately i dont have outlook on my pc is there a way to get all my old notes from my 3gs to my 4s iphone?

    Reset, hold both home and power buttons until the iPhone begins to start, try this a few times if necessary. If still problem, you may have to just Restore your iPhone to get it working. In the future sync your iPhone with iTunes routinely and when it contains important data, iCloud when set correctly will do this for you continuously.

  • On my iPhone 4s, I sent a picture via email and asked to size it down.  However, it seems now that the pic stored on my iphone is now forever the smaller size which is not suitable for printing.  Is there any way to get the larger size back?

    On my iPhone 4s, I sent a picture via email and asked to size it down.  However, it seems now that the pic stored on my iphone is now forever the smaller size which is not suitable for printing.  Is there any way to get the larger size back?

    sure pretty simple.  make a backup of your current settings
    http://support.apple.com/kb/HT1766?viewlocale=en_US
    then restore device from old backup you need pics off of
    then import pics to computer
    http://support.apple.com/kb/HT4083
    you may need to save pics to camera roll first
    then restore the new backup and sync pics back to phone via itunes
    Peace, Clyde

  • When using an external (ergonomic mouse) is there any way to get the wheel to scroll one full page at a time?

    When using an external (ergonomic mouse) is there any way to get the wheel to scroll one full page at a time? Much appreciated.

    I can't use the keyboard to scroll. I need to keep my hand on the mouse, otherwise I'd never get anything done. Since I have no problem getting Firefox to scroll one page at a time, and I'm constantly jumping between 3 browsers, it would be nice to be able to scroll a full page at a time in Safari, just like I can in Firefox. Thanks.

  • I have downloaded a Audio Book from Itunes Store, but rencently i have had to reinstall windows, is there any way to re-download the audio book from Itunes, i know that the audio books are one time downloads, but is there any way to get the audio book

    I have downloaded a Audio Book from Itunes Store, but rencently i have had to reinstall windows, is there any way to re-download the audio book from Itunes, i know that the audio books are one time downloads, but is there any way to get the audio book back as i have already paid for it once and i would not like to pay for it twice.

    If you haven't got a backup copy and if it's still in the store then you can try contacting iTunes support and see if they will grant you a re-download (there is no guarantee that they will) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • Is there a way to get the filename only on iOS using CameraRoll?

    This post is a sidetrack from this post: http://forums.adobe.com/thread/848761?tstart=0
    The method used in that post works perfect on both Android and iOS for selecting and uploading files.... BUT is there a way to get the filename of the file from the mediaPromise cross-plattform?
    If you let the user select an image it's not very nice to have the image be called "temp.jpg" after uploading - you want the user to know which image he/her have uploaded
    Any ideas? The "mediaPromise.file.relativePath()" works on Android but not on iOS. Not "mediaPromise["file"].url/relativePath/nativePath" either.
    Thank you

    Hey Joe what do you think of this solution.
    1. Let the user select the image
    2. Store the mediaPromise object in an array (event.data) for later use
    3. Load in the object using loadMediaPremise
    4. Add the loaded image into a movieclip (not visible from the scene)
    5. Resize that movieclip to let's say 100x100
    6. Use the BitmapData class to create a new bitmap from that movieclip and save it to storage
    7. Use the saved file within the app as a thumbail
    8. Use the mediaPromise object stored in the array later when the user wants to upload the images (then go through mediaPromise.open() on each image -> save to storage -> upload -> clear from storage -> loop).
    I haven't tried it yet (will do this week) but should that be a acceptable solution to the problem(?)
    I'm unsure if by just keeping the mediaPromise object within Flash will make the memory run wild though?

  • Is there a way to get the actual XML string when using the JAXP SAX Parser?

    Hi All,
    I am using a JAXP SAX xml parser and am looking for a way to get the actual line of xml that is being parsed from within a content handler.
    Here's my scenario. Consider the following example xml document.
    <formCollection>
       <form name="myForm">
          <text/>
          <selection/>
       </form>
       <form name="anotherForm">
          <text/>
       </form>
    </formCollection>My hope is to validate the entire document and then insert an xml string containing each "form" element (and its sub-elements) into a map for later use. My thought was to create a String as each "form" element is being parsed (begining with the form's startElement event and concatenating until the form's endElement event is reached) and then inserting this string into the map. Is there a way to get the actual line of xml that is being parsed, rather than just the element name and attribute values?

    DrClap wrote:
    YouRang wrote:
    2. The first handler would validate the entire XML document, extract the "type" attribute from each <form> element, and place each <form> element and its sub-elements into the map of Strings, using the "type" attribute as the key. The second handler would take a <form> element and parse it into a Form object for the display. This option was the impetus for my question because it relies on the first handler being able to access the entire <form> element XML String and write it to a map.I don't see why you need the raw data from the XML document here. You should already be abstracting your data into Java classes in the first handler, instead of making the second handler do the parsing all over again.Correct, I am not referring to XForms. In this case, it happens that I am using the XML to generate an SWT ScrolledForm object and, thus, the XML element name happens to be named "form." However, the concept/design problem could apply to any type of object and the XML element could be appropriately renamed.
    My experience with XSLT is limited and I haven't done anything with it for several years. With that said, it seems that it is primarily used for generating web content, which wouldn't apply in this case because this is for a client-server application. I could be off base on this one -- if XSLT applies to much broader translations and would be more appropriate for generating Java objects than my current methodology, I could certainly look into it further.
    I apologize that option two didn't make more sense; it is difficult to explain. Yes, optimally the data should be abstracted into Java classes in the first handler. This is really an elaboration that I failed to specify when explaining option one. The problem is that the user can choose to create any number of "forms" of any type. For instance, let's say that from the File -> New menu there are options for seven different types of forms and each form is used to send completely different data. The user can select form1, select form1 again, select form4, and select form7 (or any other combination) and bring up tabs that display the different forms. The user can then enter data and submit each form separately. When the user selects File -> New -> FormX, a SWT ScrolledForm object that corresponds with FormX must be given to the display. Because SWT ScrolledForm objects do not allow a deep copy, I cannot simply read the XML <form> elements at initialization, parse them into ScrolledForm objects, and pass deep copies of the ScrolledForm objects to the display each time the user clicks File -> New -> FormX. The only simple way I see of getting a new copy of a ScrolledForm object is to reparse the appropriate XML <form> element in order to create one each time the user selects File -> New -> FormX. As such, one handler would need to read the entire XML document and parse the <form> elements into a map (or some other data structure) and another handler would need to parse individual <form> elements into SWT ScrolledForm objects. The first handler would be called at initialization and the second handler would be called each time a user clicked on File -> New -> FormX. Once again, this isn't exactly my favorite implementation... but seems the simplest given that there is no way to do a deep copy of an SWT ScrolledForm object. Hopefully that makes a little more sense. No worries if it doesn't -- I just figured I'd throw this out there and see if anyone had a better idea.

  • How do i get that little pop up menu with all the editing choices on it that i used to get?  Is there a way to get the editing box to pop up as I make a new event instead of editing an event after i just made it ??????

    How do i get that little pop up menu with all the editing choices on it that i used to get?  Is there a way to get the editing box to pop up as I make a new event instead of editing an event after i just made it ??????

    Michal,
    iCal Help is a good place to start. Here are a couple of examples:

  • Is there any way to get the query used in discoverer from backend??

    Hi All,
    I am new to dicoverer.
    Is there any way to get the query used in discoverer from backend??
    Thanks,
    Sachin

    Hi,
    you can view the SQL from within the discoverer menu:
    in desktop: View-> SQL Inspector
    in Plus: Tools-> Show SQL
    The SQL in the DB tables is encrypted so it's a problem getting it from there.
    You can export the workbook into SQL but it is not working for every worksheet (subquery, inline pivot tables...)
    you can create a batch file to export them all using the output of this script:
    select null,null,'echo off'
    from dual
    union all
    select distinct
    qs.qs_doc_name Workbook_name,
    qs.qs_doc_details Worksheet_Name,
    'start /wait <path>\dis51usr.exe /connect '||'&p_user_name'||'/'||'&p_password'||'@'||'&p_env'||' /apps_user /apps_responsibility "&responsibility" /opendb '||
    chr(34)||qs.qs_doc_name||chr(34)||' /sheet "'||qs.qs_doc_details||'"'||' /export SQL "C:\Export Discoverer SQL\'||qs.qs_doc_name||'-'||qs.qs_doc_details||'.sql" /batch'
    from eul_us.eul5_qpp_stats qs
    where qs.qs_doc_name is not null
    --order by 1,2
    union all
    select null,null,'echo off'
    from dual
    union all
    select null,null,'exit'
    from dual

  • Is there a way to get the screen saver on user "a" to use iphoto pictures from user "b"?

    Is there a way to have the iphoto screen saver use the photos from a different iphoto user?  My husband leaves his account open and he has only old photos when the screen saver kicks in.   I would like to have my photos be able to pop up on his screen saver.  I need to find them in the system preferences screen saver place, but have it access my iphotos and not only his.  How?  Also, I would like a better system on organizing my photos.. I have them all in events by year and it is difficult of often find favorite specfic photos.  Thank you. Melody

    In short, no. The whole point of different accounts is to keep your data separate from his, and your photos are your data.
    You could share a library? It can be a bit complex.
    You can use Fast-User switching to switch over to your account - takes a couple of seconds
    As to organising your Photos - iPhoto is a database and offers pretty much unlimited options for organising your pics, but it takes a bit of work to go beyond the basic and automatic.
    If you take the time to assign Places then you cn see all the photos in your Library based on where they were taken. (Of course, that's of limited use if they're all taken in your backyard ) Faces means you can sort the Library based on who's in the Photos.
    Beyond that, simple thigns like naming the Events will help - Xmas 11, Bobby's Wedding, Rome 2009 and so on. You can then search on those basic words in the search box.
    After that: Keywording. The following is a canned answer I use to describe my system. It may spark some ideas for you.
    I use Events simply as big buckets of Photos: Spring 08, July - Nov 06 are typical Events in my Library. I use keywords and Smart Albums extensively. I title the pics broadly.
    I keyword on a
    Who
    What
    Where basis (The When is in the photos's Exif metadata). I also rate the pics on a 1 - 5 star basis.
    Using this system I can find pretty much find any pic in my 40k library in a couple of seconds.
    So, for example, I have a batch of pics titled 'Seattle 08' and a  typical keywording might include: John, Anne, Landscape, mountain, trees, snow. With a rating included it's so very easy to find the best pics we took at Mount Rainier.
    File -> New Smart Album
    set it to 'All"
    title contains Seattle
    keyword is mountain
    keyword is snow
    rating is 5 stars
    Or, want a chronological album of John from birth to today?
    New Smart Album
    Keyword is John
    Set the View options to Sort By Date Ascending
    Want only the best pics?
    add Rating is greater than 4 stars
    The best thing about this system is that it's dynamic. If I add 50 more pics of John  to the Library tomorrow, as I keyword and rate them they are added to the Smart Album.
    In the end, organisation is about finding the pics. The point is to make locating that pic or batch of pics findable fast. This system works for me.

  • Is there a way to get the playlists in itunes on my pc to synch with my iphone 5? I'm using itunes match with icloud?

    I used imatch to get all my music from itunes on my pc to icloud. On my iphone 5 I turned imatch on and I now have all my songs on my phone, but the play lists in itunes on my pc didn't go with the music. Is there a way to synch the playlists?

    If you  have iTunes 11 turn on the Sidebar. Go to iTunes>View and click on Show Sidebar. You can also do a Crtl+S to show the sidebar. The sidebar is where Devices appears. and Control+B to show the Menu bar
    iOS: Device not recognized in iTunes for Mac OS X
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                 
    iOS: How to back up           

  • Is there a way to get the IP address of a "remote" system on the LAN without using Share Screen and checking the network settings?

    I'm trying to better understand Mac's with respect to networking.  It seems that my computer should know the IP address of ever system listed on the Local Area Network, but all I see is the system name.  Is there a way to determine the IP address also?
    I have tried using "Get Information", but that produces no useful data.

    I'm trying to better understand Mac's with respect to networking.  It seems that my computer should know the IP address of ever system listed on the Local Area Network, but all I see is the system name.  Is there a way to determine the IP address also?
    I have tried using "Get Information", but that produces no useful data.

  • I deleted all my messages and it still shows my messages app is. Using like 3 GB of space in my settings. Is there a way to get the space back?

    I'm trying to free up space on my iPhone, and messages is using the most. I deleted all my messages and the settings still shows that it's using like 3 GB. Is there a way to get that space back?

    Go into iTunes store, open account and check purchases
    Then re download that you have purchased though iTunes

  • I had to purchase a new MacBook when my old one was stolen. We have two other MacBooks that use the ITunes library.  Is there any way to get the library transferred to my new computer.

    I had to purchase a new MacBook when my old one was stolen.  We have two other MacBooks in the family that use the ITunes library.  How do I get the full ITunes library on the new computer when I don't have access to the old computer?

    If your backup copy of the old computer was not stolen, then use it to put everything back.

  • Is there a way to get the result of using multiple blending modes in one object?

    Hello,
    I wonder if there's a way to merge multiple objects with blending modes to one object. Here is the example:
    On the left rhere are three objects with the same appearence but different blending modes(color dodge, normal, overlay), on the right they are overlapped, which are still three object. I'm looking for the way to have the same result as the right overlapped one, but as one object. Having the same multiple objects only for the result of color blending mode uses too much memory for my computer.
    Thank you for your help in advance.

    create one object: then in your appearance panel, duplicate the fill twice. Select the top fill and expand the sub menu, click on opacity, choose blending mode. repeat.
    G

Maybe you are looking for

  • .aiff files won't play in finder (and some programs)

    Mac Pro 4.1 Doing some long-overdue file cleanup, and when I preview some .aiff files in the finder they won't play.  The Apple  .aiff sound effect files play, but things I've recorded won't play, although they will play if imported into iTunes.  Oth

  • Creating 2 address books for different users?

    my wife and I don't want to login as separate users on the powerbook, but we do want to be able to import and synchronise our address books from our palm PDAs and keep the addresses separate. So far it seems that we would merge the addresses into the

  • Using iweb...

    Ok I've read the tutorial... some background I've done many web sites and write my own html. I've only done it using homesite on a PC. So now every time i want to change a web site I have to fire up the old PC. So I'm trying to learn how to use iWeb.

  • Can't run command because user is in read-only mode.

    Hi I try to execute any sql statment i am getting this error. Can't run command because user is in read-only mode.

  • ODBC trouble Oracle BI Client

    Hi all, I created a cube using awm. I need to use my cube to make excel reports. Since everything is installed in a unix server. I needed to install BI admin tool in my windows machine Windows 7 , and set an ODBC connection to the Oracle BI Server. E