CS5: Manual layer break dialog does not appear

Hi
If I would like to create a dual layer disc, the following message appears: "the disc requires a layer break" in CS5.
I set the layer break from "automatical" to "manual" and tried again but the message appears again and no dialog will be opened as Adobe stated in their help: "Manual: Opens the Set Layer Transition dialog box...".
I read a lot of people having problems with layer breaks in Encore but it seemed that nobody has solution.
Why does the layer transition dialog not pop up? Does anybody has the same problems with dialog not showing up?
My setup:
- Movie ProRes 442 HQ, 112min, 20 chapters (no error on transcoding)
- Main menu with "play" and "scene" button, animated video as intro (ProRes 442HQ)
- 2 scene menues with 10 video buttons each
- there is no error on project checking
- DVD+R DL, no problmes so far to write dual layer dvd's
- 8.14GB will be used on disc
Thans for any help, I am really frustrated.
Cheers,
gorbi

I think I found a “cheat” solution.  I figured out I needed to force the auto break (only option available in CS6 on a Mac), was to push the auto break down to some other place in the movie.  I created 5 minutes of dummy black video, compressed it to the same specs as other videos, added that to the beginning of the offending timeline, cut it to 1 minute, created a second chapter marker right at the heads of the movie, linked the menu button to that chapter marker, and voila!, where ever Encore put the autobreak now doesn’t affect the movie play. It starts up right after the menu button is selected, just as it should.  For anyone else having this problem, try this solution... seems to work well.  I think that’s a good “thinking  outside the box” solution.

Similar Messages

  • I have just updated my MBP to Maverick OS. I am unable to shutdown or log off. When i press the shutdown button, a black screen appears which goes off on pressing any key. The shutdown or log off dialog does not appear. Your kind help is much appreciated.

    I have just updated my MBP 17 / retina display to Maverick OS. I am unable to shutdown or log off. When i press the shutdown button, a black screen appears which goes off on pressing any key. The shutdown or log off dialog does not appear. Your kind help is much appreciated.

    The button response has changed. 
    Short press : sleep
    Medium press (2-3 sec) : restart, shutdown, sleep dialog
    Long press : force shutdown. (Same as before)

  • SPOOL DIALOG DOES NOT APPEAR WHEN NO_DIALOG = SPACE

    The control parameters that allow the spool dialog popup to appear work when executing directly from MB90, but when executing from MIGO, the spool dialog popup does not appear.  The print output is occurring without giving user option to change spool dialog entries.  The desired outcome is to have the spool dialog popup appear when executing IM transactions and our output type is WEE4 to allow user input prior to printing. 
    See below for code:
    FORM CALL_GR_SMARTFORM.
      TABLES: LTBP,
              QAMB.
      DATA:  LV_LTBP TYPE LTBP,
             LV_SFORM_NAME TYPE SFORM,
             LV_FM_NAME   TYPE RS38L_FNAM,
             LV_MESS      TYPE STRING,
             LT_OUTPUT_OPTIONS TYPE SSFCOMPOP OCCURS 0 WITH HEADER LINE,
             LT_COPIES    LIKE MSEG-MENGE,
             LT_CONTROL_PARAMETERS TYPE SSFCTRLOP OCCURS 0 WITH HEADER LINE,
             LV_MATERIAL_TEXT TYPE MAKT,
             L_CX_ROOT    TYPE  REF TO CX_ROOT.
         SELECT SINGLE * FROM MAKT INTO LV_MATERIAL_TEXT
                WHERE MATNR = MSEG-MATNR AND
                      SPRAS = 'EN'.
      IF mseg-werks = '0050' AND NAST-KSCHL = 'WEE2'.
        LV_SFORM_NAME = 'ZZEBRA_GRSERVLBL'.
      ELSEIF mseg-werks = '0050' AND NAST-KSCHL = 'WEE4'.
        LV_SFORM_NAME = TNAPR-SFORM.
        LT_COPIES = MSEG-MENGE.
      ELSEIF MKPF-VGART = 'WQ' AND MSEG-BWART = '321'.
        IF MSEG-ZEILE <> '0001'.
          RETURN.
        ENDIF.
        SELECT SINGLE * FROM QAMB
              WHERE MBLNR = MSEG-MBLNR AND
                    MJAHR = MSEG-MJAHR.
        IF sy-subrc = 0.
          SELECT SINGLE * FROM LTBP INTO LV_LTBP
                WHERE QPLOS = QAMB-PRUEFLOS AND
                      MATNR = MSEG-MATNR.
        ENDIF.
        IF sy-subrc = 0.
          SELECT SINGLE * FROM LTBP
                WHERE TBNUM = LV_LTBP-TBNUM AND
                      MATNR = LV_LTBP-MATNR AND
                      MBPOS = LV_LTBP-MBPOS AND
                      ELIKZ = ''            AND
                      BESTQ = ''.
        ENDIF.
        LV_SFORM_NAME = TNAPR-SFORM.
      ELSEIF mseg-bestq = 'Q'.
        SELECT SINGLE * FROM LTBP
              WHERE LGNUM = MSEG-LGNUM AND
                    TBNUM = MSEG-TBNUM AND
                    TBPOS = MSEG-TBPOS.
          LV_SFORM_NAME = 'ZZEBRA_GRQMLABEL'.
      ELSE.
        LV_SFORM_NAME = TNAPR-SFORM.
      ENDIF.
      LT_OUTPUT_OPTIONS-TDIMMED   = NAST-DIMME.
      LT_OUTPUT_OPTIONS-TDDELETE  = NAST-DELET.
      LT_OUTPUT_OPTIONS-TDDEST    = NAST-LDEST.
      LT_OUTPUT_OPTIONS-TDDATASET = NAST-DSNAM.
      LT_OUTPUT_OPTIONS-TDSUFFIX1 = NAST-DSUF1.
      LT_OUTPUT_OPTIONS-TDSUFFIX2 = NAST-DSUF2.
      LT_OUTPUT_OPTIONS-TDARMOD   = NAST-TDARMOD.
      LT_OUTPUT_OPTIONS-TDCOVER   = NAST-TDOCOVER.
    IF sy-tcode = 'MB90'.
      LT_CONTROL_PARAMETERS-NO_DIALOG = SPACE.
    ELSE.
      LT_CONTROL_PARAMETERS-NO_DIALOG = 'X'.
    ENDIF.
    IF NAST-KSCHL = 'WEE4'.
      LT_OUTPUT_OPTIONS-TDCOPIES  = LT_COPIES.
      LT_OUTPUT_OPTIONS-TDGROUP  = 'X'.
      LT_CONTROL_PARAMETERS-NO_DIALOG = SPACE.
    ENDIF.
      APPEND LT_CONTROL_PARAMETERS.
      APPEND LT_OUTPUT_OPTIONS.
    **To get Function Module Name
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname                 = LV_SFORM_NAME
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
    IMPORTING
         fm_name                  = LV_FM_NAME
    EXCEPTIONS
      NO_FORM                  = 1
      NO_FUNCTION_MODULE       = 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.
       CATCH CX_FP_API INTO L_CX_ROOT.
         LV_MESS = L_CX_ROOT->GET_TEXT( ).
         MESSAGE LV_MESS TYPE 'E'.
    ENDIF.
    To call SMARTFORM Form
      CALL FUNCTION LV_FM_NAME
       EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
         CONTROL_PARAMETERS         = LT_CONTROL_PARAMETERS
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
         OUTPUT_OPTIONS             = LT_OUTPUT_OPTIONS
         USER_SETTINGS              = SPACE
         po_item                    = ekpo
         mat_text                   = LV_MATERIAL_TEXT
         mat_doc_item               = mseg
         mat_doc_post               = mkpf
         QM_INSP_LOT                = ltbp
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
    EXCEPTIONS
      FORMATTING_ERROR           = 1
      INTERNAL_ERROR             = 2
      SEND_ERROR                 = 3
      USER_CANCELED              = 4
      OTHERS                     = 5
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    ENDFORM.                    " call_rm07etikett_smartfo

    Hi azman1437.
    I see that since an update you haven't been able to scan with your Deskjet 3050A. I try to help with this.
    I would suggest by starting with an uinstall/install of your software. Something may have changed how the software is loading on the computer when you attempt to scan.
    The other option, is looking for the HPscan application.
    Where this is located depends on your computers operating system. To help with that would need to know the OS of the computer.
    I hope this helps, thanks for your post.
    I worked on behalf of HP.

  • PC Suite - Sync - Settings Dialog Does not Appear

    Installed PC Suite. Selected Synchronise and the Synchronise dialog appears. The Settings dialog does not automatically appear as stated in Help. Pressing the "Settings" button does not cause the Settings dialog to appear. Pressing the Synchronise button also does nothing.
    Have tried to uninstall and re-install PC Suite, have tried 6.7 and the latest 6.8 on the the website.
    The very first time I tried this, the settings dialog did appear, when I started clicking through the settings to choose what I wanted, the dialog froze and eventually the application had to be killed using Task Manager.
    Version info:
    Windows XP Pro Ver 2002
    Service Pack 2
    PC Suite Version - 6.7 (also tried 6.8)
    Connection method - Bluetooth

    Hi there,
    I have exactly the same problem - i have installed - un-installed - re-installed and used the nokia registry cleaner tool - still with same problems ovccuring. The strange thing is, i have used this device (Nokia 6230i) on my pc before. (Fijitsu Siemens Laptop).
    I have tried to get working using cable and bluetooth device - they all function as they should every other way -but will not allow me to click the settings button and sync - the button is enabled, but just does no action when clicked.
    I have done as you requested miksu - and it succesfully connects - what now?
    I have:
    XP Pro Service Pack 2
    Nokia PC Suite 6.80.22
    Office 2003
    Im desperate to get this working again - missing too many appointments!!!
    Many thanks,
    Neil

  • KDE logout/shutdown dialog does not appear

    Hello, I am using KDE and the right click or the KMenu dialog for logout/shutdown/restart does not appear.
    Also i have a startup script which doesn't load at all times. I have found sometimes the dialog appears for some sessions (randomly), and in those sessions the autostart apps actually work. So I guess they are somewhat related.
    Please suggest me what steps should I take.

    The fact that it sometimes works doesn't make it easier to find  a solution.
    However, I did search a bit, and found his -perhaps outdated-site
    http://techbase.kde.org/KDE_System_Admi … on/Startup
    it states
    The KDE session manager also restores one of the previous sessions
    I looked at my own ~/.kde4/share/config/ksmserverrc:
    [General]
    confirmLogout=false
    excludeApps=
    loginMode=restorePreviousLogout
    offerShutdown=true
    screenCount=1
    shutdownType=0
    [LegacySession: saved at previous logout]
    count=0
    [Session: saved at previous logout]
    clientId1=1041726368000137260930800000004110000
    clientId2=1041726368000137106177600000004810009
    clientId3=1041726368000137303911200000004300005
    count=3
    discardCommand1[$e]=rm,$HOME/.kde4/share/config/session/kwin_1041726368000137260930800000004110000_1373044182_993937
    discardCommand2[$e]=\\0
    discardCommand3[$e]=
    program1=kwin
    program2=/usr/bin/nepomukcontroller
    program3=pulseaudio
    restartCommand1=kwin,-session,1041726368000137260930800000004110000_1373044182_993937
    restartCommand2=/usr/bin/nepomukcontroller,-session,1041726368000137106177600000004810009_1373044182_991176
    restartCommand3=
    restartStyleHint1=0
    restartStyleHint2=0
    restartStyleHint3=0
    userId1=henk
    userId2=henk
    userId3=henk
    wasWm1=true
    wasWm2=false
    wasWm3=false
    furthermore the site states:
    For example, if ksmserverrc contains:
    restartCommand1=kwin,-session,110a0a0002000106760689100000019360000_1083342151_608625
    restartCommand2=konsole,-session,10378ac070000108334204700000277690000_1083342151_552722
    Then the application specific state information for kwin and konsole can be found in
    $KDEHOME/share/config/session/kwin_110a0a0002000106760689100000019360000_1083342151_608625
    and
    $KDEHOME/share/config/session/konsole_10378ac070000108334204700000277690000_1083342151_552722
    respectively.
    Perhaps you should have a look into it.

  • Why my dialog does not appear?

    When i using IE8 open an pdf on web under Win7, Adobe Reader has been loaded and my plugin loaded either.
    But When i click "about" button of my plugin there is no dialog popup.
    The dialog is created without any control,so it couldn't be the control matter.
    The dialog was created with MFC technology.
    Anyone can help me?
    thanks.

    I have a plug-in that opens an MFC dialog when I right-click on an annotation in a browser, and it works with Acrobat 7, 8, and 9 in FireFox, IE, and Chrome on XP and Windows 7.  So, it is possible to open an MFC dialog in a browser.
    However, when I was first testing my plug-in with IE 8 on Windows 7, the dialog would not open.  (This didn't happen with FireFox, and I haven't tested Chrome on Windows 7).   It turned out to be a Windows 7 security issue that only seems to affect IE8.
    You can verify this by logging into Windows 7 as "Administrator" (i.e., not as yourself, even if you have Admin permissions.)  The dialog should open.  However, that is obviously not a good solution because most users will not log in as "Administrator," which is a user account that is not enabled by default.
    Log back in as yourself and add your website as a "Trusted site" -- Tools>>Internet Options>>Security.  Select "Trusted sites," click the "Add" button, and add your site.  That worked for me.
    Bill

  • Save as Dialog does not appear after export report is selected

    Post Author: tparah
    CA Forum: Exporting
    We have recently upgraded from Crystal Enterprise 9 to 10.  We have one user (so far) that cannot export reports to excel or any other format.  Other users are not having the same problem.  The usual save dialog just disappears and the IE window closes returning the user to the report history page.
    The user is using the latest IE6, office 2003 and Windows XP with all current patches.  We have check all IE setting and nothing is out of the norm.
    Any help would be greatly appreciated.

    The PDFMaker function of Acrobat 9 is not compatible with Office 2010: http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html
    You can use Acrobat 9 to create PDF files though by choosing File > Print within Excel and selecting the Adobe PDF printer. 
    Wish I had better news for you!
    Please let us know if you have any questions.
    -David

  • HDR Pro Merge dialog box does not appear. The layer disappear. What are the solutions?

    HDR Pro Merge dialog box does not appear.
    The layer disappear. What are the solutions?

    Hi Noel,
    Actually, I just checked my scratch disk available space and it says ot is over 1.7 TB!!  I am only using the C drive as my scratch drive, as that is my only drive.  Anyway, I appreciate your help! Still will not function properly.  Maybe I should try reinstalling Photoshop.
    Cheers,
    Russ

  • Printer dialog box does not appear in Photoshop CS.5

    I use Photoshop CS.5.1 with a Macbook 2013 using version 10.9.5. The printer works perfectly with all other applications but in Photoshop no printer dialog box comes up and the print job does not appear in the printers queue. Anyone the same issues?

    First, try nuking (deleting them and letting the application create new ones) your Photoshop preferences:
    To re-create the preferences files for Photoshop, start the application while holding down Ctrl+Alt+Shift (Windows) or Command+Option+Shift (Mac OS). Then, click Yes to the message, "Delete the Adobe Photoshop Settings file?"
    Note: If this process doesn't work for you while you're using a wireless (Bluetooth) keyboard, attach a wired keyboard and retry.
    Important: If you re-create the preferences by deleting the Adobe Photoshop CS6 Settings file, make sure that you only delete that file. If you delete the entire settings folder, you also delete any unsaved actions or presets.
    Reinstalling Photoshop does not remove the preferences file. Before reinstalling Photoshop, re-create your preferences.
    NEW Video! Julieanne Kost created a video that takes you through two ways of resetting your Photoshop preferences. The manual preference file removal method is between 0:00 - 5:05. The keyboard shortcut method is between 5:05 - 8:18. The video is located here.
    Mac OS
    Important: Apple made the user library folder hidden by default with the release of Mac OS X 10.7. If  you require access to files in the hidden library folder to perform Adobe-related troubleshooting, see How to access hidden user library files.

  • CC 2014 nik efex - My Nik Efex filters are not working in Photoshop CC 2014 - they appear under plug-ins and seem to work, but after running and clicking okay, no new layer appears - seems to have no effect.  The separate menu panel does not appear either

    My Nik Efex filters are not working in Photoshop CC 2014 - they appear under plug-ins and seem to work, but after running and clicking okay, no new layer appears - seems to have no effect.  The separate menu panel does not appear either.  Help with this?

    BINGO !!!!
    Thanks so much Woodsroad. I had the exact same problem with my Dell Windows 7 64 bit with AMD Radeon 6700 Video card.
    All the video tests passed with flying colors.
    The sniffer rename trick fixed the problem.
    Thank goodness for the internet!

  • Why in the layer options does not appear to me "video layers" why? help

    why in the layer options does not appear to me
    "video layers" why? help
    I need to encourage and not because my computer does not appear to me and others computers that has the same photoshop cc if that option appears. It would be helpful to know what thanks

    99.9% of the time, the cause of this issue is the fact the phone was jailbroken/hacked to unlock it for use on networks other than the network the phone was originally locked to. Apple maintains a database of officially unlocked iPhones, and when Apple's servers detect phones such as yours, activation stops & you get the message you got.
    So, either get a sim card from the carrier your phone was originally locked to, or get it officially unlocked, if you want to activate it. Because it appears that it was not officially unlocked

  • Field on manual tabular appears using Firefox but does not appear using IE

    Hello,
    A field in a manual tabular form appears correctly using Firefox but does not appear or appears in another field when IE is used. Javascript is used to hide certain columns on the tabular form. Does anyone know how to solve this problem?
    Thanks pany

    Prabodh,
    The select for the report and the javascript that is used to hide the columns are displayed below. The data for Apex_item.select_list_from_lov(12,null,'LOV_METHOD_OF_ACQ') is shown in the previous column, Date Acquired, and the column for Method Acquired is blank. It appears correctly in Firefox. Please let me know if this is sufficient.
    Thanks,
    pany
    SELECT
    apex_item.hidden(1, c011) status
    ,apex_item.checkbox(2,seq_id) checkbox
    ,apex_item.hidden(3, seq_id) seq_id
    ,apex_item.hidden(4,c001) Owner_Firm_Id
    ,apex_item.hidden(5,c002) Owner_Id
    ,apex_item.hidden(6,c003,10) First_Name
    ,apex_item.hidden(7,c004,10) Last_Name
    ,apex_item.text(8,c005,10) Number_Shares
    ,apex_item.text(9,c006,10) Percentage
    ,apex_item.text(10,c007,10) Class
    ,apex_item.date_popup(11,rownum, c008, 'MM/DD/YYYY',15) Date_Acquired
    ,apex_item.select_list_from_lov(12,c009,'LOV_METHOD_OF_ACQ') Method_Acquired
    ,apex_item.hidden(13,c010,10) Primary_Key
    FROM apex_collections
    WHERE collection_name= 'INTEREST_STOCK_COLL'
    AND c011 IN ('O','N','U')
    union all
    select
    apex_item.hidden (1,null) status
    ,apex_item.checkbox(2, null) checkbox
    ,apex_item.hidden(3, null) seqid
    ,apex_item.hidden(4,null,10) Owner_Firm_Id
    ,apex_item.hidden(5,null,10) Owner_Id
    ,apex_item.hidden(6,null,10) First_Name
    ,apex_item.hidden(7,null,10) Last_Name
    ,apex_item.text(8,null,10) Number_Shares
    ,apex_item.text(9,null,10) Percentage
    ,apex_item.text(10,null,10) Class
    ,apex_item.date_popup(11,1, null,'MM/DD/YYYY',15) Date_Acquired
    ,apex_item.select_list_from_lov(12,null,'LOV_METHOD_OF_ACQ') Method_Acquired
    ,apex_item.hidden(13,null,10) Primary_Key
    FROM dual
    Javascript
    function hideCols(p_startOfTable, p_pageList, p_debug)
              alert("in function");
              var outStr = "Blanking Script:\n";
    var debug = p_debug;
    var offCols = p_pageList.split(":"); //string comes in colon delimited, split it
    into array
    var tbl = document.getElementById(p_startOfTable); //get the table from the page
    html source
    var rows = tbl.getElementsByTagName('tr'); //get the first row
    var tds = tbl.getElementsByTagName('td');
    var testStr;
    outStr = outStr + "START tds length is " + tds.length + "\n";
    if (debug)
    alert(outStr);
              //START Clear Headers
    var i, j, cells;
    cells = rows[0].getElementsByTagName('th'); //get the headers
    for (j = 0; j < offCols.length; j++)
    cells[j].className = "hidden";
    outStr = outStr + "i is " + i + " HEADER rows.length is " + rows.length +
    "\n";
    if (debug)
    alert(outStr);
    //END Clear Headers
              //START Clear TDs
              for (i = 0; i < tds.length; i++)
    var attrib = tds.innerHTML;
    var gNum = attrib.indexOf(" name=") + 7;
    var colNum = attrib.substr(gNum, 2);
    colNum = parseFloat(colNum);
    for (j = 0; j < offCols.length; j++)
    if (debug)
    testStr = testStr + "\n" + "colNum is: " + colNum + " className is: " +
    tds[i].className + " i is: " + i + " j is: " + j + "\n";
    if (colNum == offCols[j])
    if (debug)
    alert("colNum is " + colNum);
    if (tds[i].className == "datepicker")
    if (debug)
    alert("caught condition with i= " + i);
    tds[i - 1].className = "hidden";
    tds[i].className = "hidden";
    tds[i + 1].className = "hidden";
    //add popupLOV functionality here
    //add radio button functionality here
    // add other items that may have multiple <td>
    else
    //regular hideCol
    tds[i].className = "hidden";
              //END Clear TDs
    if (debug)
    alert(testStr);
    //document.write(testStr);
    Edited by: PANY on Aug 12, 2010 8:25 AM

  • Image src dialog box does not appear

    Hello,
    For some reason when I click the insert image button in
    dreamweaver cs3, the image src dialog box does not appear any more.
    It now just inserts <img src="" />. It used to allow me to
    choose an image, anyone know how to fix this? Thanks,
    Jasontor

    No idea....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "jasontor" <[email protected]> wrote in
    message
    news:go785j$ja0$[email protected]..
    > Anyone?

  • InDesign CS5 - Print Dialog does not load (windows).

    I just installed InDesign CS5 and when I go to print a document, the print dialog does not come up.  I only get an hourglass cursor.  When I try to export to a PDF the resulting PDF is 0kb and obviously corrupt.
    What do I do to fix this?

    Don't have a clue about the print dialog, but you may be unaware that PDF export is now a background task and you may be trying to open the PDF before it's finished. To check the progress go to Window > Utilities > Background Tasks.
    There are some reports of the background task stalling in certain cases. This is a bug, Adobe is aware of it, and a solution is in the works, but no definite inopfrmation on a release date for the fix is available. If you search the forum you'll find a couple of threads discussing it, including a link to a script to do the export inthe foreground if necessary.
    For the print problem, you can try Replace Your Preferences, but I'm not hightly optimisitic that this is a prefs issue. It would help if you told us about the OS and your printer, and what language you installed. Have you updated to 7.0.2?

  • I have iTunes ver 10 on a PC with Playlists which do not sync to ITouch or Nano (6th Gen). All the music does not appear and the playlists do not appear at all. I have selected to manually manage music on the sum tab

    I have iTunes ver 10 on a PC with Playlists which do not sync to an Itouch or Nano (6th Gen). Also, all the music does not appear when I check entire library and there is enough memory on the device. When I select to manually manage music on the summary tab and selected playlists on the music tab nothing changes. Either way all the music isn't on either device and the playlists are not on either device. Please advise next steps. Thank you.

    Connect the device to the computer.
    In iTunes, select the content desired to sync.
    Sync.
    This is all described in the User's Guide, reading it may be a good place to start.

Maybe you are looking for

  • How can I clone my Time Machine?

    The external hard drive that I use for my Time Machine seems to be slowly dying. Occasionally, it won't mount. I did manage to back up all of my data and I got another drive (exactly the same make and model) and I'm trying to clone it before the firs

  • How to share music library with other users using it's own iTunes hdd

    I have 183 gigs of music on my computer. I have it all on it's own hard drive not the OS or "C" drive. I'm pulling my hair trying to configure other users on my computer to access the music on windows Vista Cant find any info to help tell me how to d

  • Why will my Time Machine not work/

    Hi all. Today my friend did me a "favour" and removed the 'Applicaton' icon (much to my surprise) from that part of the toolbar next to my Trash basket. When I looked in the Trash to try and retrieve it, for some reason it was not there. No problem I

  • Business Partner Classification

    Hello Friends, If I go to transaction 'BP' and further to the 'control' tab when viewing a business partner, and then push the classification tab, I get the message "object not found". I found out that the business partnere I can set a classification

  • Unable to install adobe reader???

    Hey Friends Anyone who can help me solve my problems regarding installation of Adobe Reader X (10.1.0) (37.24 MB) Everytime the installation is nearly complete I get the following message: "An error occurred during the installation of assembly compon