Text won't show in Travel Theme

I have been reading through the forum and have seen similar problems, but not this exact one. I have created a medium book with 20-some pages, and when I click on "buy book", I am told that there is default text that has not yet been edited. When I preview the book (print preview), I see all of the text and photos I have entered as I want them - EXCEPT on the Introduction page, where it initially says "insert title", nothing shows up. (The default color for this text was grey for some reason, and even when I made it black, it didn't show up.)
I still have iPhoto 5.0.4
Any ideas?
Thanks.
iBook G4   Mac OS X (10.4.8)  

I get the same error message using iPhoto 5. I will try the print preview and see if any text appears. The warning says
"Your book appears to have default text that has not yet been edited. Printed books will not include this text. Do you want to continue with your order?"
This message is very difficult to search for. Yours is the only one I've found.

Similar Messages

  • I'm new to photoshop cc 2014. As I try to type in the text box my text won't show up and every time I click on the layer it alway progress rendering type? What does that mean and is there a way I can turn it off?

    I'm new to photoshop cc 2014. As I try to type in the text box my text won't show up and every time I click on the layer it alway progress rendering type? What does that mean and is there a way I can turn it off?

    Check online with the web site of the maker of your video card for an updated driver (assuming you're running Windows).
    -Noel

  • Need Help with Timeline Setup, Text won't show up in SWF

    I am creating a site for one of my company's restaurants, and I have all of my pages created in flash. I have not done any Actionscript on any of the pages yet. I thought that I would just be able to create each page and take the swf files and import them into a main index page on the timeline and code from there. However, when I imported my .swf files to the library of the main flash file, none of my text showed up at all. I have added the fonts to my library and I tried breaking apart the text, but nothing has worked.
    Also, I don't know how exactly to set up the timeline to link all of my pages, and I have looked in other forums and have seen people reference the online help, but I do not know where to find that!
    I am a mess right now, the site needs to be up by Friday!! PLEASE HELP!

    So I have created all new movie clips in my index.fla file by copying all of my files from another file and pasting them into the movie clip  timeline. I have placed all of my new movie clips in different layers on the index timeline, and have created keyframes 10 frames apart. I have my actions layer with frame labels for each page every ten frames (i.e. tbLabel is at frame 1 in my actions layer and the movie clip is on a different layer at frame one, restaurantLabel is at frame 10 in my actions layer and the movie clip for that page is on a different layer at frame ten, all the way up to frame 120). I haven't put any actionscript in my movieclips except for stop(); at the end of each file. My current actionscript, placed in frame 1 for my first page when the viewer goes to the site is as follows:
    thunderBayBtn.addEventListener(MouseEvent.CLICK, goIndex);
    restaurantBtn.addEventListener(MouseEvent.CLICK, goRestaurant);
    birchBtn.addEventListener(MouseEvent.CLICK, goBirch);
    menuBtn.addEventListener(MouseEvent.CLICK, goMenu);
    eventBtn.addEventListener(MouseEvent.CLICK, goEventLand);
    davEventBtn.addEventListener(MouseEvent.CLICK, goDavEvent);
    rockEventBtn.addEventListener(MouseEvent.CLICK, goRockEvent);
    pewEventBtn.addEventListener(MouseEvent.CLICK, goPewEvent);
    pewEventBtn.addEventListener(MouseEvent.CLICK, goPewEvent);
    giftBtn.addEventListener(MouseEvent.CLICK, goGiftCert);
    downloadBtn.addEventListener(MouseEvent.CLICK, goDownload);
    contestBtn.addEventListener(MouseEvent.CLICK, goContestLand);
    davContestBtn.addEventListener(MouseEvent.CLICK, goDavContest);
    rockPewContestBtn.addEventListener(MouseEvent.CLICK, goRockPewContest);
    function goIndex(event:MouseEvent):void
                gotoAndPlay(1);
    function goRestaurant(event:MouseEvent):void
                gotoAndPlay(10);
    function goBirch(event:MouseEvent):void
                gotoAndPlay(20);
    function goMenu(event:MouseEvent):void
                gotoAndPlay(30);
    function goEventLand(event:MouseEvent):void
                gotoAndPlay(40);
    function goDavEvent(event:MouseEvent):void
                gotoAndPlay(50);
    function goRockEvent(event:MouseEvent):void
                gotoAndPlay(50);
    function goPewEvent(event:MouseEvent):void
                gotoAndPlay(50);
    function goGiftCert(event:MouseEvent):void
                gotoAndPlay(90);
    function goDownload(event:MouseEvent):void
                gotoAndPlay(100);
    function goContestLand(event:MouseEvent):void
                gotoAndPlay(110);
    function goDavContest(event:MouseEvent):void
                gotoAndPlay(120);
    function goRockPewContest(event:MouseEvent):void
                gotoAndPlay(120);
    However, when I go to test the movie, I get "1120 access" errors even though the buttons are named in the properties pane, however, I cannot view that in the file that conatins all of my movie clips because they are movie clips.
    Also, When I go to view the movie with all of my movie clips, all of them play one on top of the other, none of them stop, and the buttons do not work.
    I'm having a hard time figuring out what actionscript I need to use and where!

  • Page looks good online but text won't show within Dreamweaver

    I have modest website and the text for one of the subpages doesn't show within Dreamweaver, yet it looks good online. Here's the page in question:
    www.acemon.com/basic-options.com
    It passed in Validator.
    A secondary problem is getting the container to actually fill the background. I'm sure it's something simple but I can't seem to catch it.
    Thanks

    If this is the correct URL, http://www.acemon.com/basic-options.html
    Try this:
    .container {
        width: 832px;
        background: #FFF;
        color: #000;
        margin: 20px auto 0 auto;
        padding-bottom: 20px;
        overflow:hidden; /**to contain floats**/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Progress Loader Text won't show up?

    I have a SWF file that is the first frame of the movie and it's only purpose is to load in another SWF and show text corresponding to the progress of download completion.  When I test the movie (Simulate Download) it just simulates without showing my text with percentage complete.  The only way I can get it to show, is if I add a button to click to make it show.  How can I get it, so that when someone opens the movie, it will start the download process, show the percentage, and then upon completion, start the UILoader movie?
    Here is my AS3 code: notice the button I had to put in at the top...which is not what I want....
    btn1_btn.addEventListener(MouseEvent.CLICK, loadFile);
    function loadFile(e:Event):void {
    CMOLoader.load(new URLRequest("CMO.swf"));
    CMOLoader.addEventListener(ProgressEvent.PROGRESS, progressHandler);
    CMOLoader.addEventListener(Event.COMPLETE, completeHandler);
    function progressHandler(e:ProgressEvent):void {
    prog_txt.visible=true;
    var percent:int=CMOLoader.percentLoaded;
    prog_txt.text=percent+"%";
    function completeHandler(event:Event):void {
    prog_txt.visible=false;
    CMOLoader.removeEventListener(ProgressEvent.PROGRESS, progressHandler);
    CMOLoader.removeEventListener(Event.COMPLETE, completeHandler);
    Also in Simulate Download, once it completes load, shouldn't the movie play with out freezing?  Because when I do it, I wait for the download process and then the SWF loads, but it's choppy....it "downloaded" the whole file, it should run seamless right?
    Long post but I appreciate any help....

    use:
    loadFile();
    function loadFile():void{
    CMOLoader.load(new URLRequest("CMO.swf"));
    CMOLoader.addEventListener(ProgressEvent.PROGRESS, progressHandler);
    CMOLoader.addEventListener(Event.COMPLETE, completeHandler);
    function progressHandler(e:ProgressEvent):void {
    prog_txt.visible=true;
    var percent:int=CMOLoader.percentLoaded;
    prog_txt.text=percent+"%";
    function completeHandler(event:Event):void {
    prog_txt.visible=false;
    CMOLoader.removeEventListener(ProgressEvent.PROGRESS, progressHandler);
    CMOLoader.removeEventListener(Event.COMPLETE, completeHandler);
    Also in Simulate Download, once it completes load, shouldn't the movie play with out freezing?  Because when I do it, I wait for the download process and then the SWF loads, but it's choppy....it "downloaded" the whole file, it should run seamless right?
    not necessarily.  if there are things in your swf that tax your computer, then you may see a "choppy" presentation despite preloading.  in fact, the most common problem(s) causing a choppy presentation are not related to downloading.

  • Scrolling text won't show on clip

    im new to using this program and can't figure out why my text wont show on a clip that i put on the timeline. My video clip is in Track 1A. And the text clip, which I dragged from the project window, is above in Track 2. But for whatever reason when i press play the text doesnt show while my original video just continues. i tried to mess around with the transparency options but i dont really know what im doing in that regards either. what am i doing wrong?

    That is Premiere 6.5 you are using. I do not think you were able to update to 5.0.2 
    This is the Premiere Pro CS5 forum.
    Try rendering the timeline.

  • Reflection on text won't show in Final Cut?

    I made a text title with a reflection. It looks great....I exported it to quicktime....still looks great. Brought it into FCP, played it in the viewer...still looks great. But when I add it to my timeline and play it their is no reflection???
    Can anyone explain?
    (I'm using the new FCS2)

    I got the reflection, looks exactly the same in FCP.
    Make sure you have the alpha set right if you load the project in, it should be set to black. If you are trying to comp this on anything else, look at the build in Motion on a background, not black.
    Ah, just reading this again looks like you are rendering out a movie. Try just dropping the project in first. That worked for me. If you are kicking out a file with an alpha, remember to do the black trick
    Also as you haven't got a background, put a black colour solid generator in there if you want the finished result on black.
    Phew!
    Peter
    MacPro 3G 6G RAM FCP6 M3 FxF1.06   Mac OS X (10.4.9)   XSR Decklink & loads of cool new plugins, Gaggia TD auto

  • Picture Book theme - why has my book printed with text box outlines showing? and how do I change this for any future purchases? This did not occur with previous books.

    Why have borders appeared around the text boxes in the Picture Book theme and how do I change them for the future.  My latest book looks dreadful!

    Have you checked, if your book is really set to the "Photos" Theme? This looks like you may have used one of the "Travel" themes. These themes create borders around the text boxes. When you select a theme, the book title will say "Photos", even if the theme is a different one.
    For example, frames text boxes with the "travel" theme.
    Have you previewed your book, before printing it? Did the framed boxes already show in the preview?
    See: Previewing an order in iPhoto or Aperture
    Regards
    Léonie

  • I got a new iPhone 5S and now my text messages are showing up on my iPad now, how do I stop them from showing up on my iPad?

    I just switched from a iPhone 4S to iPhone 5S and now my text messages are showing up on my iPad as well as my phone. How to I turn this feature off and just keep them on my phone?

    This is for imessage - go to settings - message - send&receive and start a new convo - remove or uncheck the apple id.

  • I'm trying to get itunes up and running on new computer. I have lots of music I've purchased from Itunes...and they show in my account.  But only some of them have the cloud next to them.  The rest say "downloaded" and it won't let me download them again.

    I'm trying to get itunes up and running on new computer. I have lots of music I've purchased from Itunes...and they show in my account.  But only some of them have the cloud next to them.  The rest say "downloaded" and it won't let me download them again.

    I believe that all audiobooks are supplied to Apple by audible.com, so I assume that it's them requiring the one-time only download. This is the link for contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • I accidentally deleted documents from Pages on my iphone - and now they won't show up on my mac anymore either.  I must have saved them just on icloud and not on my mac, too.  is there anyway to recover these documents?

    I accidentally deleted documents from Pages on my iphone - and now they won't show up on my mac anymore either.  I must have saved them just on icloud and not on my mac, too.  is there anyway to recover these documents?

    On a mac, when you save docs to icloud, a local copy is also saved.  It's saved at:
    ~/Library/Mobile Documents
    Note that Library in the user's home folder is now hidden, so you'll have to set Finder to view hidden files.
    The Mobile Documents folder has subfolder where copies of the doc/data files are stored.
    If the file(s) are no longer there, then use your Time Machine backups to get copies back to the mac.

  • IDVD 08 won't show themes

    I seem to be running a mixed bag when it comes to iMovie and iDVD. I had been running OS 10.4.11 with iMovie 3 and iDVD 3 until earlier this year when I upgraded to 10.5.8 because I received and iPad as a gift. I knew iDVD3 would not work with 10.5 so I bought iLife 08. I installed iDVD 08 and figured it would work since it opened the current project. I thought iMovie 08 would work until I found upon installation it required and Intel machine (planned obsolescence by Apple in my opinion). I thought iMovie 03 would still work because when I opened it with the current project last spring it worked fine. With a new project no such luck so I found a copy of iLife 06 and installed the iMovie. So I proceeded with my iMovie 06 project. When I opened iDVD 08 it kept crashing. I finally got it to open and stay open. However, no amount of clicking, trying to drag or anything else could get the themes to open on the left. The Themes column is there so I can select any theme it just won't show in the screen on the left. In reading some of the Help screens I found I can open iDVD through iMovie similar to what I did with iMovie 3 and iDVD 3. Doing that still gave me the same results. Am I missing something? Do I need to reset something? What am I missing?
    Thanks for your help.
    Retiredmac

    After reading other discussions I opened iDVD 08 and check the hierarchical list. I found a yellow warning triangle on the theme in the center pane. The center pane points to the movie but neither will show in the preview window. What does the warning triangle mean?
    Retiredmac

  • Recently my text won't visually show up when I use the text tool. Help!

    recently my text won't visually show up when I use the text tool. Help!

    Provide the name of the program you are using so a Moderator may move this message to the correct program forum
    This Cloud forum is not about help with program problems... a program would be Photoshop or Lighroom or Muse or ???

  • My phone won't show notifications on my home screen or lock screen for text messages

    My phone won't show notifications for text messages on my lock screen or my home screen, even thought both are turned on under the settings. Once I go into the messaging app, they will show up as new but not anywhere else. I get notifications for everything else except text messages.

    Messages should work with the email address that you use for your Apple ID. You have to be signed into that email address in order for any other email address that you have added to work.
    You should add your iPhone number to your Apple ID on the iPad, and then select that as the contact address at which you can be reached and all of the messages between the phone and the iPad will sync again.
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage - Apple Support
    Phone number missing on iPad or iPod touch
    If your phone number isn't listed on an iPod touch or iPad, follow these steps:
    Update to the latest version of iOS.
    Verify that you're using the same Apple ID that you're using on your iPhone.
    On your iPad or iPod touch, sign out of your Apple ID in the following locations:
    Settings > Messages > Send & Receive. Tap your Apple ID, then tap Sign Out.
    Settings > FaceTime. Tap your Apple ID, then tap Sign Out.
    Sign in to your Apple ID with FaceTime and iMessage.
    If your phone number still isn't listed, follow these steps:
    Sign out of your Apple ID on all iOS devices, including your iPhone, in the following locations:
    Settings > Messages > Send & Receive. Tap your Apple ID, then tap Sign Out.
    Settings > FaceTime. Tap your Apple ID, then tap Sign Out.
    Sign in to your Apple ID on your iPhone.
    When activation is complete, your Apple ID and all verified email addresses should be visible in Settings > Messages > Receive At and Settings > FaceTime.
    Sign in to your Apple ID on your other iOS devices.

  • HT1689 I purchased TV shows, I was billed for them, but they won't play on my Macbook because it says they are a certain HD that doesn't work - I am trying to find a way to return the shows or buy them in the right format

    I purchased TV shows, I was billed for them, but they won't play on my Macbook because it says they are a certain HD that doesn't work - I am trying to find a way to return the shows or buy them in the right format

    I am using MAC OSx 10.5.8 (9L31a) as my operation system.  The TV says "No signal.  Check connected device's power, cable connection and source selection."  Seems to me that that goes in hand with what the Samsung tech said about the Mac needing to be forces to use the external display.  But how do I do that?

Maybe you are looking for

  • Getting  error in PSA while trying to load data in cube

    Dear Friends, I am trying to load data in cube I am getting error in PISA i.e.      Value 'Boroplus Anticream 19Gm Regular Plain ' (hex. '426F726F706C757320416E7469637265616D203139476D2052') of characteristic . please guide me. Thanks in Advance. Bes

  • Whether to install CI in both the nodes in a cluster

    Hi, I am installing SAP ECC 6.0, details of the environment given below: OS - Windows 2003 Database - MS SQL 2005 SAP - ECC 6.0 installation in MS Cluster with two nodes. I have installed the following 1. ASCS 2. SCS 3. First MSCS Node 4. DB Instance

  • Settings icon accidentally deleted

    I accidentally deleted the "settings" icon from my iPhone 3GS. How do I restore it?

  • How to create binary code ("10101") matrix with particles?

    Hi...I am trying to create a group of binary numbers that float across my composition in a loose group - the binary code should appear in lines of text, about 3 to 7 numbers wide (ideally constantly changing the number of digits as it animates). I wa

  • SAP TechEd 2011- In-Memory Computing

    Looking for answers on "In-Memory Computing," check out the related educational sessions at SAP TechEd 2011 ([Las Vegas|http://bit.ly/rdKcwv], [Bangalore|http://bit.ly/nClVbt], [Madrid|http://bit.ly/pOelS5 ]). [Register today|http://www.sdn.sap.com/i