JSF select one menu keeps giving me summary=Validation Error: Value is not

Hi all,
I'm using five select menus in a JSP file.
the other four are populated whenever the first menu changes its value (ValueChange event).
after the menus are populated, i select a item in each menu and submit it.
but when i submit the form i get the following error:
E com.sun.faces.context.FacesContextImpl addMessage Adding Message[sourceId=form2:menu61,summary=Validation Error: Value is not valid)
[12/1/06 11:25:58:541 EST] 00000030 jsf           E com.sun.faces.context.FacesContextImpl addMessage Adding Message[sourceId=form2:menu5,summary=Validation Error: Value is not valid)
[12/1/06 11:25:58:557 EST] 00000030 jsf           E com.sun.faces.context.FacesContextImpl addMessage Adding Message[sourceId=form2:menu6,summary=Validation Error: Value is not valid)where menu61, menu5, menu6 are the menus on the form.
someone pls throw some light on this.
-Seshu

Hi,
Since you are using a request scoped bean things work like this:
1. You fetch your list, for example from a database, with a bean that is put in request scope.
2. You populate your select component on the jsp page.
3. You select an item in the select component and submits the form.
4. When the form is submitted the selected value has to be validated against the list it was chosen from. Since you retrieved the list from a bean in request scope the list isn't available when you submit the form and the getter for the list probably returns an empty list which gives you the validation error.
What you have to do is to get the list the item was selected from when submitting the form. This can be done in different ways. Either you keep your list in the session between the requests or you get the list from your data storage again. This is a horrible "feature" with JSF and from what I know it's impossible to turn this validation off.
/klejs

Similar Messages

  • On a button click need to load a select one menu

    Hi,
    1) I have a text field, one button and a select one menu.
    2) Its actually a search option, user will enter some text inside text field and click button, then those data will be loaded to the select one menu.
    3) Also i have some text fields with attribute required="true".
    4) Actually this is an add/edit organization form.
    5) User can create new organization or search and edit existing organization.
    6) But now what is happening is search button is a command button, so when i click search button the validation of the text field is happening and no action is going to the backing bean.
    7) So what i required is when i click on the search button, no validation should be called, but action need to go to the backing bean..
    8) please provide me a solution.
    9) please see the source code attached here
    <%@ page language="java" contentType="text/html; charset=UTF-8"
         pageEncoding="UTF-8"%>
    <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <%@ taglib prefix="a4j" uri="http://richfaces.org/a4j"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Add/Edit Organization</title>
    </head>
    <body>
    <f:view>
         <jsp:include page="../header.jsp"></jsp:include>
         <center><h:form id="organizationForm" style="height: 326px; ">
              <table cellspacing="10">
                   <tr>
                        <td><h:panelGrid border="0" styleClass="number labelWidth"
                             columns="1">
                             <h:outputLabel value="Search"></h:outputLabel>
                        </h:panelGrid></td>
                        <td>
                        <table cellpadding="0" cellspacing="0">
                             <tr align="left">
                                  <td>
                                  <table cellpadding="0" cellspacing="0">
                                       <tr>
                                            <td align="left"><h:inputText id="searchTextId"
                                                 value="#{organizationJSFBean.searchText}"></h:inputText></td>
                                            <td style="width: 5px;"></td>
                                            <td><h:commandButton image="../icons/search_lens.png"
                                                 action="searchSuccess">
                                            </h:commandButton></td>
                                       </tr>
                                  </table>
                                  </td>
                             </tr>
                             <tr>
                                  <td><h:selectOneMenu id="loginNamesId"
                                       value="#{organizationJSFBean.organization.organizationId }">
                                       <f:selectItems
                                            value="#{organizationJSFBean.searchedOrganizationNameItems}" />
                                       <a4j:support event="onchange"
                                            action="#{organizationJSFBean.handleSelection}"
                                            reRender="organizationForm" />
                                  </h:selectOneMenu></td>
                             </tr>
                        </table>
                        </td>
                        <td><h:message for="searchTextId" styleClass="errorLabel"></h:message></td>
                   </tr>
                   <tr>
                        <td><h:panelGrid border="0" styleClass="number labelWidth"
                             columns="1">
                             <h:outputLabel value="Name"></h:outputLabel>
                        </h:panelGrid></td>
                        <td><h:inputText id="nameId"
                             value="#{organizationJSFBean.organization.name}" required="true"
                             requiredMessage="#{errorMessageBean.cannotBeBlank}"></h:inputText></td>
                        <td><h:message for="nameId" styleClass="errorLabel"></h:message></td>
                   </tr>
                   <tr>
                        <td><h:panelGrid border="0" styleClass="number labelWidth"
                             columns="1">
                             <h:outputLabel value="Short Name"></h:outputLabel>
                        </h:panelGrid></td>
                        <td><h:inputText id="shortNameId"
                             value="#{organizationJSFBean.organization.shortName}"
                             required="true"
                             requiredMessage="#{errorMessageBean.cannotBeBlank }"></h:inputText></td>
                        <td><h:message for="shortNameId" styleClass="errorLabel"></h:message></td>
                   </tr>
                   <tr>
                        <td><h:panelGrid border="0" styleClass="number labelWidth"
                             columns="1">
                             <h:outputLabel value="Website"></h:outputLabel>
                        </h:panelGrid></td>
                        <td><h:inputText id="websiteId"
                             value="#{organizationJSFBean.organization.website}" required="true"
                             requiredMessage="#{errorMessageBean.cannotBeBlank }"></h:inputText></td>
                        <td><h:message for="websiteId" styleClass="errorLabel"></h:message></td>
                   </tr>
                   <tr>
                        <td><h:panelGrid border="0" styleClass="number labelWidth"
                             columns="1">
                             <h:outputLabel value="Status"></h:outputLabel>
                        </h:panelGrid></td>
                        <td><h:selectOneMenu id="statusId"
                             value="#{organizationJSFBean.organization.status}">
                             <f:selectItems value="#{organizationJSFBean.searchedStatusItems}" />
                        </h:selectOneMenu></td>
                        <td><h:message for="statusId" styleClass="errorLabel"></h:message></td>
                   </tr>
              </table>
              <h:panelGrid border="0" columns="2">
                   <h:commandButton value="Save"
                        action="#{organizationJSFBean.saveOrganization}"
                        style="width: 78px; "></h:commandButton>
                   <h:commandButton value="Cancel" style="width: 78px; " action="cancel"
                        immediate="true"></h:commandButton>
              </h:panelGrid>
         </h:form></center>
    </f:view>
    </body>
    </html>

    8) please provide me a solution.Put immediate="true" on the button in question, like you did on the cancel button.
    The next time you post code, put it between { code } tags to make it not only more readable, but the forum won't try to interpret the special characters.

  • My 2210 all in one printer keeps giving the message "Remove and check cartridge"

    My 2210 all in one printer keeps giving the message "Remove and check cartridge." Although I go through procedures outlined in manual, message keeps reappearing. Suggestions?

    Hello again!
    Still having problems but here's more info: Checked "Resume" but  Message next to the job says ERROR but that 'Pinter is ready'.
    However, on the PRINT & FAX page in System Preferences it has 'Idle' next to the psc1317 (default) printer.The computer scans the document but wil not print it. With printer off I disconnected the power cable and the USB from the computer then re-connected after 1 minute.  When I turned the printer back on it printed the test sheet but not the document.  I have also unistalled then reinstalled the hp1317 Snow Leopard software and driver and computer says that all software is up to date. Apart from a dodgy connection I have no idea where to go from here!

  • My iTunes parent control keeps giving me the same error message. "Parent control preferences could not be unlocked. You may need to reinstall iTunes. "I have uninstalled ant reinstalled iTunes that 4 time now and I still can't get on. Can anyone help?

    My iTunes parent control keeps giving me the same error message. “Parent control preferences could not be unlocked. You may need to reinstall iTunes. “I have uninstalled ant reinstalled iTunes that 4 time now and I still can’t get on. Can anyone help?

    Experimental advice ... but, plausibly, the preference files containing the parental control setting may be damaged. If so, removing the iTunes preference files may help.
    For the basic technique, see the "Remove iTunes preference files" section from the "User-specific troubleshooting" section of the following document:
    iTunes for Windows Vista or Windows 7: Troubleshooting unexpected quits, freezes, or launch issues
    To see those folders, you'll need to first set your PC to view hidden files and folders
    In your Start menu, open Computer.
    In your Organise menu, select Folder Options.
    In the View tab, make sure that "Show hidden files and folders" is selected, and Hide extensions for known file types is unchecked.
    Click OK.
    Prior to doing the preference file rebuilds: Best to make a note of any custom preferences you have set up for your iTunes. (Rebuilding pref files returns preferences to their defaults ... so you'll likely have to set some of those custom preferences up again from scratch.) Also make a note of any third-party plugins/add-ons you have installed. You may have to reinstall those after the rebuilds.
    Things to watch out for during the rebuilds
    Rebuilding the preference files in the \Local\ location causes the iTunes license agreement to run. So you'll need to agree to that again.
    Rebuilding the preference files in the \Roaming\ location causes the iTunes Setup Assistant to run. When prompted to do so, do not add files to your iTunes library. (Otherwise you'll end up with a library full of duplicates.)

  • HT4095 I tried renting a movie but it keeps giving me a download error.

    When I started the download I was on a public wifi network which I think wasn't the best. I tried to continue the download once I got to my hotel room, but it keeps giving me a download error message. I can still use the Internet and FaceTime on the hotel wifi network but it won't let me download the movie. How do I cancel the download, remove it from my downloads, and ensure I'm not charged for it?

    Try deleting the projects render files. Perhaps a corrupt file stalls the export. And if that doesn't work; try copying your project into a new one. That solved it for me once.

  • Hi, so today i decided to update my iPhone 4 from ios 4.3.5 to ios 6.1. But it keeps giving me the 3194 error, which means my device is somewhat not eligible. So can i update or not? since apple has stopped signing ios 5...

    Hi, so today i decided to update my iPhone 4 from ios 4.3.5 to ios 6.1. But it keeps giving me the 3194 error, which means my device is somewhat not eligible. So can i update or not? since apple has stopped signing ios 5...

    OMG guys, i got it to work. Here's how:
    1. kill everything on your iphone 4, settings, contents...
    2. now uninstall itunes and install the latest one again
    3. now update
    Good luck everyone
    <Edited By Host>

  • It keeps giving me an error message when I go to download my purchases. I follow the directions and it just keeps giving me the same error. What do i do to get the songs

    It keeps giving me an error message when I go to download my purchases. I follow the directions and it just keeps giving me the same error. What do i do to get the songs?
    It just keeps telling me they were inturupted but i didnt so anything. I want the songs I paid for.

    Yes its been cleaned out, i have tried many different things to try an fix it but still nothing. i just can't understand how it can be working perfect 1 minute then not working the next minute.  seems to be a common problem with no real solution.

  • HT201303 I lost my itouch and bought a new one and keep getting an iTunes billing error

    I lost my itouch and bought a new one and keep getting an iTunes billing error.
    Do I have create a new acct and loss and lose all my downloads/purchases?

    I lost my itouch and bought a new one and keep getting an iTunes billing error.
    Do I have create a new acct and loss and lose all my downloads/purchases?

  • I am try to update my iphone 4 4.2.7 to be ios 5 but Itunes keep giving me a message that iphone could not restored. WhY???

    I am try to update my iphone 4 4.2.7 to be ios 5 but Itunes keep giving me a message that iphone could not restored. WhY???

    You have to delete the corrupt back-up so iTunes can at least back-up the current data on the iPhone and then restore it. Search these forums, there a several good posts on how to delete the corrupt back-up.

  • My iTunes purchases will not download to my iPad gen4. Keeps giving the message" download error tap to try again"

    My iTunes purchases will not download to my iPad gen4. Keeps giving the message" download error tap to try again"

    I have the same problem. Did you get yours resolved?

  • Dynamic Select One Lookup List restricted to a subset of values

    I'm working with JDeveloper 10.1.3. trying to put an application together that needs two Lookup List the first is a Manufacturer Name and the second is items manufactured based on the selection of the first Lookup List choice (Manufacturer Name). I have two tables that make a nice master-detail relationship also I have a view that has the manufacturer name and what they manufacture but I just can't get a handle on how to set up the second lookup list to provide the subset of manufactured items based on the selection made in the first list. So the basic question is how do you restrict a Dynamic Select One Lookup List to a subset of values from the table based on a value stored in the application (on the page or in a bean). This has me stumped and any help would be greatly appreaicated.

    I am not sure if you have tried using the partial trigger on your second lookup list.
    Here's an overview of how you can do it @
    1.) Create a binding on the page to keep the selected value from your first LOV.
    2.) Set autoSubmit = true on your first LOV ) [ so that your binding in the first step gets populated upon selection]
    3.) Set up an ID value for the first LOV component.
    4.) Set up the partial trigger property on your second LOV to the ID of your first LOV.
    5.) In your page definition, use the value from the binding in step1 to assign value to any where clause parameters on the view object for your second LOV.
    HTH,
    Shishir
    donnellypl wrote:
    I'm working with JDeveloper 10.1.3. trying to put an application together that needs two Lookup List the first is a Manufacturer Name and the second is items manufactured based on the selection of the first Lookup List choice (Manufacturer Name). I have two tables that make a nice master-detail relationship also I have a view that has the manufacturer name and what they manufacture but I just can't get a handle on how to set up the second lookup list to provide the subset of manufactured items based on the selection made in the first list. So the basic question is how do you restrict a Dynamic Select One Lookup List to a subset of values from the table based on a value stored in the application (on the page or in a bean). This has me stumped and any help would be greatly appreaicated.

  • I just updatmmed to iso 7 and now I can't get my iMessages or FaceTime. It keeps giving me a network error message

    I just updated to iso 7 and now I can't get my iMessages or FaceTime. It keeps giving my a network error

    generally this is caused by having a page layout for full page photo with a single full page photo in front of it -
    This FAQ describes how to find and fix it
    LN

  • E71 keeps giving out of memory error; I can't find...

    My Nokia E71 (it's black so it may be an E71x, I guess) keeps giving me out of memory errors. I use my phone for nothing but voice calls, text messages, and emails. I have cleared all call logs, deleted all emails except 5 (they have no attachments) and cleared deleted emails, and deleted all text messages. I went into file manager and made sure there are no images, videos, etc. on the phone. I set up options to use memory card for emails. I've turned the phone off, waited 15 or 20 seconds, and turned it back on.
    I did all this a couple weeks ago. Ever since then. every couple days I get these out of memory errors, and the phone memory shows me 119 MB used and something like 300K free. I'm at the point where every few emails that come in, I have to delete all emails, erase all text messages, etc. or the phone is just too low on memory to operate.
    What else can I try? I don't have any additional applications installed. I've even tried to delete built-in apps such as RealPlayer but it didn't seem like that was possible.
    This is getting really annoying. Please help!

    @EricHarmon
    Although all user data would be deleted, have you tried resetting device to "Out of box" state by keying in *#7370# followed by 12345 (default Nokia lock code unless altered by user)?
    Happy to have helped forum with a Support Ratio = 42.5

  • I cannot get my FaceTime to work it keeps giving me the registration error

    I cannot get my FaceTime to work it keeps giving me the registration error

    You need to log in with your official Apple ID. Have you tried that?
    Clinton

  • Why does iDVD keep giving me a multiplexing error and ejects my DVD?

    I have tried several times to create a simple movie with iMovie and iDVD. Both are from the iLife 6.0 series. Each time, the movie imports to iDVD okay, goes through all the asset encoding just fine, and when it get to multiplexing and burning, it stops with a message saying there was something wrong with the multiplexing or asset encoding and ejects the DVD. Help. I am at my wits end with this.
    dennis

    Hi
    Multiplex Error - is one of the most complex error to run into - can be so much
    see (especially new info at end of list)
    MULTIPLEX ERROR !
    Multiplexing error is a very complex problem due to many things (long long list following) - one common but not obvious reason is that material on the iDVD menu goes outside the TV-Safe area (or just touching it).
    So first - turn on TV-Safe area and move any object well inside of this.
    Wide screen stretched - usually (as I think) it is due to making a 4x3 movie in a 16x9 wide-screen project OR the other way around. This forces one to on flat-screen TV (or other) set the presenting view right - My has 4x3, wide-screen, zoom and auto-wide-screen and I have to switch this by my remote for some DVD I've made "wrong" way.
    Now my long long list on Multiplex Error
    LONG LONG LONG LIST
    Multiplexing Error
    PART One.
    Use of strange video/audio material e.g. .avi, .wmv, .mp3 etc.
    I only use.
    Video - StreamingDV (miniDV tape via FireWire) and
    Audio - .aiff (as on audio-CDs) (else converted to this .aiff 48KHz)
    Photo - .jpg (.bmp known problematic)
    Chapters !
    A.    Using strange letters in video project name e.g. +,/; etc. keep to a-z and 0-9 strange letters in project name e.g. +
    as described by Donnyboy69.  Does the title of your project have any symbols or decimal points in it. If so, that is why you are getting the error. I had a project that had a + sign which caused the same problem. I renamed it without the symbol and low and behold, it worked.
    B.    Location of Chapters
    • Can’t be at start or end of movie (Skip first/start one - iDVD sets this by it self. At the End - no need)
    • Not in a transition (or within 2-3 seconds from it)
    Important when from iMovie HD6 or previous - Now also observed when using FCE 4
    PART Two.
    from Robert Modero.
    "Multiplexing Error. Problem during initialization of tracks"
    Simply remember to add subtitles to your Quicktime files and menu buttons.
    Once I did that, I was back in business.
    from Boise Jim
    Do a safe reboot (by holding down the shift key until you see the spinning gear on gray background, then release, then restart when your start-up screen appears).
    I always makes a DiskImage first and test this so that it runs OK
    I use only - Verbatim DVDs
    I use only - DVD-R
    I burn at an as slow speed possibly e.g. x1
    This gives good DVDs
    PART Three.
    Multiplex Error
    Chuck, Chicago 2/7/2009.
    Back again. Here is what I have found to work. I also have and use a LaCie DVD-R/RW DL external drive and a LaCie external hard drive as well. Since yesterday I have tried a few ways to burn a themed iDVD project having four 56 minute movies on it, amounting to 226 minutes onto a DVD DL disc, capacity 240 minutes. Apple tech support really didn't know what to do but gave me a very good tip. I had two options left. Apple tech support's tip was to try disc image. One of the replies on a thread with this subject said not to, but my experience today is good. Put your project onto "Burn to disc image," under "iDVD, file." Yesterday encoding took me 23 1/2 hours. Overnight for iDVD disc image, encoding took 21 1/2 hours (again) while I slept. This morning I tried to copy/burn disc image to a DVD with Roxio Toast 7, and it stopped near the end of the burn with some kind of "error" message. So then I tried Utilities> Disc Utility> Burn icon, and followed it through. Be sure to click the DVD DL drive in the window "Burn disc in.". I had one other problem though. At the end of a 46 minute copy, it started to verify, and at the end of verify it rejected the burn. So I tried again, and when "verify" appeared, I clicked on "Skip." The disc finished burning and is doing fine and well. A long and tortuous process, but at last something works. I made several additional copies using Disc Utility. Best wishes. Chuck, Chicago.
    2. Disconnect any other external devices not absolutely needed.
    e.g. external USB/USB2 hard disks, other FW hard disks etc.
    3 Chapter marks in transitions - minimum 2 sec from
    FROM Bev. (Not a 'guy' but I will answer!)
    First, I do not think that mixing wide-screen and standard makes a difference in iDVD.
    Second, you should use a better brand of DVD disk. Also, many of us have experienced fewer problems on playback with DVD-R disks. Recommended brands here are Verbatim, Maxell and Taiyo Yuden. Memorex and TDK are not consistent and may not give you a correct burn. They apparently have fewer layers in the composition of the disk. I have always used Verbatim DVD-R disks and have not had any burn problems.
    Also, choose a slower burn speed, 4x or less.
    Third, to determine if the iDVD project will burn properly, create a disk image file (from within iDVD, go File->Save as Disk Image) and test it. Mount the disk image and then open DVD Player (in Applications) and view your project. If it plays correctly, you can then burn the actual DVD disk from the disk image file using Disk Utility.
    From. Boise, Idaho
    I did everything I've seen suggested, but a friend (who used to be an Apple Genius) suggested that I do a safe reboot (by holding down the shift key until you see the spinning gear on gray background, then release, then restart when your start-up screen appears).
    It worked, and I got a clean burn from iDVD.
    Hopefully this can help other people.
    by dheb0422
    Well, I finally got it, and it was odd enough to post here incase anyone looks this topic up again. Many things were tried, including burning the unedited film, the edited film without titles and chapter markers, abbreviating the chapter markers in case length was the issue (remember the old iMovie used to truncate them when moving to iDVD?). In the process, I noticed that one, and only one, chapter marker was on the same line as the title marker. All the others were on the line above. The only way I seemed able to change that was to clip a few seconds of film. After that last clip, the offending marker took a place on the line above, as were all the others. That run published, compiled completely and burned. That's one for the books.
    One user more writes
    To add my experience with Multiplex Errors using iDVD (7.0.4), I recently created two iDVD projects
    Video from both passed from FCE 4.01 with chapters
    One project worked fine in creating disk image file
    The other gave Multiplex Errors
    I tried suggestions to remove special characters and no chapter marks at beginning, but nothing worked
    Note that I've used iDVD for dozens of projects and this is first time I've run into Multiplex Errors
    Anyway, for problem project, I tried an experiment where I removed all chapters in FCE and passed to new iDVD project
    This time multiplex errors gone
    So had something to do with chapters
    So now I tried numerous experiments to remove individual chapters and try again creating disk image with new iDVD project
    After numerous tries, I was able to narrow problem down to 1 "Bad" chapter mark
    That is, when I left the "bad" chapter in my FCE project and passed to iDVD, iDVD gave multiplex error
    When I removed "bad" chapter mark (and others in), no multiplex error
    As a final experiment, I moved "bad" chapter mark about 5-10 sec's beyond original point and passed to iDVD, the multiplex errors now magically went away and I was able to finally create my disk image.
    I have no idea why this worked, but thought I'd mention here in case someone else runs into similar problem.
    Rich839
    In addition to Bengt's fine advice, burning errors can occur if you have located any of your menu buttons wholly or partly outside of the safe TV viewing area. Go to your main project menu, then click on View/Show TV Safe Area, to check. Drag into the safe viewing area any buttons that are outside the safe viewing area.
    Russ One - suggest this
    Multiplex Error-There was an error during muxing preparation
    One thing that worked for me was to export the video w/o chapter markers as a self contained movie (thereby not loosing the edits & etc). Then make a new FCE project and import that movie into a new sequence and add the chapter markers. I've used "-", "&" and "," with no problem in the chapter names. Removing the markers or exporting without them did solve the problem but renaming them with just numbers 1,2,3....5, did not solve the problem and since this problem seems to happen with with iMovie as well, it would suggest the problem is in the video or audio and in combination with the chapter markers iDVD just can't handle it. The only other possibility is that both iMovie and FCE share the same or similar chapter marker code that some how is corrupting the markers.
    Summary - What to try
    1. Chapters
    • Only A to Z and 0 to 9 in chapter title
    • No Chapter mark at very beginning of movie
    • No Chapter mark in or within 2 seconds from any transition in movie
    2. TV-safe area for buttons (no one outside this)
    3. Safe re-boot
    4. No other external devices connected - that are not needed
    SDMacuser adds to this
    • On #4 ... No ext. devices. Some think this applies mainly to ext. FW. Not the case. Also applies to ext. USB2 as well (not to mention flash drives too).
    Do not leave 3rd party devices / camera / camcorder plugged in unless it is being used with iDvd's One Step process. Certain web cams can trigger this also (especially ones with added features like LED light/s that draw additional power from the FW or USB bus).
    5. Minimum of 25Gb free space on Start-up hard disk
    6. Make a DiskImage first - reduces where problem originates
    7. Trash iDVD pref. file
    8. Make a new iDVD project
    9. Movies in project with same aspect ratio e.g. 4x3 or 16x9
    10. No other programs/applications running during iDVD process. e.g. Internet, screen & energy savers
    Max Mccarty
    Mar 29, 2013 7:55 PM
    I've made literally hundreds of DVD's using iDVD and I occasionally get the dreaded "Multiplex Error". In the past changing the position of chapter markers has worked, but sometimes the only way I can get the DVD to burn is to remove all the chapter markers (not a great solution).
    Recently, I've discovered a bug in iDVD that creates the "Muliplex Error" message and it may be the cause of some of my previous problems. Sometimes when you export a movie to iDVD with chapters, it will create chapter menus with incredibly long playing times. My most recent "Multiplex Error" project had two chapter menus. I have a 38 second audio clip that I use for my DVD menus and the first menu showed the correct time of 38 seconds (select View>Show Inspector). The second menu with the same audio clip showed 13 minutes and 42 seconds! When I went to the Project Info window (select Project>Project Info) it now showed the total size of my DVD as 4.8 GB, too big for iDVD to encode. So, I manually adjusted the time of the second menu to 38 seconds. This time without changing anything else, iDVD  burned the disk perfectly.
    The interesting thing is that when I began the burn, the project info showed under 4GB for my disk. So, from now on I'll check the playing times of each menu before I burn.
    Yours Bengt W

Maybe you are looking for