Button not selectable/glitching menu

I am authoring a DVD in Encore. I have made a menu with a movie background and two seperate buttons (each links to a seperate movie file). I have made the buttons by selecting the text tool from the top left of the screen, typing a word, then selecting Object/Convert to Button. My two buttons are placed one above the other. When I preview the menu in encore, I can select each button with the mouse. But when I press down on the  virtual dvd remote, I can't select the second button. None of the arrow keys on the virtual remote will allow me to get from the first button to the second (and vice versa). Also, every time I press one of the arrow keys (or put my mouse over one of the buttons) the menu glitches, the music stopping and the image distorting for a second.
Both of these problems were confirmed when I burned off a DVD and played it in my DVD player on my TV.
The first movie file is dynamically linked from Premiere Pro. The second is an .avi, exported from Premiere and imported into Encore. The background video for the menu is also an .avi.
Premiere Export Media Settings:
PAL widescreen
100% quality
Sound 16 Bit
48khz
Encore Settings:
Maximum Audio/Video Bitrate: 8.0 Mbps
Audio Transcoding Scheme: PCM.
I suspect that the way I'm creating buttons is wrong, and that this might explain both problems... However, the two problems could also be seperate.
If you have any suggestions about how to get fix these problems, I'd greatly appreciate it!
Cheers!
-Robert

Select the button routing in menu view and confirm that the navigation is set up correctly. If you want/need to change it, make sure automatic routing is turned off.
If that is not it or you have trouble checking that, post a screen shot of the menu viewer with button routing selected if you can.

Similar Messages

  • Any fix for TM buttons not displaying glitch?

    I see others are having problems with the Time Machine buttons not displaying properly. But I didn't see any fix yet. On my MacBook, the problem only occurs with an external display.
    Hope this gets fixed soon.

    It looks that you have made changes to the appearance of button that cause items and text to be larger.
    In your case this doesn't seem to work properly with the consequence that the middle part of the button gets distorted.
    I'm curious if this artifact would move to the other (Cancel) button or disappear if you would use the Tab key or cursor key to set focus to the Cancel button or if it is a problem with the label text that isn't default (OK or similar).

  • 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.

  • Layered menu buttons not working when built.

    I have a project that has one menu and one track. The menu has 7 buttons linked to 7 different markers in the track. When I run the simulation in DVD SP, the buttons link fine, and play as they should...but when I build the project and run it in DVD player or burn it to a disk, the buttons do not work.
    If I create a non-layered menu, the buttons will work when built...
    I feel like i'm just missing one little setting on the layered menu
    Thanks
      Mac OS X (10.4.8)  

    Don't forget that a layered menu will normally need two presses to get anything to happen, one to select the button and the second to activate it.
    That said, are you sure that you have got the psd file set up correctly? I would recommend using a background layer with everything on it that you want to appear when not selected, then only adding layers with the changes necessary to show the button selection/activation.

  • Title & Menu Buttons not working correctly on remote control/ set top player but work in preview.

    Title & Menu Buttons not working correctly on remote control/ set top player but work in encore preview. This only happens for a Blu ray project. When a user presses the menu button it should go to the previous menu they were on but it goes to the main menu. When they press the title button they should go to the main menu but it doesn't do anything. My DVD projects work as expected.I've tried creating a new "test" project with different footage and still get the same undesirable results.
    Overrides grayed out and set to "not set" for timelines and menus.Project settings and build are set to blu ray. Also I've noticed when I preview a Bluray project the preview window shows a red colored disc next to the Title button when viewing the timelines and green when playing the menus but not so for a DVD project it displays red if motion menus and or timelines are not rendered/encoded. I'm not using motion menus and all the media is encoded according to the project specs.
    I've searched this forum but couldn't find the answer. Any help or redirects to a solution would be appreciated. Working with CS5. Thanks.

    I found out on my Samsung Blu ray player the remote has a tools button on it that brings up audio, angle, chapter selection etc.and also title selection which is actually the menus and the timelines unfortunately. It's not as easy or direct as last menu selected but it's a workaround at least. I also plan on using a pop up menu. I'll let you know.

  • Making custom buttons dissappear when not selected

    I am trying to get around the limitiation of not being able to add audio to a layered menu item.
    Correct me if I am wrong but I think if I create my own buttons (that would reflect the same look as the active layers of the Photoshop file) then I could have audio in the Menu with the same look using the buttons I create.
    Here is my question ... Is it possible to have a button dissappear when its not in the "activated" or "selected" state? I figure that I can create the button to look like the same active state and have the normal state revealed in the background graphic when the button is deselected. I just don't know how to make the button invisible or transparent when its not "selected" or "activated"
    Thanks in advance
    Lou ..

    Yes use overlays for the buttons and do not highlight them in normal state (though you may consider having something showing for normal state so people know it is there as oppossed to totally not visibale)
    Some examples and techniques showing mapping and then some others with video backgrounds also
    http://dvdstepbystep.com/newmap.php
    http://dvdstepbystep.com/rollover.php
    http://dvdstepbystep.com/useelements.php
    http://dvdstepbystep.com/buttons07.php
    http://dvdstepbystep.com/motion.php

  • Add a radio button to each row on output (not selection-screen)

    its a normal interacitve report...
    we need to add a radio button to each row on output (not selection-screen) and when user selects the radio button of a particular row and clicks on the user defined menu 'Execute' the report has to fetch the records from a table corresponding to the selected row on the second list.
    all this has to be done in normal interactive list.
    please let me know your suggetions as soon as possible.
    thanks,
    usha.

    Hi ,  try this
    TABLES: spfli.
    TYPE-POOLS:slis.
    PARAMETERS: p_col TYPE i ,
                p_row TYPE i,
                p_color(4) TYPE c .
    DATA: t_fieldcat TYPE slis_t_fieldcat_alv,
          fs_fieldcat LIKE LINE OF t_fieldcat,
          fs_layout TYPE slis_layout_alv ,
          w_color(4) ,
          w_row TYPE i,
          w_fieldname(20),
          w_prog TYPE sy-repid.
    TYPES : BEGIN OF ty_spfli ,
              color(4),
              checkbox ,
              cell TYPE slis_t_specialcol_alv,
              carrid TYPE spfli-carrid,
              connid TYPE spfli-connid,
              cityfrom TYPE spfli-cityfrom,
              cityto TYPE spfli-cityto,
              distance TYPE spfli-distance,
           END OF ty_spfli.
    DATA : wa_spfli TYPE ty_spfli ,
           t_spfli TYPE TABLE OF ty_spfli.
    DATA: fs_cell LIKE LINE OF wa_spfli-cell.
    SELECT carrid connid cityfrom cityto distance
      FROM spfli
      INTO CORRESPONDING FIELDS OF TABLE t_spfli.
    w_color = p_color.
    fs_fieldcat-fieldname = 'CARRID'.
    fs_fieldcat-ref_tabname = 'SPFLI'.
    fs_fieldcat-col_pos = 1.
    fs_fieldcat-key = 'X'.
    APPEND fs_fieldcat TO t_fieldcat.
    CLEAR fs_fieldcat .
    fs_fieldcat-fieldname = 'CONNID'.
    fs_fieldcat-ref_tabname = 'SPFLI'.
    fs_fieldcat-col_pos = 2.
    fs_fieldcat-key = 'X'.
    APPEND fs_fieldcat TO t_fieldcat.
    CLEAR fs_fieldcat .
    fs_fieldcat-fieldname = 'DISTANCE'.
    fs_fieldcat-ref_tabname = 'SPFLI'.
    fs_fieldcat-col_pos = 3.
    fs_fieldcat-key = ' '.
    fs_fieldcat-edit = 'X'.
    APPEND fs_fieldcat TO t_fieldcat.
    CLEAR fs_fieldcat.
    fs_fieldcat-fieldname = 'CITYFROM'.
    fs_fieldcat-ref_tabname = 'SPFLI'.
    fs_fieldcat-col_pos = 4.
    fs_fieldcat-key = ' '.
    APPEND fs_fieldcat TO t_fieldcat.
    LOOP AT t_fieldcat INTO fs_fieldcat.
      IF fs_fieldcat-col_pos EQ p_col.
        fs_fieldcat-emphasize = p_color.
        w_fieldname = fs_fieldcat-fieldname.
        IF p_row IS INITIAL AND p_col GT 0.
          MODIFY t_fieldcat FROM fs_fieldcat TRANSPORTING emphasize.
        ENDIF.
      ENDIF.
    ENDLOOP.
    fs_layout-info_fieldname = 'COLOR'.
    fs_layout-box_fieldname = 'CHECKBOX'.
    fs_layout-coltab_fieldname = 'CELL'.
    fs_layout-f2code = '&ETA'.
    w_prog = sy-repid.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
      EXPORTING
        i_callback_program = w_prog
        is_layout          = fs_layout
        it_fieldcat        = t_fieldcat
      TABLES
        t_outtab           = t_spfli
      EXCEPTIONS
        program_error      = 1
        OTHERS             = 2.
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Regards,
    Aby

  • Interactive Reports Action Menu buttons not working

    We are running Apex 4.02 and using theme 11 (round green). We recently upgraded to IE 10 (on windows server 2008 R2) and are now experiencing issues with all interactive reports within Apex. The Action menu is displayed correctly and the options are available but the buttons to apply the changes do not seem to respond.
    For example, I can press the Action button then select Format->Sort from the actions menu. The sort by options are displayed but nothing happens when I press the Cancel or Apply buttons. There is no error - it looks like the button press is not executing the code.
    I have searched for issues specifically related to Apex but have only been able to find references to general problems with IE 10 and Ajax calls. I'm not sure whether IRs are using Ajax as part of it's core functionality and whether this is the behaviour we are seeing.
    I'm keen to understand whether others have encountered this problem and resolved the issue somehow. Any help would be very much appreciated.

    I would have set this up somewhat differently.  I'd have all of your buttons set to pause the slide in exactly the same spot about 1.5 seconds into the slide.  To set the variable for completion of a section I would have used a standard or conditional action that was executed by the button that brings the learner back to the menu slide.  This action would set the variable and then jump back to the menu slide using the button's On Success action.  You need one of these actions per separate section in your project.
    As to why some of your buttons are not working at all...
    1. They may not be set up correctly.  Check all settings again.
    2. The buttons may be corrupted.  Delete the ones that don't work and insert new ones.  Avoid copying and pasting.
    As luck would have it, I've just completed an e-book Guide to Adobe Captivate Advanced Actions that has an entire series of practice exercises that take you step by step through creating exactly the menu slide setup that you describe.  If this project is important enough to you, it may be worth your while to consider purchasing that e-book:
    http://www.infosemantics.com.au/adobe-captivate-advanced-actions

  • Touch Select Button not work

    Well this thing just will not work and I cannot figure it out for the life of me. Here is the problem.
    Music loads fine. Music will play fine.
    However, when I go to the menu, and press the middle button, or any button that is suppose to select a menu option such as Music Library, Photos, Video ETC...it doesn't go there..it just goes to Now Playing and picks a random song from the album of the day and plays it. It does this EVERYTIME.
    I bought the thing about 8 months ago, and I never used it once I just found a use for it so am desperately wanting to get it working and it won't.
    Is this a common problem with an easy fix? What do I do? I tried doing the thing where you hold the power button and press the reset button to reformat or something, and I can get there but the select button doesn't work so I can't select it! But in turn I know the select button DOES work as when I press it it plays a song..just seems screwed up.
    PLEASE HELP!

    anybody please help?
    How do you take this think apart?

  • My phone is no wifi. I can not select the button. this situation has happened to me several times and I have spent lots of money on repairs. what can I do?

    my phone is no wifi. I can not select the button. this situation has happened to me several times and I have spent lots of money on repairs. what can I do?

    Bring your phone to Apple for evaluation and replacement.  It's broken.  There's no magic we can provide you.

  • Can not select a PDF file in the file uploader window after clicking the Browse... button for a file type input element.

    After upgrading to 5 (this worked in 4) I can not select a PDF file in the File Upload dialog that appears when I click the Browse button next to an HTML file type input element. The specific HTML element source code has the attribute: ACCEPT="image/*". I can select image files such as jpg, png, tiff, etc. But not PDF. This worked great in Furefox 4 and works in the latest version of Safari.
    The HTML code for the form element is:
    INPUT TYPE="file" NAME="file_1" ACCEPT="image/*" SIZE=35
    The File Upload dialog lists all files with PDF extension as dimmed and not selectable in Firefox 5.
    Can you help?

    Hi Purush
    Unfortunately we couldn't solve the problem. Our IT specialist checked it with SAP directly. SAP doesn't support the SAP KW solution anymore. Therefore we checked-in the document in ".doc"-Format.

  • Photoshop CC Extensions menu is not selectable

    Photoshop CC Extensions menu is greyed out. I cannot select event that menu.
    The extensions installed successfully in Extension Manager CC, no errors. I even tried uninstalling and trying just 1... no dice. I've reinstalled Extension Manager CC without success as well.
    A few of those extensions are scripts and those are available through the File > Scripts just fine, but the Extensions are not. I have no issue at home using them, but here on my work computer I cannot access them at all.
    In Photoshop CC, I cannot even click on the Extensions menu, not even the Exchange is available which is built in:
    I uninstalled and reinstalled Photoshop CC and reinstalled the plugins and I still have the same issue. No error messages, it's just not selectable.
    Any ideas?

    I am on a Mac, but am having the same issue, my extensions is greyed out.
    Also when I open Extensions Manager CC, I get the application launched, but I get no interface, so I can't even see the extensions. I know I just installed onOne Perfect Suite, so it should be showing up.

  • Both the 'delete' button and in the menu options do not delete messages but change them to unread. How can I remedy this?

    The delete function seems to no longer work in Thunderbird. Both the 'delete' button and in the menu options do not delete messages but change them to unread.
    I have tried to fix it by deleting the trash / deleted files as suggested in another thread but it made no difference. The delete key still works to delete things outside of Thunderbird (including here for example).
    I have not uninstalled / reinstalled. I have rebooted a couple of times and it hasn't made any difference.
    I did go through and delete a huge number of old emails a few days ago, but I have cleared out the Deleted folders and it made no difference.
    All suggestions appreciated.

    Right click on any of the other right panel headers  in Slideshow module to open the context menu. You should be able to reactivate the Options panel from there.

  • "record enable" buttons not showing up in Garage Band 10.0.3 (I have selected "show record enable"- a space in the track header opens up, but the button is not present.  Same with "input moniter".

    "record enable" buttons not showing up in Garage Band 10.0.3 (I have selected "show record enable"- a space in the track header opens up, but the button is not present.  Same with "input monitor".

    Look at all the posts in the forum from users with similar problems, it happened with the last Logic update.

  • How do you make a custom button that is Invisible When not selected

    Im just recently switching over to using a mac for authoring. I really like all the features in DVD Studio more than what i was using on a PC for the past 6 years. Which was ulead DVD Workshop 2.
    The only problem im having (For Now) is that i cant make my custom buttons invisible. I made this little black shape thing in photoshop and i want to use it in DVDSP for selecting different tracks.
    I thought all i had to do was just save the black shape with a transparent background in photoshop as a .psd and import it. But that didnt work.
    When i change episodes it just stays black the whole time. I want something that will be invisible when it is not selected.
    please help
    I can send someone my little shape if they can make it a usable button that i can make invisible in dvdsp. I really need to see the layers done with a shape as a button to see how they were able to make it invisible.
    i tried a few tutorials but instead of being invisible all i got was a shape that was stuck white the whole time. this is even when i put the opacity to 0 on normal.
    I want to make this into a button
    http://img694.imageshack.us/i/custonbutton.png/

    Ok, what you want to do is also in the same tutorial. See the section on "Advanced Highlights" (again, avoid the sections on layered menus), You can create an overlay that does have two colors. The bad news is that there will be absolutely no anti-aliasing at all. This means your graphic will be extremely pixelated. This is just the way the DVD specs are set up, so there is no way around it.
    Given that I would highly recommend redesigning your overlay. Take a look at variety of DVDs from Hollywood. See what they are doing in their menus. You can do anything they are doing, but you will notice that the overlay is very simple because of the limited anti-aliasing of DVDs. In all the years that I've been watching DVDs I've only see one DVD use two colors in the overlay, and that was the Jim Carey "The Grinch who Stole Christmas."

Maybe you are looking for

  • How do I transfer display to tv

    The TV is set to PC, my Macbook is connected to it via HDMI but the TV screen is blank. On my old PC laptop, I would push fn and F4 and the computer would display on TV full screen. Any advice????

  • Is it possible to play a video playlist on a loop in Quicktime?

    I have several videos that I would like to string together as a playlist and then have that playlist loop? Is this possible to do in Quicktime? Thanks for any insight!

  • Can't Import Dig Photos from 2 Different Dig cameras

    Frustrating problem with dig camera uploads to iphotos. I have new Nikon D40X. When I connect to Imac with Leopard 10.5, it sees the photos and brings them up as thumbnails. When I say 'import', however, the Imac says the files are ot recognized and

  • Requestes are not forwarded to next level after approval

    Hi all, Apps version 11.5.10, Solaris 10 we have modified a user name in apps after that what ever that particular user has approved is not going to next level. Is it not recommended to update a user name? Hope some one can help me fix the issue Than

  • Need UCM service which has  to return all the files in the Folder

    HI, I need a webservice which has to return all the images/text files in the folder. I ll pass folder name has a input parameter..once i got all the files i have to shown those images in the web page. Do we have any service with this requirement?? Or