Menu background doesn't go to edge

I used Photoshop to create a background image to use for a menu background but it doesn't fill the entire area in DVDSP. I know that sounds a bit odd so let me explain...
1) Made 1920x1080 image in photoshop
2) Saved as an unlayered tif
3) Drag-n-Drop the tif onto the menu background of DVDSP and set it as the background
4) The DVDSP project is a 16x9 SD DVD (so I'm assuming there is some pixel aspect ratio conversion going on here and resolution change).
When I look at the menu, there is a dark grey stripe along the left and right edges of the menu. I tried different formats but that didn't help anything. Any ideas on how to get the image to "fill" the entire background of the menu? Thanks!

I would definitely use the preset in Photoshop if I were you - are you using CS?
Set it to be D1/DV Widescreen for whatever video format you use (I choose PAL 1.4) and you should be good to go.
If you try to recreate this yourself, DVDSP will scale the image to fit the dimensions and you may find it doesn't fit exactly.
Failing that, use a 720x480 or 720x576 image and set the menu to be 16:9, but check out the distortion it produces.
As Drew said - read the manual... the correct dimensions and way to approach this are all in there.

Similar Messages

  • Video & voice sync in menu background

    I have a problem with a video clip used as a menu background. It is 25 seconds, a talking head, but I cannot get the voice and video to sync. All movies in this iDVD v 6.04 project sync fine. The movies and background clips were created in FC Express and then exported as Quicktime movies. The exported .mov files play fine in Quicktime. I did delete the old .mov file, re-export it from FCE and drop it into the menu background box but it's still out of sync. I deleted my preferences for iDVD in Library/Preferences and restarted my computer but this didn't work either. I have made other movies where the voice syncs fine in the background, but it isn't working here. I have not burned an image to see if it works as a completed DVD; it's a long DVD and that seems unlikely.
    I would appreciate any thoughts.

    Preview doesn't always portray things accurately, so you might just let your computer work overnight on a disc image, and see how that behaves.
    John

  • Submit form doesn't work in edge Inspect

    I have a contact form in my web and when i submit a form that doesn't work in edge inspect. Edge Inspect after a short time program stops working unfortunately. Form is not submitting and email also is not send. I have a form and i use AJAX to send form data with email to client.

    To be clear, where are you clicking the send button, in Chrome or on your Galaxy 2? And the application on the phone locks up? For example, you can't click the button in the upper right and see the menu?
    Thanks
    Thanks
    Thanks
    Thanks
    Ok
    Give this a try... open the page up in Chrome and wait for it to show up on your phone. Without clicking the send button, press the button in the upper right corner of the Edge Inspect client on your phone and choose the "Open in Browser" option. That will open a new window in the native browser on your device. When your page shows up there, click the "Send" button and tell us whether it works or not and describe what happens.
    Also, can you zip up the necessary code to repro this problem and send it to me at mrausch (at) adobe (dot) com ?
    Thanks,
    Mark

  • DVD menu background not working in some players only

    I put together a DVD in DVDSP 3 which works fine on most players. However on some players the menu backgrounds are grey instead of the graphic that should be there, and the buttons all say "Introduction" instead of having the proper titles. The first Main Menu looks fine and works properly. But the other menus don't show the background images at all.
    I've tried using JPG, TIF and MPEG-2 files for the backgrounds on those menus, but none of those file formats works. The buttons all function properly and go to the correct targets, but the button text is the same wrong text on all the buttons. Also, the transitions work fine. And the tracks all play fine. It's just the non-Main menus that have the problem, and only on some DVD Players.
    The specific players that have the problem are the Sony DVP-NS55P and the Philips DVP3140, both set top players.
    Has anyone seen this type of behavior? And fixed it?

    I have a similar problem. When I create a movie background and test in the simulator, the movie doesn't play and I get the grey screen with all the buttons and menus. The DVD created only plays the movie background only after you click a button and it tries to move on to the next track. I have never had a problem before.

  • CSS Drop down menu; how to align the right edge of drop down and parent menu?

    Hello everyone,
    I have a drop-down menu that is currently working well.
    The only change I need to make is to have the right edge of the  drop-down menu to align with the right edge of the parent menu. When you  hover over the menu, it currently "drops" down and to the right, with  the left edges aligned.
    I want the menu to "drop" down and to the left, so the right edges are aligned.
    I have tried fiddling with floats and absolute/relative positioning. I'm not sure what needs to be changed.
    Any help you can provide is greatly appreciated! I'm learning via "cut and paste", so please go easy on any terminology you may use.
    Thank you!
    Here is my code:
    .chromestyle{
         width: 100%;
         font-weight: bold;
         float: left;
         height: 29px;
    .chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    .chromestyle ul{
    border: 0px solid #BBB;
    width: 100%;
    background: url(chromebg.gif) center center repeat-x; /*THEME CHANGE HERE*/
    padding: 4px 0;
    margin: 0;
    text-align: right; /*set value to "left", "center", or "right"*/
    .chromestyle ul li{
    display: inline;
    .chromestyle ul li a{
    color: #000000;
    padding: 4px 7px;
    margin: 0;
    text-decoration: none;
    border-left: 1px solid #DADADA;
    .chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
    background: url(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
    /* ######### Style for Drop Down Menu ######### */
    .dropmenudiv{
    position:absolute;
    top: 0;
    border: 1px solid #BBB; /*THEME CHANGE HERE*/
    border-bottom-width: 0;
    font:normal 12px Verdana;
    line-height:18px;
    z-index:100;
    background-color: white;
    width: 200px;
    visibility: hidden;
    .dropmenudiv a{
    width: auto;
    display: block;
    text-indent: 3px;
    border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
    padding: 2px 5px;
    text-decoration: none;
    font-weight: bold;
    color: black;
    * html .dropmenudiv a{ /*IE only hack*/
    width: 100%;
    .dropmenudiv a:hover{ /*THEME CHANGE HERE*/
    background-color: #0000ff;
    color: #fff200;

    Try this:
    .chromestyle{
         font-weight: bold;
         height: 29px;
    .chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    .chromestyle ul{
    border: 0px solid #BBB;
    width:100%;
    background: url(chromebg.gif) center center repeat-x; /*THEME CHANGE HERE*/
    padding: 4px 0;
    margin: 0;
    text-align: left; /*set value to "left", "center", or "right"*/
    .chromestyle ul li{
    display: inline;
    .chromestyle ul li a{
    color: #000000;
    padding: 4px 7px;
    margin: 0;
    text-decoration: none;
    border-left: 1px solid #DADADA;
    .chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
    background: url(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
    /* ######### Style for Drop Down Menu ######### */
    .dropmenudiv{
    position:absolute;
    top: 0;
    border: 1px solid #BBB; /*THEME CHANGE HERE*/
    border-bottom-width: 0;
    font:normal 12px Verdana;
    line-height:18px;
    z-index:100;
    background-color: white;
    visibility: hidden;
    text-align:left;
    .dropmenudiv a{
    width: auto;
    display: block;
    border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
    padding: 3px;
    text-decoration: none;
    font-weight: bold;
    color: black;
    * html .dropmenudiv a{ /*IE only hack*/
    width: 100%;
    .dropmenudiv a:hover{ /*THEME CHANGE HERE*/
    background-color: #0000ff;
    color: #fff200;
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Using LT for motion menu background – problems

    I’m trying to use a LT texture (Canvas>Sinopia) as a motion menu background. I exported 30 secs of the rendered texture direct from LT. The QT file size is 1.09 GB. Couldn’t get it to work in DVDSP. Took that file into FCP and re-exported it using custom settings. File size now 108.7 MB. Still doesn’t work in DVDSP.
    Should I be putting the 30 second file through Compressor? Is it the large file size that is causing the problems?
    Importing the .lpr file into DVDSP also doesn’t work (although I prefer to pre-render all assets, otherwise DVDSP slows to a crawl).
    I’ve now tried the texture as a 5 sec version (20 MB file) – works fine, but there’s an annoying jump in the loop every 5 secs. If I could fix that, the menu would probably be OK.
    Any advice appreciated.
    Regards. Robert.

    Both solutions worked. Wish I could award 2 solved stars.
    Compressor produced an m2v file of 21.9 MB. I'm going with that because the workflow is quicker and simpler on my old setup.
    Exporting as DV from FCP produced a file size of 103.2 MB. My DVDSP slows down with large file sizes, so I'll give it a miss. Or could still be me doing something incorrectly.
    I'm working in SD PAL 16:9.
    Help was much appreciated.
    Regards. Robert.

  • Still image disappears from menu background on burning to DVD

    I’ve just completed a project in Adobe Premiere Elements 9 in which I’ve personalized the menu background with a still image (trying two different disc menu templates - sport swimming and one under memories - can't remember the name of that one). With both these templates the still image shows up perfectly on my computer screen while I'm in the project but when I burn the project to DVD the still image doesn't appear on playback of the DVD.  I have done other projects in PE9 with no problems with still images in existing disc menu templates - travel ship template and the template that comes as standard with PE9 before adding additional templates). I would prefer not to use either of these templates for my current project.
    I see previous treads have commented on changing the size of the image...this doesn't seem to make a difference for me and the other suggestion is to somehow change the name of the file for the templates to get around this problem but i'm not understanding this.  I still don't understand why some templates work and others don't. Does anyone have a simple to understand solution to this?
    Or does anyone have a list of the disc menu templates that work with personalizing?
    thanks heaps.

    There does seem to be a bug that affects some menu templates.
    Try the Generic template under the General tab.
    There are also a number of menu templates available at Premiere Elements support site http://Muvipix.com that will work with no problem and can be easily customized.

  • How can I change a the dropdown menu background according to the text selected?

    How can I change a the dropdown menu background according to the text selected?

    Read here about how to use the color object correctly:
    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/wwhelp/wwhimpl/common/html/w whelp.htm?context=Acrobat9_HTMLHelp&file=JS_API_AcroJS.88.260.html
    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/wwhelp/wwhimpl/common/html/w whelp.htm?context=Acrobat9_HTMLHelp&file=JS_API_AcroJS.88.261.html

  • Ideas for HELP sizing a photo to display as a menu background

    Hey gang. I'm authoring in iDVD and have a photo with DVD credits that I want to display as a menu background. There won't be any buttons on the page. Just this image of DVD credits. The iDVD manual tells you to size photos for an NTSC 4:3 display at 720 x 540 pixels. However, when I drop it onto the menu, it automatically enlarges the image so that there's only a partial view of the image. The only adjustment that can be made is vertically. I've even tried shrinking the image with text and mounting it on a matte so that it appears in the TV safe viewing area, but no luck there. Same thing happens. Any ideas? If someone want to mess around with the image, let me know and i'll email it to you. Thanks!

    hey there koshercuts, welcome to Discussions.
    have you tried to edit your pic in iPhoto before dropping it into the iDVD menu? this is where you edit your pix, not in iDVD. also see this: http://www.danslagle.com/mac/iMovie/, Dan's site has a lot of great info, especially "Tips & Tricks".
    good luck.

  • Can I take a frame from my project and use it as a custom menu background with CS4 and its Encore

    My project is edited in CS4.
    I moved it to Encore CS4.
    I don't want to use any of the supplied menu templates in CS4 Encore.
    I was hoping CS4 would be all I needed to create custom menus using scenes from my project.
    My question is: Can I take a frame from my project and use it as a custom menu background with CS4 and its built in Encore or do I need some other element from the Adobe catalog to make these custom chapter menus and sub-menus?
    Thanks Jim

    OK, I'm back. Here are my steps for creating Custom Menus with PS, En and PrPro:
    In PrPro, move the CTI (Current Time Indicator) to the desired Frame. Check Frames on either side, with the Program Monitor’s Magnification to 100%, or maybe even 200% (you’ll need to scroll, but get a really clear picture). You want the clearest Frame in that area. With AME, in CS4, you’ll want to Export that Frame as .TIFF, or .BMP. I use .TIFF for this.
    Now, for a caveat. When you Import this Exported Frame into Photoshop, be sure to check the specs., especially the PAR. You may have to use Image>PAR to adjust this to match your Project’s specs. Or, all might be perfect - just check this out.
    Now, at this point, I choose the Library Menu, Blank, so that everything is setup. One can create the Menu from scratch, but careful attention needs to be paid to the exact naming conventions. At the very least, unless you’ve done this dozens of times before, use that Blank Menu, or similar as a guide, so you get things done, as they must be done.
    Using that Blank Menu, just drag the Layer from your Exported Frame to your Menu image. It will appear above the black Background.
    Add, or manipulate your Button Layer Sets, as is required, keeping them together. Remember that Button #1 will be the Button Layer Set, that is lower down in the Layers Palette. This can play a roll with Button Routing, back in Encore. Lower Button Layer Sets will have lower Button numbers.
    Now, I always rename my Button Layer Sets, keeping the required characters - just changing the name. I also do all of my Button text in PS, and make sure to turn OFF Sync Button Names.
    When done, Save_As .PSD, and then Import_As_Menu into Encore. Note: if you start with the Blank Menu, you can choose Edit in Photoshop, and then when done in PS, you just need to Save, and it will update in Encore. This is a personal workflow choice. I do the Edit in Photoshop route, but it is not necessary. One just needs to Import the resulting .PSD into Encore with Import_As_Menu, so that Encore does all the things that it needs to and recognizes the .PSD as a Menu.
    When deciding what to base your Menu on, remember that you can "populate" your Menu with Buttons from the Functional Content. I’d suggest studying these Assets, and picking the ones that work best for you. You can still alter/edit those back in PS, so you just need to "get close."
    Pay special attention to the required naming conventions. You cannot deviate from those first characters in the Button Layer Sets. They MUST be followed.
    If you have any questions, do not hesitate to ask.
    Good luck,
    Hunt

  • Spry Menu background is white in IE

    I've created a vertical Spry menu with submenus. The menu should not have a background color, so it should take the color of the image it's on top of. This looks fine on Safari (Mac) and Firefox (Mac/Windows), but on IE 8 (Windows), the menu background is WHITE. This makes it difficult to see the menu items. What can I do so that the menu background is transparent and does not show up white in IE?
    The site: http://chrysacupuncture.com
    I'm attaching index.html, my own css file, and the Spry css file.
    Thanks for your help.

    Actually, now that I look at it, I think one of your IE hacks might be malfunctioning:
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
         ul.MenuBarVertical li.MenuBarItemIE
              display: inline;
              f\loat: left;
              background: #FFF;
    This is the bottom-most item in your CSS file.  Notice the typo in the float:left and that it does indeed state a white background background:#FFF.  I don't usually put IE hacks external CSS, you might try moving it to the main HTML file and using IECC.  Place it in the header as you would if you had internal CSS:
    <!--[if IE 5]>
    <style type="text/css">
    ul.MenuBarVertical li.MenuBarItemIE
              display: inline;
              float: left;
    </style>
    <![endIf]-->
    I removed the background color altogether, but you may have to define one (I don't usually support IE5 so I'm not sure).
    If you insist on having this hack externally, you can try placing the background: transparent in the first item of your CSS:
    ul.MenuBarVertical
         margin: 0;
         padding: 0;
         list-style-type: none;
         font-size: 100%;
         cursor: default;
         width: 9em;
         padding-top: 80px;
         background: transparent;

  • Change color in an Encore motion menu background

    I am thinking about using an existing Encore menu but I would like to take the moving background which is shades of blue and change it to shades of another color.  I've done this in PS for fixed backgrounds by right clicking and sending the menu to photoshop.
    However I am not sure 100% on how to do this for a pre-built menu with motion?  I assume it is some kind of workflow of adding the menu to an Encore project and then sending the video from that timeline (as a video track not a menu?) to Pre Pro and using color tools there to replace color, etc.....then rendering it with an appropriate codec and somehow marrying it back with the original menu buttons, etc. in Encore..
    Just not sure how to make that all happen!  Any help would be appreciated.
    Thanks,
    BJBBJB1

    You are on the right track. A Motion Menu uses a Video Asset (and maybe an Audio Asset too), for the motion.
    All you have to do is create a Video Asset, or modify an existing one, Import that into Encore as an Asset, and then use the Pickwhip to link to that for the Motion Menu Background.
    Once, those Video Assets for Motion Menus were WMV files, but in those days, Encore was ported for the PC only. Now, with X-platform capabilities, the format is M2v.
    I would take the Motion Menu Background Video into PrPro, adjust the colors, and change it, in any way you need, then Export that for Import into Encore. If you have used a Menu Template, then there will be an existing Motion Menu Background Video already associated with it. Just use the Pickwhip to change that association.
    Good luck,
    Hunt

  • PE3 DVD Menu Background video quality

    Hi,
    I'm creating a video for DVD and have got a 15 second AVI file I am using for the DVD menu background.
    I've added it in the Create DVD section and it all works fine. However, when I view the created DVD the quality of the menu video is horrible. Lots of compression artifacts.
    When I look at the VIDEO_TS folder the VOB file for the menu is about 6Mb.
    If I create a movie using the same 15 second AVI as the main movie (and no DVD title) then the SAME 15 second AVI becomes a 15Mb VOB file and looks much better.
    a) Why is PE3 using such low quality when compressing video files to use as DVD menu backgrounds?
    b) Is it possible to override it and make it use the same quality it uses for the main movie?
    Many thanks,
    Chris
    PS I'm using Premiere Elements 3.02 on Windows XP.

    Hi Steve,
    The 15 second DVD menu background AVI was created in Premiere Elements in a separate project. I created some Titles with Motion paths, layered them and then added some music.
    I then used File->Export->Movie... to save it as a Microsoft DV AVI which I then imported into the main movie project.
    I then selected Create DVD and dragged the movie into the Menu Background place.
    The project seems to work fine. The only issue is that the generated VOB for the menu is only 6Mb and very poor quality whereas if I create a DVD from the separate project where I created the 15 second title movie the same movie clip becomes a 15Mb clip (and hence 2-3x the visual quality too).
    Note that the rest of the movie is fine. It's just the menu background that appears to have been badly compressed.
    Chris

  • Why won't FCP X burn the menu background image when sharing directly to DVD?

    At one point recently I was able to drop in a jpg file so that FCP X would display this image in the menu background when a disc is burned directly out of FCP X when sharing directly to DVD. It worked at first, and then I decided I needed a higher quality image, but this one won't burn. My DVD now just has a black menu background. I can't figure out why this is happening. Please help! I'm using a late 2008 MacBook Pro 2.4Ghz 15" with OS 10.8.4. FCP X is up to date as well. My harddrive is fairly full in case that might cause some errors. Are there any specs on what type and size an image FCP wants for this function? Thanks for any help!
    Gregg

    Thank you, reducing the image size worked! I had used a low res file before, and with success decided to increase the resolution/size, and then it didn't work. the image did appear in small preview in the export panel, but wouldn't burn when all was said and done. the dimensions you gave worked fine. unfortunately, it makes the image a little bit fuzzy, but i dont think i can do anything about this. at least it burned it in there. thanks!

  • Menu background color has changed after applying Forms Patch3 (10.1.2.3.0)

    Hi,
    we have applied Patch3 on our Forms Environment.
    Now the menu background color has changed from green to gray (colorScheme is "teal" in formsweb.cfg).
    This behavior isn't documented and our customer want's to get the green menubar back...
    Any hints?
    Greetings, Florian.

    removed because of obsoleteness...
    Edited by: W1zard on Feb 2, 2009 4:57 PM

Maybe you are looking for

  • QT pro-why do I have to pay for something I use to have?

    ***? I downloaded the 7.1.2 version of QT some time ago...and did not realize until now that I cannot "share" or email my QT movie files unless I now BUY the PRO upgrade...It's always something, and it always happens when I'm trying to breeze through

  • Interface parameters in Function Module -- Doubts

    Hi, We are developing a custom function group which will have 5-6 custom function module. When you create a function module and specify its Export/Import and table parameters, SAP mark them as "Local Interface".(You can look at the Function module so

  • Problems building DBD::mysql

    Has anyone had any luck with this. I have a freshly built perl 5.8.8, freshly built DBI, all work great, built with no errors. (All done with SUNWspro 11) I believe the problem is simply that when DBD::mysql is compiling it is trying to build it in e

  • NCo 3 crashes when invoking functions that return a time field

    I'm using NCo 3 (.NET 2 target framework) with Visual Studio 2010. When I invoke a function that returns time fields (like BAPI_ALM_ORDER_GET_DETAIL) NCo crashes with the following message: SAP.Middleware.Connector.RfcTypeConversionException: Cannot

  • Error message when syncing with iPhone

    Since upgrading my OS this week, I've consistently got an error message when syncing playlists with my phone. See below: Can anybody help? Most of these tracks are purchased through iTunes