IPhoto books- Delete text boxes?

For several pages in an iPhoto book I am making, I do not want any text or descriptions. However, there are empty text boxes whose outlines are still showing up. I don't want the pages to print with the text box outlines. There is nothing typed in the boxes and I have tried deleting them, but I can't figure out how to.
For the portfolio theme, the layout options include the text boxes. All the pictures are situated how I want them, but I just don't want the text box rectangles showing up. Any suggestions?
Message was edited by: wsull

Most page layouts offer one with and without text boxes. Check the layout menu at the bottom to see if there's not one without text for your theme.
TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) 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 created an Automator workflow application (requires Tiger or later), 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. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
NOTE: iPhoto 8's new option in it's rebuild library window, "Rebuild the iPhoto Library Database from automatic backup" may make this tip obsolete. We'll know when users have occasion to use it and see if that's the case.

Similar Messages

  • Iphoto book default text Question

    I have completed a Iphoto book and when I select "Buy book" in Iphoto a box appears and says "Your book appears to have default text that has not been edited. Printed books will not include this text. Do you want to continue?" What does this mean?

    text boxes include Latin looking default text - this message means that in the book you have a text block with no text entered and as it says. it will not be printed  --  it is a warning not a fatal error and you can still order - but be sure to preview first as the printed book will match the preview
    LN

  • PowerPoint using macro to delete text boxes after printing

    Hi,
    We created custom shows in Powerpoint and are running a macro to insert temporary page numbers on the slides before printing.  The issue is that I need to remove the page numbers after printing.  I'm a novice at VBA so I'm sure there is an easy
    solution, but nothing I've tried so far has been successful.  The code is displayed below for your reference.  Any help is greatly appreciated. Thanks!
    Sub PrintCustomShow()
          ' Change this number to specify your starting slide number.
          Const lStartNum As Long = 1
          ' Ask the user which custom show they want to print.
          Dim strShowToPrint As String, strPrompt As String
          Dim strTitle As String, strDefault As String
          ' See if any custom shows are defined.
          If ActivePresentation.SlideShowSettings.NamedSlideShows.Count _
             < 1 Then
             ' No custom shows are defined.
             ' Set up the string for the message box.
             strPrompt = "You have no custom shows defined!"
             ' Display the message box and stop the macro.
             MsgBox strPrompt, vbCritical
             End
          End If
          ' Find the page number placeholder; if found, pick up the style.
          Dim rect As PageBoxSize
          Dim oPlaceHolder As Shape
          Dim bFound As Boolean: bFound = False
          For Each oPlaceHolder In _
             ActivePresentation.SlideMaster.Shapes.Placeholders
             ' Look for the slide number placeholder.
             If oPlaceHolder.PlaceholderFormat.Type = _
                ppPlaceholderSlideNumber Then
                ' Get the position of the page number placeholder.
                rect.l = oPlaceHolder.Left
                rect.t = oPlaceHolder.Top
                rect.w = oPlaceHolder.Width
                rect.h = oPlaceHolder.Height
                ' Get the formatting of the slide number placeholder.
                oPlaceHolder.PickUp
                ' Found the slide number placeholder, so set the
                ' bFound boolean to True.
                bFound = True
                Exit For
             End If
          Next oPlaceHolder
          ' See if a slide number placeholder was found.
          ' If not found, exit the macro.
          If bFound = False Then
             ' Unable to find slide number placeholder.
             MsgBox "Your master slide does not contain a slide number " _
                & "placeholder. Add a " & vbCrLf & "slide number placeholder" _
                & " and run the macro again.", vbCritical
             End
          End If
          ' Set up the string for the input box.
          strPrompt = "Type the name of the custom show you want to print." _
             & vbCrLf & vbCrLf & "Custom Show List" & vbCrLf _
             & "==============" & vbCrLf
          ' This is the title of the input box.
          strTitle = "Print Custom Show"
          ' Use the first defined show as the default.
          strDefault = _
             ActivePresentation.SlideShowSettings.NamedSlideShows(1).Name
          ' Obtain the names of all custom slide shows.
          Dim oCustomShow As NamedSlideShow
          For Each oCustomShow In _
             ActivePresentation.SlideShowSettings.NamedSlideShows
             strPrompt = strPrompt & oCustomShow.Name & vbCrLf
          Next oCustomShow
          Dim bMatch As Boolean: bMatch = False
          ' Loop until a named show is matched or user clicks Cancel.
          While (bMatch = False)
             ' Display the input box that prompts the user to type in
             ' the slide show they want to print.
             strShowToPrint = InputBox(strPrompt, strTitle, strDefault)
             ' See if user clicked Cancel.
             If strShowToPrint = "" Then
                End
             End If
             ' Make sure the return value of the input box is a valid name.
             For Each oCustomShow In _
                ActivePresentation.SlideShowSettings.NamedSlideShows
                ' See if the show is in the NamedSlideShows collection.
                If strShowToPrint = oCustomShow.Name Then
                   bMatch = True
                   ' Leave the For loop, because a match was found.
                   Exit For
                End If
                ' No match was found.
                bMatch = False
             Next oCustomShow
          Wend
          ' Get the array of slide IDs used in the show.
          Dim vShowSlideIDs As Variant
          With ActivePresentation.SlideShowSettings
              vShowSlideIDs = .NamedSlideShows(strShowToPrint).SlideIDs
          End With
          ' Loop through the slides and turn off page numbering.
          Dim vSlideID As Variant
          Dim oSlide As Slide
          Dim Info() As SlideInfo
          ' Make room in the array.
          ReDim Preserve Info(UBound(vShowSlideIDs) - 1)
          ' Save the current background printing setting and
          ' then turn background printing off.
          Dim bBackgroundPrinting As Boolean
          bBackgroundPrinting = _
             ActivePresentation.PrintOptions.PrintInBackground
          ActivePresentation.PrintOptions.PrintInBackground = msoFalse
          ' Loop through every slide in the custom show.
          Dim x As Long: x = 0
          For Each vSlideID In vShowSlideIDs
             ' The first element in the array is zero and not used.
             If vSlideID <> 0 Then
                ' Add slide ID to the array.
                Info(x).ID = CLng(vSlideID)
                ' Get a reference to the slide.
                Set oSlide = ActivePresentation.Slides.FindBySlideID(vSlideID)
                ' Store the visible state of the page number.
                Info(x).IsVisible = oSlide.HeadersFooters.SlideNumber.Visible
                ' Turn off page numbering, if needed.
                If Info(x).IsVisible = True Then
                   oSlide.HeadersFooters.SlideNumber.Visible = msoFalse
                End If
                ' Create a text box and add a temporary page number in it.
                Dim oShape As Shape
                Set oShape = _
                   oSlide.Shapes.AddTextbox(msoTextOrientationHorizontal, _
                                            rect.l, rect.t, _
                                            rect.w, rect.h)
                ' Apply the formatting used for the slide number placeholder to
                ' the text box you just created.
                oShape.Apply
                ' Add the page number text to the text box.
                oShape.TextFrame.TextRange = CStr(x + lStartNum)
                ' Increment the array element positon.
                x = x + 1
             End If
          Next vSlideID
    ' Print the custom show. NOTE: You must turn background printing off.
                 With ActivePresentation
                 With .PrintOptions
                 .RangeType = ppPrintNamedSlideShow
                 .SlideShowName = strShowToPrint
                 End With
                 .PrintOut
                End With
          ' Restore the slide information.
          For x = 0 To UBound(Info)
             ' Get a reference to the slide.
             Set oSlide = ActivePresentation.Slides.FindBySlideID(Info(x).ID)
             oSlide.HeadersFooters.SlideNumber.Visible = Info(x).IsVisible
          Next x
          ' Restore the background printing setting.
          ActivePresentation.PrintOptions.PrintInBackground = _
             bBackgroundPrinting
       End Sub

    Hi hlolrich,
    According to the description, you want to remove the shapes which created after you print the presentaion.
    I suggest that you name the shape you added with some rule, then we can delete thease shapes via the name rule.
    And here is a sample that you delete the shapes which name contains the
    myShape words on the first slide for your reference:
    Sub deleteShapes()
    For Each aShape In Application.ActivePresentation.Slides(1).Shapes
    If InStr(aShape.Name, "myShape") Then
    aShape.Delete
    End If
    Next aShape
    End Sub
    Also you can learn more about PowerPoint developing from link below:
    How do I... (PowerPoint 2013 developer reference)
    PowerPoint 2013
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Deleting Text Box, but not text, in Pages '09

    I use Readiris to scan documents, which then open in Word. All text is placed in text boxes (sometimes line by line). When I import the Word docs into Pages, I have literally hundreds of text boxes, when really all I want is to work with the text. Is there a way to delete the text boxes without deleting the text in them?

    --
    --[SCRIPT extractRawTextFromPages]
    Open a Pages document
    run the script.
    You will get on the Desktop a text file entitled
    "extractedRawText.txt"
    containing the document's raw text.
    Yvan KOENIG (Vallauris, FRANCE)
    2009/07/03 for AW Draw documents
    2009/08/07 Adapted for Pages
    on run
    tell application "Pages"
    activate
    tell document 1
    set rawText to ""
    try
    set rawText to "Main Layer" & return & body text & return
    end try
    set textBoxes to get text boxes
    if textBoxes is not {} then
    repeat with i from 1 to count of textBoxes
    set rawText to rawText & "text block #" & i & return & (get object text of item i of textBoxes) & return & return
    end repeat
    end if
    end tell -- document
    end tell -- Appleworks
    if rawText is not "" then
    set nomDuRapport to "extractedRawText.txt"
    set p2d to path to desktop
    set p2r to (p2d as text) & nomDuRapport
    tell application "System Events"
    if exists (file p2r) then delete (file p2r)
    make new file at end of p2d with properties {name:nomDuRapport}
    end tell -- System Events
    write (rawText as text) to (p2r as alias)
    end if
    end run
    --[/SCRIPT]
    Yvan KOENIG (Vallauris, FRANCE vendredi 7 août 2009 21:45:45)

  • Pages - delete text box

    Am I being really dim? I want to delete a text box from my document, I can't figure it out. It just says 'text' inside it. It doesn't show when I print the page, but it's bugging me. Thanks.

    What do you get when you touch/select the text? I am getting a pop-up that reads: "select/select all/paste/copy style". When I "select all" the text is then highlighted in light blue with the pop-op options now reading: "cut/copy/paste/copy style". If I choose/touch "select all" the text disappears.
    Message was edited by: Jazmaraz

  • Naming a book/TOC Text Box

    I'm finding iBooks Author in general to be horribly confusing in general in terms of naming files, books and templates. So perhaps I'm overlooking something basic.
    But, the issue I am having is that when I export my iBooks file and add it to my iTunes book library, it shows up taking the name of my table of contents in portrait mode iBooks Author. Specifically, when I look at my TOC in portrait mode, I have a text box at the top where I have typed the word Contents, which is what I want my TOC labeled. But it seems like if I don't name my TOC my full book title (which I don't want to do, as it's very long), I am forced to have my book then also titled "Contents" when it's in my iBooks library.
    Anyone else have this issue?

    Try this.
    In the sidebar above where it says Intro Media Double-click on the Book Title and enter the complete long title there.  I've tested this to 100 characters.
    On the title page enter the word Contents as the title, use the paragraph style, then hide this with a graphic or something.  (You were on the right track...) then add the complete long title there using some other paragraph style
    In the Inspector / Documents enter the complete long title
    When you submit to itunes using itunes Producer use the complete long title.
    I think that should work.
    Chuck

  • Delete text box?

    I inadvertently created a text-box.  How do I get rid of it?

    I know that you are very fluent in Pages and you know worlds more than I do. I have read more than a few of your posts. But it seems to work for me. If I place a text box in a document and then click inside the text box - it deletes the entire text box.
    I guess that I am doing something wrong when I create the text box that allows me to remove it. I can click inside the text block and remove it. I have done it ten times now. I have pasted into the text box, I have typed my own text into the text box, saved the document, duplicated it.... every time I click inside the text box, I can delete it.
    I am creating the text box from here.

  • Anyway to create an iPhoto book with text & no image on cover?

    Would like to create a book with text only on the cover and no image. The only options with text require an image as well and as a result the pdf preview shows the square designated for an image (when no image provided). Any help/suggestions appreciated.

    Hi Richard,
    In this community, "It cannot be done" means "It cannot be done with Pages '09."
    The document in question was, obviously, produced using an application oter than Pages.
    Regards,
    Barry

  • IPhoto book: Deleting Pages and Back Cover Problems?

    I am creating a book iphoto.  I was all set with 100 pages and then the back flap and cover.  Somehow, there is an extra page at the end and then the back flap and back cover are also now set as page, making my book 103 pages.  I know this is not possible.  Anyone able to offer any help?
    Thanks!

    If you don't get an answer here soon you can check the separate iPhoto Forum https://discussions.apple.com/community/ilife/iphoto

  • HT204364 Deleting text in iPhoto print books

    In creating photo books with iPhoto '11, some of the layouts have text boxes... if I delete the text to create a white space area, will it have a border from text box? I basically just want the white space (squares) to break up the page, thanks

    No but you will get a warning of missing text. Enter a single space
    And always preview before ordering. http://support.apple.com/kb/PH2486
    LN

  • Difficulty editing text in iPhoto book project.  I add a page layout with text, but can't edit the text box., Difficulty editing text in iPhoto book project.  I add a page layout with text, but can't edit the text box.

    I'm am having difficulty editing text in the iphoto book project.  I have a text box that is pre-populated with text.  I can edit the text once, then if I need to change something, it won't let me delete anything, only add to it.  Anyone else having this problem?
    Thanks!

    You should be able to double click in the text box and add or delete text. First  make a temporary, backup copy (if you don't already have a backup copy) of the library and try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
         User/Home/Library/Caches/com.apple.iPhoto folder. 
    Click to view full size
    3 - launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    NOTE 2:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    If that doesn't help launch iPhoto with the Option key held down and create a new, test library.  Import some photos, create a book  and check to see if the same problem persists. Post back with the results.
    OT

  • Project deleted in iPhoto 11 ver. 9.1.1 After spending three months building a twenty six page Book Project in iPhoto i added a page and later decided to delete the page. I selected the page, pressed the delete key and confirmed the delete dialog box ( i

    Project deleted in iPhoto 11 ver. 9.1.1
    After spending three months building a twenty six page Book Project in iPhoto i added a page and later decided to delete the page. I selected the page, pressed the delete key and confirmed the delete dialog box ( i didn't read, dummy) by pressing the delete button. The whole project was gone, the undo menu was grayed out and there was nothing in the iPhoto trash about my Book.
    Surly I can find this if I knew the path to find the project in a library on a back column I have of my hard drive.. Could anyone help me?

    Sorry I'm having a hard time getting this.
    If I go to my hard drive BIGMAC>Library>Application Support>iPhoto>the only thing in this folder is Themes.
    However, when I "Get Info" it's 580MB for 24,421 items. iPhoto says I have 35,977 photos. I would think the database would be into the GB for this many photos.
    If I go to BIGMAC>system>Library>I find nothing about iPhoto
    Is the iPhoto file in the Application Support the one I need to replace with my backup?
    Thanks so much for your help.
    Jack

  • Text Box in iphoto books

    I am trying to add a text box to my iphoto book and can't seem to figure it out beyond the small text box provided in one of the layouts. Any ideas?

    You can not modify the template - the text boxes are as they are provided
    LN

  • How do I adjust the depth of a text box on a page in an iPhoto book?

    How do I adjust the depth of a text box on a page in an iPhoto book?

    You can't.  Those are fixed.  You can create a custom page in Pages where you can duplicate the background add photos with frames, any size of text box and text.  Make sure page size is the same as you've selected for the book. 
    Then do a Print ➙ PDF ➙ Save PDF to iPhoto of that page.  That till create a 200 dpi jpeg file of that page that you can use on a blank page with an image for the background layout. This is a rough example:
    Custom book cover
    Click to view full size
    Custom text page (left)
    Click to view full size
    OT

  • How do you write (large) texts in an iPhoto book?

    I am making an Iphoto book and want some of the pages to be dedicated to large texts. The only problem is that when I press the text box and start writing, I can't actually see what I am writing. Then if I click away I can see the text I have written. If I click the box again, and start writing again (without being able to see anything written), I write from the beginning, not from where I finished the previous writing. Plus, I can't delete the text if I make a mistake.

    If the test library worked at it should with the book text then you need to repair your original library. Try the following:
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    2 - Run Option #4, Rebuild Database, followed by Option #1 if needed.

Maybe you are looking for