Transparent Muse menu background in InDesign DPS

Ahoy hoy
I've been wrestling with this for hours now and no matter how close I come I can't quite fix the problem.
I've built an interactive navigation bar in Muse for a presentation designed in InDesign, using DPS. All CS6 and up to date. The nav bar sits over the top of the InDesign doc using Web Overlays.
However when I preview it, I constantly get a white background overlay as part of the Muse .html file.
I've included the following code in the Page Properties->Html for <head> box in the Muse file:
<style>
body{
background:transparent !important;
</style>
And have checked Transparent Background in Web Overlays in InDesign. So as far as I can see, I've tried everything to get the damn thing to be transparent - but it refuses.
I'm tearing my hair out here, any help would be greatly appreciated.
D

Here are some tips for achieving transparency when using Edge animations. They may work as well in your situation since you are also using HTML in the article as an overlay:
Ok sorry for the delay in responding, we were doing investigation on our end. Getting transparency isn't easy at the moment, and we'll add a future work item to try and make it more straightforward. Until then:
If your background is a solid colour, draw a rectangle with the same colour as the background and put it on top of your placed .OAM file in InDesign.
If your background is more complicated than a solid colour, after placing the .OAM file use the "Send to Back" command to ensure the placed .OAM is behind your background content. Don't worry about the impact of this on the finished .folio: we'll still treat it as an overlay and put it over top of the background when rendering.
A few other tips when working with placed .OAM files:
Do not use a poster generated from Edge because their poster PNG does not contain transparency. Even if it did, it would still need to be disabled in InDesign.
The auto play setting in Edge is ignored in DPS. Autoplay has to be checked in the overlay panel.
"Use Transparent Background" also has to be checked in the overlay panel or the background will appear white.
Neil

Similar Messages

  • Accordeon menu + Indesign DPS

    Hey everyone,
    I have a question concerning the following item:
    I'm currently working on a file and there's need for an accordeon menu.
    Of course the accordeon menu is (built with) HTML. I'm no hero at HTML so there's another party that will develop the menu.
    But I have to integrate the HTML menu into the indesign file like Rufus explains here:
    http://tv.adobe.com/watch/muse-feature-tour/muse-creating-content-for-dps/
    Each item of the menu will contain sveral buttons that eventuall should link to a page within the final DPS file.
    But here comes the trick question:
    Like I said earlier we want to integrate the menu into the DPS file. So if you click on the menu it should direct you to another page in the final DPS file...
    Is it possible to use the native "navto://" code in the HTML file? Just like regular buttons inside of indesign do?
    We're pretty stuck here... and I can't contact some HTML wizard on here, beacuse they mostly don't understand how indesign works...
    Thanks in advance!
    kevin

    This is the code:
    <!DOCTYPE html >
    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
        <title>Untitled Document</title>
        <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.1.js"></script>
        <style type="text/css">
                /* first level */
            div#accordion-nav {
                width: 378px;
                border: 1px solid #9C9C9C;
            div#accordion-nav div div.header {
                display: block;
                margin: 0;
                font-weight: bold;
                background-color: #006a91;
                height: 53px;
            div#accordion-nav div div.header:hover {
                cursor: pointer;
                /* second level */
            div#accordion-nav div ul {
                list-style-type: none;
                margin: 0;
                height: 220px;
                overflow-y: scroll;
                overflow-x: hidden;
                padding-left: 0;
            div#accordion-nav div ul li {
                padding: 0;
                border-bottom: 1px solid #dfdfdf;
            div#accordion-nav div ul li a {
                text-decoration: none;
            div#accordion-nav div ul li a img {
                vertical-align: middle;
                padding:0;
                width: 378px;
                height: 95px;
                /* headers of lists */
            div#volvo {
                background: url("img/menu-headers/xxx.jpg") no-repeat;
            div#terex {
                background: url("img/menu-headers/xxx.jpg") no-repeat;
            div#mafi {
                background: url("img/menu-headers/xxx.jpg") no-repeat;
            div#sennebogen {
                background: url("img/menu-headers/xxx.jpg") no-repeat;
            div#sandvik {
                background: url("img/menu-headers/xxx.jpg") no-repeat;
            div#diensten {
                background: url("img/menu-headers/xxx.jpg") no-repeat;
                /* Let's get this party started */
            ::-webkit-scrollbar {
                width: 4px;
                padding-right: 4px;
                /* Handle */
            ::-webkit-scrollbar-thumb {
                -webkit-border-radius: 3px;
                border-radius: 3px;
                background: #9C9C9C;
                -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
            ::-webkit-scrollbar-thumb:window-inactive {
                background: #9C9C9C;
        </style>
        <script type="text/javascript">
            $(function () {
                $("div#accordion-nav div div.header").click(function () {
                    $(this).parent().siblings().children("ul").slideUp(300);
                    $(this).siblings("ul").slideToggle(300);
        </script>
    </head>
    <body>
    <div id="accordion-nav">
        <div>
            <div class="header" id="xxx"></div>
            <ul style="display: none;">
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
            </ul>
        </div>
        <div>
            <div class="header" id="xxx"></div>
            <ul style="display: none;">
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="img/xxx.jpg">
                    </a>
                </li>
            </ul>
        </div>
        <div>
    and so on...

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

  • Is there a way to change the size of a menu background?

    I would like to use my own photo as a menu background and reduce it's size to less than the full size of the menu.
    The photo selection sticks over a save and re-open but the size of the object reverts to the full menu size when the project is reloaded.

    If I were replacing a Background in a Menu Set, and only wanted it to occupy a smaller area, than say 720 x 480 for an NTSC DV Menu, I would go to Photoshop, Set my Background Color to black, do New Image, and choose the NTSC 720 x 480 (Standard, or Widescreen, as required) w/ Guides. Then I would Open my desired Image, drag it to that New Image, and Scale with with Free Transforming (Ctrl+T), to fill the area that I want, Flatten and Save_As PSD. That would be the Image that I would use for the Menu Set.
    Now, if you wish to see some of the original Background, around your smaller Image, there are two methods to accomplish that. As the structure of PrE's Menu Sets are Layered PSD's, and that structure is very strict, I am not sure if there would be issues with either of these ways.
    Do the same, as above, but choose Transparent for the Background. Then Save_As PSD, to use the Transparency in the PrE Menu Editor. If that does not work, move to #2.
    Do the same, as above, choosing Transparency for the Background. Open one of the PrE Menu Set Menu PSD's, and drag its Background to your New Image. Drag your Image over that, and Scale, as required. Save_As PSD, and drag that to the Menu Set in the Menu Editor.
    To work with Menu Sets, that do not allow one to add a Background Image, one could Open the MM (Main Menu), and the SS (Scene Select) PSD's in PS. Then, one would basically do the drag operation from above, to add their Image over the Background. I would then Save_As PSD, without Flattenng (very Important), and increment the first part of the name in some way. Do not alter the last part of the Menu Set's MM, or SS file names (very important). Create a New Folder in the DVD Menu Library sub-folder hierarchy, and name it something like "My Menus." Before you close out PS, Flatten each the MM and the SS, go to Image>Image Size, choose 160 x 128, and create PNG's the same Image Size of the other PNG's in the Menu Sets' folders. Note the required file naming convention for those PNG's also. Increment the beginning of the file name, to match what you did above. Place those PNG's (they are the "thumbnails" in the Menu Set Viewer) in that New Folder, that you created. When you start PrE, and go to Create Menus, your New Folder should show in the drop-down, where you placed it.
    Note: NEVER Save_As the exact same name, as your DVD Template Menu Sets' name, or you will overwrite those Menu Sets. The only way to get them back is to reinstall the Functional Content material.
    If you get lost, do not hesitate to look at the naming conventions in PrE, as a guide. Same thing for the Layer Set order. The structure is VERY important. Though I do this a lot, I still need to use one of the Library Menu Sets, as a reference guide. There is little latitude in the file naming, and almost none in the Layer Set order. It's the same for the folder/sub-folder structure.
    Good luck,
    Hunt
    PS - The same instructions should work fine in PSElements, but as I do not know, or have, that program, I cannot be 100% certain. With the above operations, one should not run up against one limitation of PSE - its inability to create Layer Sets (the Buttons). However, PSE can edit Layer Sets - just not create them.

  • InDesign DPS and iTunes Connect: In-App Purchase won't appear

    Greetings Adobeans,
    first of all: I'm not a native speaker, so please forgive me my maybe erronenous english.
    To my question / problem: The company I'm employed publishes a multi-folio-tourguide-app. It is produced with InDesign DPS and the App Builder, published via Folio Producer and should now be sold at iTunes to the Apple iPad, so the publishing process leads inevitable to iTunes Connect. We already launched the multi-folio-app itself along with a free folio as a free, non-consumable in-app purchase. The app is now online, downloadable and our first folio works fine - even it stays "Waiting for Upload" ... I think, the multi-folio-app tells iTunes Connect to get the data out of the Folio Producer, but I don't know the exact details of how this works.
    The next step was to publish a second, priced in-app purchase.
    Our steps were (they might be useful for a solution, I guess):
    - publishing the folio in the Folio Producer (Status: Public - Trade),
    - creating a non-consumable in-app purchase at iTunes Connect, using the same Product-ID as the folio in the Folio Producer,
    - and uploading a update for the entire app, because Apple and Adobe say so.
    But the folio never appeared in the app. It the iTunes Connect-menu it just stays "Waiting for Upload", like our first, but it won't appear at all.
    My wisdom as a graphic designer has come to it's end a long time ago, Apple told us, that they don't look at these in-app purchases at all and we should ask Adobe for help ... and well, Adobe Help Services sent me to here.
    So, I would be deeply grateful for any help or enlightement.
    Greetings from Germany,
    Der Bäcker Scholz

    If your non-consumable in-app purchase in iTunes Connect is still "Waiting for Upload," it means it's not approved yet. You need to provide the screenshot and complete the in-app purchase submission to Apple. They should approved rather quickly. After a while (sometimes as long as 24 hours), your published folio will appear in your app.
    In the future, submit your in-app purchases to Apple well in advance of publishing the folio. That way, you can publish the folio as Public and Retail, and it will appear in your app right away.

  • Muse menu editing & BC Blog - solution comments please

    New to Muse & BC.
    Created a site in muse, uploaded to MC no problem and added a news feed this shows on the site preview from BC but the news sub menu under in the know doesnt preview in muse.
    I followed in detail the muse and BC blog tutorial video, created BC main template, added {tag_pagecontent} but I now understand that I cannot re-edit the muse menu hyperlinks.
    blog name: mumsformums
    url: http://mumsformums2.businesscatalyst.com/blog
    So I have a site with top level nav:
    home
    in the know - news
    a new start
    lifestyle
    blog
    events
    contacts
    I have tried exporting blog page from muse and excluding it to no avail.
    Site structure is fairly simple but though I can preview the blog at:
    http://mumsformums2.businesscatalyst.com/blog?Preview=True
    the blog doesnt show up @ http://mumsformums2.businesscatalyst.com/blog.html, I just get a page not found content holder text within {tag page element}
    as I have currently excluded uploading the blog page from muse, the blog page doesnt show up in my pages.
    I have tred creating a new page and asigning it the name blog but I get an error on publish that the page name is already being used by mums for mums blog.
    I am sure this is something on the blog side or within BC
    any help would be appreciated.
    OK so I get to access the blog at:
    http://mumsformums2.businesscatalyst.com/blog and not
    http://mumsformums2.businesscatalyst.com/blog.html
    so how do I reedit the muse menu on the master and the BC Main template to point to mumsformums/blog and not blog.html?
    My solution so far: I have managed to get use a redirect to the http://mumsformums2.businesscatalyst.com/blog via URL Redirect.
    As the page loads the main menu state was not correct (inactive as opposed to active).....so I then created an new muse master from scatch and applied the relevant styles to the BC menu master, I guess if I need another dynamic master within BC I will have to create another that is a child of the main master within muse.
    Comments would be great if this is not the correct approach.

    This would need to be transparent for m'y client...
    Y
    Envoyé de mon iPhone
    Le 2014-04-20 à 15:29, Sanjit_Das <[email protected]> a écrit :
    Re: help need to switch Muse site to BC on a allready hosted plan
    created by Sanjit_Das in Help with using Adobe Muse CC - View the full discussion
    Thanks for additional details.
    Unfortunately we cannot change site template of a live site in BC , but as a workaround Create a site from BC using the template you wish to use then publish the site from Muse to the site created from BC and transfer the contents stored from live site to trial site. Ater final transition is done , you can delete the already paid site and make live the new trial site which includes new site template.
    Thanks,
    Sanjit
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6314730#6314730
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6314730#6314730
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6314730#6314730. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Help with using Adobe Muse CC at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • How to edit graphic in muse menu widget

    I want to change the muse menu widget from the grey rectangle to a custom graphic. I have tried making the button see through by removing  the ill color and pasting the graphic into the background. This only affects the first button.
    Is there a way to affect this change to each automatically generated navigational button?

    You need a tick in edit all together and then look at the states panel… odds are you have a different format for one of the states.
    Example of a normal manu bar = Map | Tafe nsw
    Example of a manu bar with image background = http://chec-garry3.businesscatalyst.com/Muse_testing.html
    You can then adjust the states to fit your design… best to have at least some difference between them so people know what to press but that’s up to you.

  • How do I set the HELP menu to use Indesign's local HELP files on the hard drive and not the web?

    How do I set the HELP menu to use Indesign's local HELP files on the hard drive and not the web?
    CS 5.0 launches the internet browser.  > TO SLOW I DONT WANT THIS.
    CS 3.0 uses the local help files > I WANT THIS FOR 5.0.

    You're not speaking to the right forum for your request. Help is a Suite-wide feature and here is the forum where the Help application is discussed, and where the proper Adobe people hang out:
    Community Help Application

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

  • Stitch lines created in a PDF/X-1a due to transparency flattening during export from InDesign

    Has there been any sure fire methods to avoid the digital stitch lines created in a PDF/X-1a due to transparency flattening during export from InDesign? If I attempt to edit the PDF using the Acrobat Edit Text and Graphics tool the PDF is actually carved into sectors and images are not selectable as a whole. Also contrary to what I have read those white lines do indeed image from time to time. I could export as PDF/X4 to preserve the transparency but on occasion it would be advantageous to flatten it before supplying to the printer. Currently using CC and have done the usual things in an attempt to avoid the lines such as all text above transparent objects on a separate layer and 'Clip-Complex-Region' on export.
    Thanks in Advance!

    If the default High Res flattener preset is stitching make a custom preset that's all rasters and use it in the advanced tab of the PDF/X-1a preset

  • 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

  • Muse JS Assert: Error calling selector function:Type error: Object has no method Muse Menu

    When exporting html and viewing locally we receive the following error... This error disappears after removing menu from top of page. This error does not occur when viewed on Outdoors360.businesscatalyst.com (our temporary site)
    Muse JS Assert: Error calling selector function:Type error: Object has no method Muse Menu
    Any ideas??

    I fix the problem.
    I have carefully reviewed JAVASCRIPT files and I could see that these are not a major influence within the site, only are reference code and utilities of the same application.
    By removing these files nothing has stopped working, I thought I would have some error in the sliders, or opacities, but no, nothing happened.
    DELETE IT
    FRANCISCO CATALDO DISEÑADOR GRÁFICO

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

  • 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

Maybe you are looking for

  • How do I select preview as my default viewer while in Safari?

    I had to download Adobe in order to download a certain file, it is now set up as my defauly viewer. When I try to download files off my school website it will no longer view the file. It used to come up with preview and then I had the options to zoom

  • Bonded Warehouse: Cannot create Customs Declaration

    Does anyone have any experience with Bonded Warehouse that they could help with the following? I have setup Bonded Warehouse in GTS, but am unable to create any Customs Declarations from the PO/Goods Receipt. After creating the PO, Delivery, and Good

  • Lost photos in E7

    Hello, Have someone done similar erros as I did. I tired to transfer photos from camera to computer while deleting all photos. Does the phone make backup copy or temp -files?

  • Shuffle playlist but keep order?

    I'm using iTunes to deliver stimuli for an experiment. There are 36 aural examples that subjects will listen to, and I've got them in a playlist in iTunes. I want iTunes to randomly shuffle them. I know how to do this. That's not the problem. There n

  • Scxi 1520 exitation of 11 -30 vdc

    Hello I want to know wether i can use a device in my strain (scxi 1520) gauge module which requires an exitaion of 11-30 vdc and gives an ouptput of 4-20 mA.if possible whats the configuration and if not ,if i provide an external exitation how do i u