Slideshow titles are not completely on the screen

What can you do if your slideshow imported from iPhoto shows titles half off the screen at the top? and truncated at the beginning of each title. It appears that iDVD is making the picture a bit too large for the TV screen.
I checked it on three TV's and they al do the same. It looks ok on the mac however. I went to iPhoto because iDVD slideshow fives a black border alll around the slides using up about 25% of the viewing area on the screen.
Is there any way to slightly shrink the ihoto slide show or remove the iDVD black border from slide show?

Scale slides to safe TV area was checked. I don't think this applies to slideshows imported from iPhoto as they are brought in as a quicktime Movie.
If you drag the slides into iDVD slideshow as individuals or an album i will work but then you do not have the flexibiility of varying the transitions or timing of slides.

Similar Messages

  • I just updated my iPhone 4 to iOS 7.1. The apps I had previously installed are not showing on the screen. They are located in App Store icon. How do I move the icons so they are showing on the screen.

    I just updated my iPhone 4 to iOS 7.1. The apps I had previously installed are not showing on the screen. They are located in App Store icon. How do I move the icons so they are showing on the screen.

    You can move apps around in iOS 7 the same as iOS 6. Press an app icon until you see it wiggle; then drag it to where ever you want it to be. Drag it onto another app to create a folder with the two apps. Tap the Home button to stop the wiggle.

  • After updating to Yosemite, my screen saver settings are not maintained.  The screen saver reverts to some Apple default.  There is no way to get my setting to be maintained.

    After updating to Yosemite, my screen saver settings are not maintained.  The screen saver reverts to some Apple default.  There is no way to get my setting to be maintained.

    Hi ..
    Might be corrupted preferences.
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    ~/Library/Preferences/com.apple.screensaver.plist
    Click Go then move the com.apple.screensaver.plist file to the Trash.
    Restart your Mac then reset your screen saver.

  • Oracle XML DOM parser - attribute values are not printing on the screen ??

    Hi Everyone,
    I am just trying to use oracle DOM parser to paerse one of my xml file, java file can be compiled and run agianst a xml file, But I cannot see any attribute values printing on the screen..
    Appreciate if anyone can help, where I have gone wrong please?
    Below is the java file:
    // menna puthe DOMSample eka - duwanawa 19/12/2005
    import java.io.*;
    import java.net.*;
    import org.w3c.dom.*;
    import org.w3c.dom.Node;
    import oracle.xml.parser.v2.*;
    public class DOMSample {  //public class eka ***
    static public void main(String[] argv){  // main method eka ###
    try {
    if (argv.length != 1){
    // Must pass in the name of the XML file...
    System.err.println("Usage: java DOMSample filename");
    System.exit(1);
    // Get an instance of the parser
    DOMParser parser = new DOMParser();
    // Generate a URL from the filename.
    URL url = createURL(argv[0]);
    // Set various parser options: validation on,
    // warnings shown, error stream set to stderr.
    parser.setErrorStream(System.err);
    parser.showWarnings(true);
    // Parse the document.
    parser.parse(url);
    // Obtain the document.
    Document doc = parser.getDocument();
    // Print document elements
    System.out.print("The elements are: ");
    printElements(doc);
    // Print document element attributes
    System.out.println("The attributes of each element are: ");
    printElementAttributes(doc);
    catch (Exception e){
    System.out.println(e.toString());
    } // main method eka ###
    static void printElements(Document doc) {
    NodeList nl = doc.getElementsByTagName("*");
    Node n;
    for (int i=0; i<nl.getLength(); i++){
    n = nl.item(i);
    System.out.print(n.getNodeName() + " ");
    System.out.println();
    static void printElementAttributes(Document doc){
    NodeList nl = doc.getElementsByTagName("*");
    Element e;
    Node n;
    NamedNodeMap nnm;
    String attrname;
    String attrval;
    int i, len;
    len = nl.getLength();
    for (int j=0; j < len; j++){
    e = (Element)nl.item(j);
    System.out.println(e.getTagName() + ":");
    nnm = e.getAttributes();
    if (nnm != null){
    for (i=0; i<nnm.getLength(); i++){
    n = nnm.item(i);
    attrname = n.getNodeName();
    attrval = n.getNodeValue();
    System.out.print(" " + attrname + " = " + attrval);
    System.out.println();
    static URL createURL(String filename) {  // podi 3 Start
    URL url = null;
    try {
    url = new URL(filename);
    } catch (MalformedURLException ex) { /// BBBBBB
    try {
    File f = new File(filename);
    url = f.toURL();
    } catch (MalformedURLException e) {
    System.out.println("Cannot create URL for: " + filename);
    System.exit(0);
    } // BBBBBB
    return url;
    } // podi 3 End
    } //public class eka ***
    // End of program
    output comes as below:
    Isbn:
    Title:
    Price:
    Author:
    Message was edited by:
    chandanal

    Hi Chandanal,
    I edited your code slightly and I was able to get the correct output.
    I changed the following line:
    for (int j=0; j >< len; j++)to:
    for (int j=0; j < len; j++)I have included the complete source below:
    // menna puthe DOMSample eka - duwanawa 19/12/2005
    import java.io.*;
    import java.net.*;
    import org.w3c.dom.*;
    import org.w3c.dom.Node;
    import oracle.xml.parser.v2.*;
    public class DOMSample {
        //public class eka ***
        public static void main(String[] argv) {
            // main method eka ###
            try {
                if (argv.length != 1) {
                    // Must pass in the name of the XML file...
                    System.err.println("Usage: java DOMSample filename");
                    System.exit(1);
                // Get an instance of the parser
                DOMParser parser = new DOMParser();
                // Generate a URL from the filename.
                URL url = createURL(argv[0]);
                // Set various parser options: validation on,
                // warnings shown, error stream set to stderr.
                parser.setErrorStream(System.err);
                parser.showWarnings(true);
                // Parse the document.
                parser.parse(url);
                // Obtain the document.
                Document doc = parser.getDocument();
                // Print document elements
                System.out.print("The elements are: ");
                printElements(doc);
                // Print document element attributes
                System.out.println("The attributes of each element are: ");
                printElementAttributes(doc);
            } catch (Exception e) {
                System.out.println(e.toString());
        // main method eka ###
        static void printElements(Document doc) {
            NodeList nl = doc.getElementsByTagName("*");
            Node n;
            for (int i = 0; i < nl.getLength(); i++) {
                n = nl.item(i);
                System.out.print(n.getNodeName() + " ");
            System.out.println();
        static void printElementAttributes(Document doc) {
            NodeList nl = doc.getElementsByTagName("*");
            Element e;
            Node n;
            NamedNodeMap nnm;
            String attrname;
            String attrval;
            int i, len;
            len = nl.getLength();
            for (int j = 0; j < len; j++) {
                e = (Element)nl.item(j);
                System.out.println(e.getTagName() + ":");
                nnm = e.getAttributes();
                if (nnm != null) {
                    for (i = 0; i < nnm.getLength(); i++) {
                        n = nnm.item(i);
                        attrname = n.getNodeName();
                        attrval = n.getNodeValue();
                        System.out.print(" " + attrname + " = " + attrval);
                System.out.println();
        static URL createURL(String filename) {
            // podi 3 Start
            URL url = null;
            try {
                url = new URL(filename);
            } catch (MalformedURLException ex) {
                /// BBBBBB
                try {
                    File f = new File(filename);
                    url = f.toURL();
                } catch (MalformedURLException e) {
                    System.out.println("Cannot create URL for: " + filename);
                    System.exit(0);
            // BBBBBB
            return url;
        // podi 3 End
    } //public class eka ***-Blaise

  • F4 values are not accepted by the screen fields

    I have a field called month in a screen i could get the values for F$ by using below field. My F4 values are there in the domain fixed values so i had to use DD_DOMA_GET.and got the values fron ZMONTH domain. When im pressing F$ i can c input help values like
    01  january
    02 february
    12 December
    boldn i am selecting it the value is not selected or seen in the input/output field of the screen.bold.
    form MONTH_VALUES .
    DATA:
      fs_taba TYPE dd07v.
    DATA:
    it_taba TYPE STANDARD TABLE OF dd07v,
    it_tabb TYPE STANDARD TABLE OF dd07v,
    WA_DD07V TYPE DD07V.
    CALL FUNCTION 'DD_DOMA_GET'
      EXPORTING
        domain_name   = 'ZMONTH'
        langu         = sy-langu
        withtext      = 'X'
      TABLES
        dd07v_tab_a   = it_taba
        dd07v_tab_n   = it_tabb
      EXCEPTIONS
        illegal_value = 1
        op_failure    = 2
        OTHERS        = 3.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT  it_taba INTO fs_taba.
        MOVE fs_taba-domvalue_l TO WA_STATUS-DOMVALUE_L.
        MOVE   fs_taba-ddtext  TO WA_STATUS-ddtext.
        APPEND WA_STATUS TO GT_STATUS.
        CLEAR WA_STATUS.
        CLEAR fs_taba.
    ENDLOOP.
    ULINE.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
           EXPORTING
                retfield        = 'STATUS'
                value_org       = 'S'
           TABLES
                value_tab       = GT_STATUS
           EXCEPTIONS
                parameter_error = 1
                no_values_found = 2
                OTHERS          = 3.
      IF sy-subrc <> 0.
    ENDIF.
    REFRESH GT_STATUS.
    endform.

    Hi,
    If the values are in the value range of the domain then they will definitely come. And you have to trigger some event after selecting the value from the list.
    for example if you want some thing to display after selecting a value from drop down then after selecting the value from the f4 help list press enter or some button kind of thing.
    Thanks,
    Sri.

  • Safari 4 fonts are not clear on the screen.....

    I downloaded and installed Safari 4 for Windows over the weekend.
    I find that the fonts are not clear...they are actually fuzzy. Right now I have this page side by side with another browser and the type is definitely different.
    Any thoughts?
    Thank you
    Elliot

    First, try resetting your phone:
    Press the sleep/wake button & home button at the same time, keep pressing until you see the Apple logo, then release.

  • My Ipod touch camera's shoot and record buttons are not woking and the screen keeps freezing because of it. What to do?

    whenever i open the camera and click the buttons (in pic) the screen freezes and no picture is taken or video is made....Help please. I did try turning -the ipod off but nothing happened.

    Try:
    - 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.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    -  Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Why is firefox randomly playing advertisment clips that are not present on the screen?

    I just downloaded Firefox 4 and now whenever I choose a new website or search, some kind of advertisement clip plays. I cannot find any ad box to close it or pause it, but it cuts itself off after about 30-60 seconds. If I stay on the website it repeats the same ad again. (Even on this site I have had random ad clips playing). I am not very computer literate so I don't know if its something I need to do on my end to shush these ads (preferably permanently) or something that I might need to seek help for.

    Sounds as if you have some Malware on your PC.
    Install, update, and run these programs in this order. They are listed in order of efficacy.<br />'''''(Not all programs detect the same Malware, so you may need to run them all to solve your problem.)''''' <br />These programs are all free for personal use, but some have limited functionality in the "free mode" - but those are features you really don't need to find and remove the problem that you have.<br />
    ''Note: If your Malware infection is bad enough and you are mis-directed to URL's other than what is posted, you may have to use a different PC to download these programs and use a USB stick to transfer them to the afflicted PC.''
    Malwarebytes' Anti-Malware - [http://www.malwarebytes.org/mbam.php] <br />
    SuperAntispyware - [http://www.superantispyware.com/] <br />
    AdAware - [http://www.lavasoftusa.com/software/adaware/] <br />
    Spybot Search & Destroy - [http://www.safer-networking.org/en/index.html] <br />
    Windows Defender: Home Page - [http://www.microsoft.com/windows/products/winfamily/defender/default.mspx]<br />
    Also, if you have a search engine re-direct problem, see this:<br />
    http://deletemalware.blogspot.com/2010/02/remove-google-redirect-virus.html
    If these don't find it or can't clear it, post in one of these forums for specialized malware removal help: <br />
    [http://www.spywarewarrior.com/index.php] <br />
    [http://forum.aumha.org/] <br />
    [http://www.spywareinfoforum.com/] <br />
    [http://bleepingcomputer.com]

  • TS1702 doe's anybody have a problem with your Hero characters are not seen on the screen in CastleAge and know what to do about it?

    Doe's anybody else have trouble with your hero characters not showing on screen and what to do about it. This is on CastleAge HD from Phoenix games ? This is on an Ipone4s.

    You'll be more likely to get help with this if you ask in the CastleAge forums, I would suspect:
    http://www.castleageforums.com/cforum/
    Regards.

  • How do you add icons to the iPhone which are listed as purchased apps and show installed but are not appearing on the screen.

    Some of my purchased apps show installed but don't appear as icons on my phone. How do I get them to be icons?

    I am back.  I have now sorted out my Launch Pad to be organized the way I want it. I have decluttered my Dock.  Very nice. 
    Now I want to add some of the remaining icons for apps that did not automatically show up in Launch Pad.  So, again, how do I do that?
    Thanks,
    Cliff

  • HT203200 I purchased an album on itunes and some of the songs are not complete

    I have purchased many songs on itunes and never had problems. Recently I purchased an album and even though the downloads are complete and nothing unusual or any problems happened while it was downloading, the songs are not complete. The album plays on my itunes, but each song gets cut off after a minute or two. Is there a way I can redownload the album without having to purchase it again?

    Welcome to the Apple Community.
    Try deleting the problematic tune (electing to remove original file if/when prompted) and then re-downloading the file from the iTunes store.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option from the Quick Links section in the top right corner of the iTunes homepage in your iTunes application on your computer.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option at the bottom of the screen of the iTunes app (or video app on your iOS device.
    If the problem re-occurs, select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History using your computer.

  • I'm on a windows laptop using iTunes sharing through the family to connect with Apple TV. After choosing the folder of photos to be shared and displayed on the appletv and when I choose to show on screen, they are not shown in the order they are in the or

    I'm on a windows laptop using iTunes sharing through the family to connect with Apple TV.
    After choosing the folder of photos to be shared and displayed on the appletv and when I choose to show on screen, they are not shown in the order they are in the original folder.
    How to pair show in a certain order, for example, sorted by name.
    grateful
    Julio Cesar

    Not that I'm aware of. You just export JPEG copies to a folder that you can point iTunes to. For instance, I have created a folder in my Pictures folder called Apple TV. And within that folder I have other folders of pictures that I can choose from in iTunes to share with Apple TV. But there doesn't seem to be any way to share a Lightroom slideshow. If you have laid to create a video file that would probably work. Apple TV is a little clunky in my opinion. Some things are a little more difficult to do now than they were a while back. I probably haven't provided you with much help, but just keep experimenting and I think you will figure it out.

  • IF UPDATES TO APPS THAT CAME WITH OUR MAC ARE FREE, WHY DOES APPLE REQUIRE BILLING INFORMATION TO BE COMPLETED IN THE SCREEN JUST BEFORE ACCESS TO INSTALLING FREE UPDATES???

    IF UPDATES TO APPS THAT CAME WITH OUR MAC ARE FREE, WHY DOES APPLE REQUIRE BILLING INFORMATION TO BE COMPLETED IN THE SCREEN JUST BEFORE ACCESS TO INSTALLING FREE UPDATES???

    It is necessary to confirm your identity as the 'buyer'.  Please do not use all capital letters.  It is not well regarded here and can be tricky to read for some. Thank you.

  • TS1424 I have purchased and downloaded an album, but some of the songs did not download correctly as the songs are not complete.  How do I redownload them without purchasing the album again.

    I have purchased and downloaded an album, but some of the songs did not download correctly as the songs are not complete.  How do I redownload them without purchasing the album again.

    If your country's iTunes Store allows you to redownload purchased tracks, I'd delete your current copies of the track and try redownloading fresh copies.
    Otherwise, I'd report the problem to the iTunes Store.
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the items that are not playing properly. If you can't see "Report a Problem" next to the items, click the "Report a problem" button. Now click the "Report a Problem" links next to the items.
    (Not entirely sure what happens after you click that link, but fingers crossed it should be relatively straightforward.)

  • A few months back I Dropped my iPhone 4 and I cracked my screen and now i cant unlock my phone due to touchscreen not working plus there are blured lines across the screen and I can't see anything that it displays. Now when I try too connect my iPhone 4 t

    A few months back I Dropped my iPhone 4 and I cracked my screen and now i cant unlock my phone due to touch screen not working plus there are blurred lines across the screen and I can't see anything that it displays.
    Now when I try too connect my iPhone 4 to iTunes on my computer at home an error message comes up saying that I have to unlock my iPhone 4 for it to communicate to my device.
    But the problem is that I can't unlock my iPhone 4 because I'm unable to see the key pad and my touch screen no longer responds when I touch it.
    I just want to reset my iPhone 4 back to its Factory Settings & start all over from the beginning.
    How can I unlock my iPhone 4 with iTunes on my computer or any other option you suggest me trying.
    Thank you in advance,
    SiHero

    If you have had a "local guy "repair your iphone you will not get any support from Apple for warranty OR post warranty
    If Verizon return it to Apple it wil not be handled by Apple
    If Verizon also use unauthorised repairers you may be lucky
    (Apple do not sell parts to local guys or anyone else )

Maybe you are looking for

  • How to marshal List Source using JAXB and xjc?

    Hi all, I'm having problems to marshal objects of xjc generated java classes to xml output. In detail I am facing problems to use a list of sources (List<javax.xml.transform.Source>) that's been generated. The schema I am using is: <xs:complexType na

  • Old photos not marked as duplicates, constantly imported

    I'm using photos on iCloud, linking two Macs, an iPhone and an iPad. As such, all photos show up on all devices, but aren't downloaded to them all: I use one of the macs as the "master" photo repository. However, when I look at a certain group of old

  • Regarding: How to Get the Tax Amount

    Hai Friends,                         I have the Input of  Amount + Tax Group.                        I  need the amount for every Tax from Tax group.                        How to get the Tax amount for differnt tax type. Please help me. Regards, K S

  • Numbers spreadsheet error

    i have the latest versions of OS X and numbers 3.2 but I keep getting an error when I try to open my spreadsheets.  It says: "you need newer versions of OS X and Numbers to open this spreadsheet".  What is the problem?  I even deleted Numbers and rei

  • Help - I have this query which runs fine on SQL Server against Northwind...

    SELECT C.CustomerID, C.CompanyName, Coalesce(Year(O.OrderDate),0) [Year], (SELECT Count(O2.OrderID)      FROM Orders O2           WHERE Year(O2.OrderDate)= Year(O.OrderDate)) [Total], Count(O.OrderID) [No Of Orders], Convert(Varchar, Coalesce(Sum(OD.