IE 7 Displays Spry Menu items from last to first.

I have a spry photo gallery that works fine in all browsers
but IE 7. I have read where IE7 displays the last item of a list
first unless an item is selected as the default. My code is listed
below for my drop down menu, how would you select a dynamic element
as the default for IE 7?
<div id="gallerySelect" spry:region="dsGalleries">
<label for="chooseGallery">Select Gallery:
</label><select
name="chooseGallery"spry:repeatchildren="dsGalleries"
class="dropDownMenu" id="chooseGallery"
onchange="dsGalleries.setCurrentRow(this.value)" >
<option value="{ds_RowID}"
spry:selected="{ds_RowID}">{name}</option>
</select>
</div>

Thanks, I think I've pretty much tried all the float settings
I know of, and still get the same problem. I should have been more
specific I think. The list is a dynamic list and usually you can
select one item as the default. I just cannot figure out to that in
Spry with the code I posted. Thanks for your help

Similar Messages

  • Populating menu items from the database...is it possible?

    hi
    using :forms 10g
    we have a requirement in forms where we need to populate the menu items from the database.first we used hiearchial tree where it was possible.but since the requirement changed i am not sure that whether the menu items can be populated by data from the database...will be glad if someone could throw some light on this issue...
    thanks

    You could always do it but would need to put a fix limit on the number of menu items.
    For example you could create a set of menu items at design time with the visible property set to False.
    While reading the database, you then set them to True while setting the label to whatever you require.
    But it all depends also on what you want your menu items to do when selected.

  • IE reversing order of spry menu items

    I've created a horizontal spry menu bar, and it works great except for one problem. When I open my page in Internet Explorer, the order of menu items from left to right is reversed. For example, "Home", which is my first item in the menu, is supposed to appear on the left, but instead it appears on the right. The menu bar itself is in the correct position, it's just the menu items that are reversed. When I open the page in Firefox or Safari, the order is correct - it's just an IE problem. Any suggestions would be much appreciated. Thanks!

    Thanks Ben, here's the code. I was doing some experimenting, and I changed the float property under ul.MenuBarHorizontal li.MenuBarItemIE to "right" instead of "left" as it is shown below. This caused the menu items to appear in the correct order, but it also caused the sub-menu items to appear in a horizontal line below the menu, when in fact they should be hidden until you hover over the corresponding item in the main menu. So I traded one problem for another! Any help would be much appreciated.
    To see how it`s rendering, visit http://www.leagueheadquarters.com/RAB. If you look at it in Firefox, you`ll see how it`s supposed to look, and in IE you`ll see the menu items reversed.
    CODE:
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        cursor: default;
        width: auto;
        font-family: Verdana, Geneva, sans-serif;
        font-variant: normal;
        text-transform: none;
        color: #1f3d73;
        float: right;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 12px;
        position: relative;
        text-align: center;
        cursor: pointer;
        width: auto;
        float: right;
        line-height: 13px;
        height: 16px;
        font-family: Verdana, Geneva, sans-serif;
        font-variant: normal;
        font-style: normal;
        color: #1f3d73;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        z-index: 1020;
        cursor: default;
        width: auto;
        position: absolute;
        left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
        left: auto;
        width: 8.7em;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
        width: 7em;
        text-align: left;
        height: 25px;
        background-color: #1f3d73;
        border-color: #FFF;
        border-right-style: solid;
        border-right-width: thin;
        border-left-style: solid;
        border-left-width: thin;
        border-bottom-style: solid;
        border-bottom-width: thin;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
        position: absolute;
        margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
        left: auto;
        top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        display: block;
        cursor: pointer;
        padding: 0.5em 0.75em;
        color: #fff;
        text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        background-color: #1f3d73;
        color: #1f3d73;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
        background-color: #1f3d73;
        color: #96B0E2;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* 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.MenuBarHorizontal li.MenuBarItemIE
        background: #1f3d73;
        float: left;

  • How can i remove the menu item from a menu

    how can i remove the JMenuItem from a JMenu at run time.
    thanks in advance

    This is in JMenu from the api
    void remove(JMenuItem item)
    Removes the specified menu item from this menu.
    You must download the api! it helps a lot!
    You can do that or if you need to access it again just set it visible(false);

  • Hide the delete menu item from a specific document library

    I want to hide the Delete  item menu option for a specific document library.Since it is for a specific library I would not like to use customcore.js approach.Please suggest some useful javascript for same.
    I have a custom delete action associated with the menu which performs other function as well so need to hide the OOB delete option from the item  menu of a document library.
    I have already used below javascript in CEWP which I added on the document library page itself(allitems.aspx) but yeild no results:
    <script type="text/javascript">
    var elemTable=document.getElementById('ECBItems');
    if (elemTable !=null) {
         var elemTBody=elemTable.childNodes[0];
    //iterate each table row to find the correct ECB menu item to hide(remove)
       for (var iMenuItem=0; iMenuItem < elemTBody.childNodes.length; iMenuItem++) {
             var elemTR=elemTBody.childNodes[iMenuItem];
             var elemTDTitle=elemTR.childNodes[0];
             var title=GetInnerText(elemTDTitle);
     //here we filter on title, but the table contains more information if need be
            if(title =='Delete') {
                 elemTBody.removeChild(elemTR);
    </script>
    Please suggest which can be kept specific and requires no change in masterpage as same masterpage is used across the site.

    Hi justSP,
    Greetings.
    Hope the below links help you
    http://social.technet.microsoft.com/Forums/office/en-US/9adea3a2-6d08-4c04-ace2-88a704833f1d/how-to-hide-delete-item-from-ecb-menu-for-1-specific-custom-list?forum=sharepointcustomizationlegacy
    http://chakkaradeep.com/index.php/sharepoint-hiding-menu-items-from-the-edit-control-block/
    http://social.technet.microsoft.com/Forums/office/en-US/1b832635-4ae7-4f31-826c-2d6b834ece52/hide-delete-from-ecb-menu-for-a-specific-document-library-in-sharepoint-2010?forum=sharepointcustomizationprevious
    http://social.technet.microsoft.com/Forums/office/en-US/919e01e6-9a7a-4439-b778-28e0dc8bffba/how-to-hide-delete-option-from-ecb-menu-in-document-library-in-sharepoint-2010?forum=sharepointdevelopmentprevious
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Populating Menu Items From the DataBase

    Using 10g
    hi
    is it possible to populate the menu items from the database using procedure?since our project is multilingual we have such a requirement..could someone throw some light on this?

    Hi ,
    Here is what you asked for.....
    PROCEDURE PRC_SET_MENUITEMS_ENABLED
    IS
       USERNAME_VAR PROSOPIKO.DBUSERNAME%TYPE;
          MENU_NAME_VAR MENUS_MODULES.MENU_NAME%TYPE;
          MENU_ID MENUITEM;
    BEGIN
          :SYSTEM.MESSAGE_LEVEL:='25';
       USERNAME_VAR:=FNC_GET_USERNAME;
       FOR z in (SELECT /*+LEADING(D C B A) index (A menu_modules_ind) index (D PROSOPIKO_AM_PRIMARY)*/
         DISTINCT MENU_NAME
            FROM MENUS_MODULES A, TASKS_MODULES B , TASKS_ROLE C ,PROSOPIKO D
            WHERE A.CODE_MODULE=B.CODE_MODULE AND B.CODE_TASK=C.CODE_TASK
             AND  C.CODE_ROLE=D.CODE_ROLE AND D.DBUSERNAME=USERNAME_VAR
             AND CODE_ORG_MONADA=:GLOBAL.CODE_TMHMA_VAR)
            LOOP
                  MENU_ID:=FIND_MENU_ITEM(Z.MENU_NAME);
               SET_MENU_ITEM_PROPERTY(MENU_ID,ENABLED,PROPERTY_TRUE);
               NEXT_RECORD;
            END LOOP;     
    END;     Regards ,
    Simon

  • "No Items" is displayed when "Show Items from Subfolders" is selected

    When I select the "view subfolders" menu item in a folder with subfolders and items, Bridge indicates that it is indexing.  Then it displays "No Items". If I go to each subfolder individually, the images are displayed.  This only happends in some folders. I purged my cache, perhaps this is the problem but it didn't help. I found a similar discussion named "View Subfolders" from 2009 with a "Helpfull answer" linked to http://kb2.adobe.com/cps/332/332992.html but it is now not available. My operation system is Apple OS 10.8.1.

    UziYachin wrote:
    I tried to index the entire sub-tree with no help. I noticed that when I restart bridge I get a message that bridge is unabled to read the cache. After purging the central cache I still get the above message after restart.
    Well, in that case, it sounds like this is causing the problem. If you can't read the cache, then you probably can't read an index either.
    Without knowing anything about your computer system, I'd suggest that you need to check for general account permission setup problems before looking at Bridge specifically.

  • What is the simplest way to invoke the command associated with an existing menu item from a plugin?

    Hey there,
    My specific task is to bring forward the "Swatches" window.  I want to initiate this from my plugin code (C++).  However, I may want to execute other menu items in the future, so understanding the simplest, most straightforward general mechanism would be great.
    I've pieced together a sequence that could work using the Menu and Interface suites, but it seems more complicated than it should be and requires knowledge of the localized name of the menu item (incomplete and uncompiled sample code below).  Is there a better way to do this?
    // Get the menu item handle by walking all items to find the swatches item
    long numMenuItems = 0;
    sAIMenu->CountMenuItems( &numMenuItems );
    AIMenuItemHandle menuItemHandle;
    ai::UnicodeString localizedItemName;
    for ( long menuItemIndex = 0; menuItemIndex < numMenuItems; ++menuItemIndex )
        sAIMenu->GetNthMenuItem( menuItemIndex, &menuItemHandle );
        sAIMenu->GetItemText( menuItemHandle, localizedItemName );
        if ( localizedItemName == “Swatches” )
            break;
    AIBoolean bchecked =false;
    sAIMenu->IsItemChecked( menuItemHandle,
                            &bchecked );
    if ( !bchecked )
       // Find the plugin responsible for adding and responding to the menu item
        SPPluginRef swatchPlugin;
        sAIMenu->GetMenuItemPlugin( menuItemHandle, &swatchPlugin );
       // Construct and send a message to the plugin instructing it to execute as if the menu item were invoke by the user
        AIMenuMessage message;
        sSPInterface->SetupMessageData( swatchPlugin, &message.d );
        message.menuItem = menuItemHandle;
        SPErr result;
        sSPInterface->SendMessage( swatchPlugin, kAIMenuCaller, kSelectorAIGoMenuItem, &message, &result );
        sSPInterface->EmptyMessageData( swatchPlugin, &message.d );
    Glen.

    That's a clever solution to a problem I'd never considered (but can see how others might need it) I can't think of a better way to invoke it though than what you're doing except maybe with some minor improvements. If you know the menu group, you can use AIMenuSuite::GetMenuGroupRange() to jump to that group in the overall list. Also, since menuitems seem extremely unlikely to change, you can probably cache the handle.
    Beyond that, the usual suggestion I'd make it is to at least explore actions. Try recording an action and see if it even picks up when you display the Swatches panel. I'm guessing it doesn't record stuff like that, but who knows?

  • Create Menu items from table data?

    Wondering if anyone knows of a way(if even possible) to create menu items on logon from table data where the menu data is stored?

    You'd have to make the menu code generic as well - probably the bet bet would be to have each menu item calling a common procedure but passing in the menu item selected - you'll then have to cross reference that with the current function of that menu item and do the right thing.

  • Display universal work item from CRM work list

    Hello all,
    In ECC system, we have defined several workflows. We can see the work item from the universal work list via the portal.
    Now, we have a new request, we would like to see these work items form CRM work list.
    I have checked the custo and I have questions:
    1. spro- Customer Relationship Management under  UI Framework  Technical Role Definition  Define Navigation Bar Profile . Select the relevant navigation bar profile and add the specific UI objects WI_BOR.
    please check the link http://help.sap.com/saphelp_crmscen70/helpdata/en/e9/7fec7e8f954e7fb60d56dd6324e313/frameset.htm
    2. CRM->Basic functions->Worklists->Define Alert Inbox and Workflow Inbox->Define Object-Specific Navigation
    => here i am not sure if need to add entry, if yes, which entry ?
    3.  need to define  ??
      RFC destination
    . Transaction Launcher Logical Systems and URLs 
      and workflow substitute profile Id
    Thanks in advance for your help.
    Best Regards,
    Elsa

    I've found a solution.
    I've been told that this problem is occuring
    because the Work Item ID is not being passed correctly to the BOR basedtransaction.
    The solution in my case is:
    (1) Goto SPRO -> Customer Relationship Management -> IC Web Client ->
    Basic Functions -> Transaction Launcher -> Configure Transaction
    Launcher (wizard)
    (2) Give the launch transaction id in the 'Entries' screen. The launch
    transaction id is Z_ACTION_EXECUTE_WORKITEM in my case.
    (3) Keep all the parameters same in the further screens until you reach
    the 'Transaction Parameters' screen
    (4) In this screen, the value currently being passed to Object Key is
    //selectedAUI Workitem/WI_ID. Change this to
    //selectedAUIWFWIAttachments/OBJECT_ID.
    Goto last step and then say 'Complete'.

  • How do I remove the "Yahoo" Menu Item from the Menu Bar

    My Text Menu Bar - NO ICONS - Reads from Left to Right:
    File, Edit, View, History, Bookmarks, Yahoo, Tools, Help -
    After I updated to Firefox 5.
    How do I get rid of the "Yahoo" Menu Item

    You appear to be first to mention the Yahoo menu item of those I've seen here, and there are some different versions of the '''Yahoo Toolbar''' maybe you have a different extension but this is how it goes for the Toolbar. You might check for another extension that has "Yahoo" in the name and in the Control Panel.
    ''Yahoo Toolbar messes up Location Bar Search''
    '''Remove the Yahoo Toolbar'''
    # "Ctrl+Shift+A" (Add-ons Manager)
    # Select Puzzle piece on left-side for Extensions List
    # Find "Yahoo Toolbar" and click on "Uninstall" button, and restart Firefox. ''(if you really need to keep the Yahoo toolbar, you can hide the toolbar instead with customize, and still change all the search defaults as below)''
    '''Then to fix the default search engine''' used at the Location Bar, change the value of '''keyword.URL''' in '''about:config''' to one of the values shown in [http://kb.mozillazine.org/Location_Bar_search#Location_Bar_search_.28external_-_search_engine.29 Location Bar search] at MozillaZine.
    * Google Search (Google search results page)<br>'''http://www.google.com/search?ie=UTF-8&oe=UTF-8&q='''
    # type in '''about:config''' into the location bar (in a new tab)
    # if the warning message nonsense comes up uncheck the box '''before''' dismissing the dialog message
    # '''filter on keyword'''
    # right-click on '''keyword.URL''' and choose "modify" then paste in the Google search engine string of your choice.
    # # '''filter on keyword'''
    # right-click on '''browser.search.defaulturl''' and again choose "modify" then paste in the Google search engine string of your choice.
    # right-click on '''yahoo.ytff.search.popup_src''' ''(if it exists)'' and again choose "modify" then paste in the Google search engine string of your choice, if adventurous might see if "reset" would remove and see if gone in next session (well not for those keeping the extension).
    '''Avoiding the problems:''' Many software installations contain additional baggage know as crapware. The Yahoo Toolbar is packaged with Java [http://imageshack.us/photo/my-images/266/javainstall.png/ picture]
    More information on ask.com, Yahoo Toolbars
    * Uninstalling toolbars - MozillaZine Knowledge Base<br>http://kb.mozillazine.org/Uninstalling_toolbars
    '''More information on configuration variables''' available in
    [http://kb.mozillazine.org/About:config_entries about:config entries] and for users not familiar with the process there is [http://kb.mozillazine.org/About:config about:config] (How to change).
    ''Yahoo Toolbar messes up Location Bar Search''
    '''Remove the Yahoo Toolbar'''
    # "Ctrl+Shift+A" (Add-ons Manager)
    # Select Puzzle piece on left-side for Extensions List
    # Find "Yahoo Toolbar" and click on "Uninstall" button, and restart Firefox. ''(if you really need to keep the Yahoo toolbar, you can hide the toolbar instead with customize, and still change all the search defaults as below)''
    '''Then to fix the default search engine''' used at the Location Bar, change the value of '''keyword.URL''' in '''about:config''' to one of the values shown in [http://kb.mozillazine.org/Location_Bar_search#Location_Bar_search_.28external_-_search_engine.29 Location Bar search] at MozillaZine.
    * Google Search (Google search results page)<br>'''http://www.google.com/search?ie=UTF-8&oe=UTF-8&q='''
    # type in '''about:config''' into the location bar (in a new tab)
    # if the warning message nonsense comes up uncheck the box '''before''' dismissing the dialog message
    # '''filter on keyword'''
    # right-click on '''keyword.URL''' and choose "modify" then paste in the Google search engine string of your choice.
    # # '''filter on keyword'''
    # right-click on '''browser.search.defaulturl''' and again choose "modify" then paste in the Google search engine string of your choice.
    # right-click on '''yahoo.ytff.search.popup_src''' ''(if it exists)'' and again choose "modify" then paste in the Google search engine string of your choice, if adventurous might see if "reset" would remove and see if gone in next session (well not for those keeping the extension).
    '''Avoiding the problems:''' Many software installations contain additional baggage know as crapware. The Yahoo Toolbar is packaged with Java [http://imageshack.us/photo/my-images/266/javainstall.png/ picture]
    More information on ask.com, Yahoo Toolbars
    * Uninstalling toolbars - MozillaZine Knowledge Base<br>http://kb.mozillazine.org/Uninstalling_toolbars
    '''More information on configuration variables''' available in
    [http://kb.mozillazine.org/About:config_entries about:config entries] and for users not familiar with the process there is [http://kb.mozillazine.org/About:config about:config] (How to change).

  • Accidently removed "Contextual Menu Item" from /Library

    Hello
    I was testing an application called iTrash during which it seems like i have deleted the "Contextual Menu Items " folder as its no longer present and i can no longer right-click anywhere on my Snow Leopard. I don't have any backups. Can someone tell me how i can recover that folder or if i can download the files needed to have in that folder (just the original ones) to regain the Right-click again?
    Trash is empty so i can't recover from there. Can someone please help

    Normally, that folder's empty. Just recreate it. However, it has nothing to do with right-clicking and getting contextual items. Something else is amiss. Check System Preferences->Mouse and ensure that you haven't disabled the right click. BTW, there isn't any Archive & Install in Snow Leopard, just install.

  • Remove a few Menu Items from Reader

    Hi
    I need to remove a few items from the Menu once the PDF doc is open.
    I have inserted the HideList.js =
    //Hides Tools > Object Data
    //app.hideMenuItem("DataToolsItem");
    //Help > Online Support
    app.hideMenuItem("OnlineSupport");
    //Hides Help > Repair Adobe Reader Installation
    app.hideMenuItem("DetectAndRepair");
    I need to hide:
    Edit > Preferences
    View > Read Out Loud
    I have tried with :
    //Hides View > Read Out Loud
    //app.hideMenuItem("ReadLoud");
    //Hides Edit > Preferences
    //app.hideMenuItem("GeneralPrefs");
    But no joy here. If possible I wanted to hide the whole Menu.
    Thanks, Maelito

    Hi
    I have resolved this myself.
    Maelito

  • How to delete a submenu menu item from a master page?

    I am having trouble deleting a submenu item from a menu on a master page. I'm not sure where or how it was created, but simply selecting it and trying to delete it, is not working...

    Sub-menus are generated by your site structure. Either delete the page or disable it from menus with the contextual menu. If it's not a page, make a temporary change to the site structure and then change it back to force Muse to refresh, it might be a glitch.

  • Question: How do you remove Menu Items from showing up in LC

    Hello everyone:
    If someone can please point me in the right direction in how to convert app.hideMenuItem("Toolbars"); to the XFA SOM?
    I am creating the form using Adobe Distiller from an access report.  I change the Interface Options in Acrobat to hide file and toolbar menus, but when I convert it to LC, the options are removed.
    I also scripted app.hideMenuItem("Toolbars"); in the Page.Open event using Acrobat and when I convert to LC the code does nothing at the subPage1.Initialize event.  Not even when I reopen the converted form in Acrobat does the script run...
    What is the best method of hidding menu items using LC Designer?
    Any help would be greatly appreciated.
    Thanks for your time,
    Ivan A. Loreto – Computer Education Technician
    LOMA LINDA UNIVERSITY | School of Allied Health Professions - Department of Physical Therapy
    System Info:
    Acrobat Pro 9
    LC ver 8.2.1

    Ivan,
    Here is what liitle I know on this topic.
    The attached doc was created when Designer 7 was released and it has a table of the Acrobat JavaScript APIs and there equivalents, if any, in Designer. According to that doc, app.hideMenuItem() is supported in Designer and there is no Designer JavaScript equivalent.
    My brief look at this matter leads me to believe security constraints since Reader 6.0 have changed the rules.
    I recommend you take a look at trusted functions and context in the Acrobat 9 SDK.
    http://livedocs.adobe.com/acrobat_sdk/9/Acrobat9_HTMLHelp/wwhelp/wwhimpl/js/html/wwhelp.ht m?&accessible=true
    That is as far as I got.
    Steve

Maybe you are looking for

  • ITunes crash, missing DLL

    hello, i have currently had this problem for about 2 or 3 days, i reinstall all everytime and still get the same error of a missing DLL. i even uninstalled and reinstalled. the error im getting is: "The application has failed to start because MFC42u.

  • Same Execution plan But different consistent read values

    hi, my db version 10.2.0.3 os version solaris 10. i have a query which has same execution plan but with diffrenet consistent read values when optimizer_mode is RULE and CHOOSE. what may be the cause of that? thanks, Here is the query: SELECT * FROM X

  • Concurrent request is failing with error "ORA-01562: "

    We have Abort in production with rollback segment error as below. Unexpected error found while deleting in staging table . 1100ORA-01562: failed to extend rollback segment number 258 This is RAC instance having 4 db nodes Details for UNDO as follows:

  • Unable to create  previous emloyement tax details through IT delarations

    Hi , I am facing an issue while creating previous employment  tax details in ESS . Once details are filled in and I try to submit it , it displays an error " Only one record should exist from Jan 1800 -  Dec 9999 " The time constraint of the infotype

  • Page Navigation in Flex

    Hi, I have a link button , when clicked we should be able to navigate to another page in a different tab. I am using mx:ViewStack to navigate in the application. thanks