Getting rid of chapter names

I created a DVD in iDVD, with music. I know each photo is a chapter, but how do I keep from the chapter name (in my case the photo name) from displaying on each photo in the slideshow? Feeling dumb.

yeah...I'm pretty sure that's what I did. When I previewed the slideshow in iDVD I didn't see anything. But after I burned the DVD and played it on a different computer, each slide was named chapter 1, chapter 2 and so on...kind of takes away from the photo. I am trying it again, however...in case I'm remembering incorrectly.
Thanks -

Similar Messages

  • A friend gave me an older Nano 3rd generation. Can anyone tell me how to delete what is on there and how to get rid of his name. It does not connect to my itunes. I cannot even find the source or the place to restore it as suggested in the owners manual.

    I have a 3rd generation ipod that a friend gave me. I cannot find anything on how to get rid of his name and music on it. This is what the owners manual says:
    "Select ipod nano in the soiurce list and click the summary tab" I cannot find the source or the summary tab on itunes. Can any one help me? I would like to delete everything on it and start over but I am afraid I cannot add anything back on it. I know this is detailed and a lot, but I really need help.

    Restore
    Note: Because Restore erases all of the songs and files on iPod, make sure toback up any files you've saved on the iPod disk. All of your songs, videos, podcasts, audiobooks, and games can be loaded back to your iPod provided that you have them stored in your iTunes Library.
    How to restore your iPod:For Windows:
    1. Make sure you've reinstalled the latest version of iTunes.
    2. Open iTunes, and then connect your iPod to your computer.
    3. After a few moments, it will appear in the source list in iTunes. If the iPod's display doesn't show "Connected" or "Do not disconnect" you may need to put the iPod into disk mode to proceed.
    4. Select your iPod in the source list and you will see information about it appear in the Summary tab of the main iTunes windows.
    5. Click the Restore button. You will be prompted with one or more restore options that may prompt iTunes to automatically download of the latest iPod Software. The 4 possible restore options are:
    Restore Option 1: Restore - Restores with same iPod Software version already on iPod.
    Restore Option 2: Use Same Version - Restores with same iPod Software version already on iPod even though a newer version is available.
    Restore Option 3: Use Newest Version - Restores with the latest iPod Software on your computer.
    Restore Option 4: Restore and Update - Restores with the latest iPod Software on your computer.
    6. A progress bar will appear on the computer screen indicating that the first stage of the restore process has started. When this stage is completed, iTunes will instruct you to leave iPod connected to your computer to complete restore.
    7. During the stage 2 of the restore process, the iPod will show an Apple logo as well as a progress bar at the bottom of the display. It is critical that the iPod remains connected to the computer or iPod Power adapter during this stage. Note: The progress bar may be difficult to see since the backlight on the iPod display may be off.
    8. After stage 2 of the restore process is complete and the iPod is connected to the computer, the iTunes Setup Assistant window will appear asking you to name your iPod and choose your syncing preferences similar to when you connected your iPod for the first time.
    For Mac:
    1. Make sure you've reinstalled the latest version of iTunes.
    2. Open iTunes, and then connect your iPod to your computer.
    3. After a few moments, it will appear in the source list in iTunes. If the iPod's display doesn't show "Connected" or "Do not disconnect" you may need to put the iPod into disk mode to proceed.
    4. Select your iPod in the source list and you will see information about it appear in the Summary tab of the main iTunes windows.
    5. Click the Restore button. You will be prompted with one or more restore options that may prompt iTunes to automatically download of the latest iPod Software. The 4 possible restore options are:
    Restore Option 1: Restore - Restores with same iPod Software version already on iPod.
    Restore Option 2: Use Same Version - Restores with same iPod Software version already on iPod, even though a newer version is available.
    Restore Option 3: Use Newest Version - Restores with latest iPod Software version on your computer.
    Restore Option 4: Restore and Update - Restores with latest iPod Software version on your computer.
    6. A message will appear prompting you to enter an administrator's name and password.
    7. A progress bar will appear on the computer screen indicating that the first stage of the restore process has started. When this stage is completed, iTunes will instruct you to leave iPod connected to your computer to complete restore.
    8. During the stage 2 of the restore process, the iPod will show an Apple logo as well as a progress bar at the bottom of the display. It is critical that the iPod remains connected to the computer or iPod Power adapter during this stage. Note: The progress bar may be difficult to see since the backlight on the iPod display may be off.
    9. After stage 2 of the restore process is complete and the iPod is connected to the computer, the iTunes Setup Assistant window will appear asking you to name your iPod and choose your syncing preferences similar to when you connected your iPod for the first time.
    Source:
    iPod nano (3rd generation) Troubleshooting Assistant
    Message was edited by: michael08081

  • To get rid of Schema name in output using DBMS_METADATA

    Hi all,
    Would someone be able to tell me how to get rid of the schema name output given by the below select stmt.
    Query
    Select Dbms_metadata.Get_ddl('FUNCTION','ACCOUNT_CODE')
    from dual;
    Result
    CREATE OR REPLACE FUNCTION "GOINGLIVE"."ACCOUNT_CODE" (PTransCode VarChar2,.............
    I checked for the documentation, but could manage to eliminate only storage clauses, tablespace etc. but not teh schema name.
    Please provide your advise on this.
    Thanks
    - Sandeep

    Which version are you on?
    In 10g, you can use DBMS_METADATA.SET_REMAP_PARAM to get rid of schema name:
    SQL> create table md_test(x int, y varchar2(10));
    Table created.
    SQL> declare
      2    l_ctx number;
      3    l_ctxt number;
      4    l_ddl sys.ku$_ddls;
      5  begin
      6    l_ctx := dbms_metadata.open('TABLE');
      7    dbms_metadata.set_filter(l_ctx, 'NAME', 'MD_TEST');
      8    l_ctxt := dbms_metadata.add_transform(l_ctx, 'MODIFY');
      9    dbms_metadata.set_remap_param(l_ctxt, 'REMAP_SCHEMA', user, null);
    10    l_ctxt := dbms_metadata.add_transform(l_ctx, 'DDL');
    11    dbms_metadata.set_transform_param(l_ctxt, 'SEGMENT_ATTRIBUTES', false);
    12    l_ddl := dbms_metadata.fetch_ddl(l_ctx);
    13    dbms_output.put_line(l_ddl(1).ddltext);
    14    dbms_metadata.close(l_ctx);
    15  end;
    16  /
    CREATE TABLE "MD_TEST"
       (    "X" NUMBER(*,0),
            "Y" VARCHAR2(10)
    PL/SQL procedure successfully completed.In 9i, you have to resort to some manual tricks (with REPLACE, probably):
    SQL> create table md_test(x int, y varchar2(10));
    Table created.
    SQL> declare
      2    l_ctx number;
      3    l_ctxt number;
      4    l_ddl sys.ku$_ddls;
      5  begin
      6    l_ctx := dbms_metadata.open('TABLE');
      7    dbms_metadata.set_filter(l_ctx, 'NAME', 'MD_TEST');
      8    l_ctxt := dbms_metadata.add_transform(l_ctx, 'DDL');
      9    dbms_metadata.set_transform_param(l_ctxt, 'SEGMENT_ATTRIBUTES', false);
    10    l_ddl := dbms_metadata.fetch_ddl(l_ctx);
    11    dbms_output.put_line(
    12      replace(l_ddl(1).ddltext, '"' || user || '".'));
    13    dbms_metadata.close(l_ctx);
    14  end;
    15  /
    CREATE TABLE "MD_TEST"
       (    "X" NUMBER(*,0),
            "Y" VARCHAR2(10)
    PL/SQL procedure successfully completed.
    SQL> select * from v$version where rownum = 1;
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.6.0 - ProductionHope this helps,
    Andrew.

  • How do I get rid of group names

    How do I get rid  of group names in contacts, I seem to have loads of group names ??

    Those are not users. They're computers or printers on the network. Your Wi-Fi network may be insecure. Check the router settings to make sure you're using WPA 2 security, and if you are, change the password to a random string of at least ten upper- and lower-case letters and digits. Any password that you can remember is not good enough.

  • Get rid of domain name

    Hi all,
    How to get rid of domain name from global_name?
    db_name = test
    db_domain =
    select * from global_name
    global_name
    test.oracle.com
    Is there any parameter to set so that only "test" will be displayed in global_name not "test.oracle.com"?

    Try:
    db_domain="" ;
    edit the network files:
    sqlnet.ora - delete the entry for the default domain
    tnsnames an listener : edit the service_name
    Cheers,
    Dobby

  • Why did Apple iMovie get rid of chapter markers?

    Why would Apple ever get rid of chapter markers in iMovie? That is a really ignorant decision because that's one of the reasons that made iMovie great before. I know there are ways around it, but why would I want to export to another Apple app or a third-party app to add chapters when I can do it in iMovie (pre-'08 version).
    It's such a hassle now. If you're making any kind of a movie that isn't going to be played in QT or a computer where you can easily click on the play head - one would want chapter markers to skip ahead or move to a different section of your demo reel or whatever.
    Unbelievable...

    I disagree, it is not unfair to evaluate iMovie '08 as done here by previous posters:
    iLife '08 is sold as an upgrade to '06, so as a customer, I believe to rightfully expect an upgrade and not a downgrade in many features.
    I do agree though, that iMovie '08 does include a lot of easy to use features and is perfect for beginners or users who just want to put their files into a sharable environment, with little effort to make things look good.
    BUT: If you did any serious videoediting with iMovie '06, then this program is defnitely a downgrade in terms of options and control. As said, many of the sharing options are easier in '08 but even though a little more complex, managable in '06. Possibly I may also be untypical for not using YouTube as a preferred platform for sharing. Websharing on my personal site and DVDs both have the same priority. And I find better options for my purposes in '06.
    I've used '06 for documentation projects up to 4 hours in length. These are too cumbersome in '08, chapter markers being one important factor to me, besides integration with iDVD.
    I find the concept of '08 ok for smaller or less demanding projects, so I gave it a try. I was not happy with the result. Though this was before the last major update and I have not again used the program since.
    My personal consequence: I will keep an eye on how Apple decides to go on with their consumer movie software. Started switching to Final Cut Express, for now mainly using iMovie '06 and Norrkross Movie. The latter two being my preferred combination on my PB G4.
    In my personal opinion: Apple hast taken away a lot of the flexibility the old version offered. I think it would be a better step for many, to step up to Final Cut Express or other.
    Dirk

  • Getting rid of mail names

    I use various psuedonyms when browsing the net and use different names like in comments etc. Some how the names get attached to my email address. eg. my email addess is: David Smith<@xmail.com> and I have internet name of JollyOne, my email is now tagged as JollyOne<@xmail.com> in my Apple mail. How do I get rid of this. There is nothing in address book. Where do I look and get rid of this.
    <E-Mail Edited by Host>

    yeah...I'm pretty sure that's what I did. When I previewed the slideshow in iDVD I didn't see anything. But after I burned the DVD and played it on a different computer, each slide was named chapter 1, chapter 2 and so on...kind of takes away from the photo. I am trying it again, however...in case I'm remembering incorrectly.
    Thanks -

  • In Mail I have a "no name" card in email address list that has a known address but when I click on "no name" all adresses in email list go to relevant out going address box-can't get rid of "no name" in email address list

    In Mail email list I have a "no name" card with a known email address. When I click on this card all names on list go to outgoing address box-I cannot get rid of this card

    In Mail email list I have a "no name" card with a known email address. When I click on this card all names on list go to outgoing address box-I cannot get rid of this card

  • How do I get rid of my name in Lion Login ID on Top Right of Menu

    In Lion, my user id (My full name) is at the top right of my menu screen - next to spotlight.  Im trying to figure out how to get rid of my full name because
    a) Theres only one user on this computer & I know who I am
    b) I have other apps with menu icons and I cant use them because there's not enough space due to my name.
    I basically need to clear up some real estate space, and cant figure out how to do it.  Ive kept checking system preferences but can't find out where this resides.  I want my full name to continue being my account admin id/user.  I just dont want it to be on the screen so that my apps' icons can live on the top menu bar.
    Thanks

    Thank you..  I knew it was something simple but I just couldnt figure out how to get it.  I remember the 'expert' technician setting it up had to ask someone how to make the name appear...and now I was realizing that I dont really need it up there and it's taking up valuable real estate.
    One other thing in case you know since it's somewhat related.  Ive got my computer set up so I can type foreign languages so Ive got virtual keyboard options from my menu bar.  For some reason, whenever Im asked to put my system ID password in -  like the steps you just told me to follow -  the virtual keyboard automatically pops up at the same time as the window asking me to put in my password.  Its not a big deal but its just frustrating that its there, and Im wondering why as I know its not supposed to be.  I dont see anything in Keyboard Preferences That would Be causing this.  Any thoughts?
    Thanks again for your help  Im constantly surprised at how much more helpful Support Communites has been than Applecare of the so-called trainers at the retail stores.

  • How to get rid of file name that pops up with mouseover?

    When a user is on my website and mouses over a link to another page, the name of that page comes up - for example, if I mouse over the link to the Mums Night Out page (while on the home page) the file name pops up (mumsnightout.html)
    Any idea on how to get rid of that annoying issue?
    Thanks,
    roxpat

    Is this question now solved?
    Excuse me if it is, but I am really freaking out about this and don't know what to do.
    I don't want to launch my website before everything is perfect and I really want the yellow-pop-up-box-bstrd to go away.
    I am using this code which works fine in ff and safari but not in ie:
    <script type='text/javascript'>
    function clearTooltip() {
    _links = parent.document.links;
    for (i=0; i<_links.length; i++) {
    _links.setAttribute('title', '');
    chkFooter = setInterval('checkFooter()', 100);
    function checkFooter() {
    if (parent.document.getElementById('footer_layer') != null) {
    clearTooltip();
    clearInterval(chkFooter);
    </script>
    Should I modify it in some way? Any ideas?

  • I can't get rid of layer names from the Ultiboard PCB properties-General layers tab

    A bunch of DXF layer names were erroneously entered into Ultiboard 10.1 a few years ago during a DXF importing operation. I upgraded to 12.0 recently and hoped that the old layers would be eliminated. I have been wanting to get rid of them for a long time. I tried deleting the ub_config file in AppData, but it didn't remove them. Is there anything you can think of to extract them from the program's grasp? Thanks, Tod
    Solved!
    Go to Solution.

    Hi Tod,
    I suspect one of your design file is causing this.  If you go to Options>>PCP Properties>>General Layers, do you see the DXF layers in here?  If you see the layers, can you select it then press the Delete button?
    Tien P.
    National Instruments

  • Ive deleted alot of movies off my mac but the file name of every movie still remains in all files? how do i get rid of the name? it wont let me delete :(

    i deleted alot of movies off of my mac they are gone and cannot be opened but the movie names still remain in all files in finder? it will not let me delete the names saying alias cannot be found and when i click delete alais the message only comes back up?? help please!!

    Select  ▹ System Preferences ▹ Spotlight ▹ Privacy. The list of items excluded from Spotlight indexing is shown (it may be empty.) Click the plus (“+”) icon to add an item to the list. Select your boot volume (under DEVICES) and add it to the list. Then remove it from the list by selecting it and clicking the minus (“-“) icon.
    Spotlight will rebuild the index. If you try to do a Spotlight search now from the magnifying-glass icon in the top right corner of the display, a pulsing dot will appear in the icon. When the dot disappears, the indexing is complete.

  • ITunes share section has a random name that is not mine. Why is it there and how do I get rid of it?

    I want to get rid of this name from my share section. I dont know who it is and I dont like the music either. Nobody has ever used my iTunes and this just all of a sudden came up.

    It will be coming from another computer on the same local network. Are you using a shared Wi-Fi router?
    To stop iTunes looking for shared libraries use Edit > Preferences > General tab and untick Shared Libraries. To make sure your library isn't being shared if you don't want it to be use Edit > Preferences > Sharing tab.
    tt2

  • How can I get rid of directory path in front of my folder names in Folder listing in Library mode???

    Im using the most recent version of Lightroom 5.3 (updated through CC - even though this has shown up on previous version) on Windows 7 and all the folders in my library are showing up with the directory path in front of my folder names. How can I get rid of this? I do not see any options in preferences to turn this off. I have also turned off preferences in Windows > Folder Options Control Panel "Display full Path in Title bar" option.
    I have Lightroom on several computers and have set up preferences the same on each workstation, and this only shows up on one workstation.
    Any help would be appreciated.
    You can see from the image  below how this is showing up.
    Thanks
    Thanks!

    Click the little down arrow/+ symbol  next the + - in the folders bar.

  • Personal Domain - Can I get rid of my iWeb site's name in the URL?

    Hey everyone,
    I just set up my iWeb site (called "This is Out of Context") to point to a personal domain name (www.thisisoutofcontext.com). Problem is, now my homepage URL reads: http://www.thisisoutofcontext.com/THISIS_OUT_OFCONTEXT/HOME.html
    Is there any way to "get rid" of the second "THISIS_OUT_OFCONTEXT" so that my URL simply reads: http://www.thisisoutofcontext.com/HOME.html ? You know...short 'n sweet...like a "normal" website?
    Any thoughts or tips would be much appreciated (please go easy on me, I'm a total newbie here...)
    Cheers!

    does this work with iweb 08?
    my site was running fine until i upgraded to iweb 08 and redsigned my site. i have a godaddy account for my domain name and i have it masked and forwarded but my apple url still appears at the top of the browser bar while in safari and firefox. my site is www.louislemoine.com
    if you go there you will see what i mean. maybe what you are talking about will solve this problem. i am at work so i can not check to see if what you talk about will work. i am hoping that you are onto something.

Maybe you are looking for