Can't add popup menu?

Hi,
Thanks so much, I have been adding DW popup menus to my
sites for years and have never run into a problem, now today im
getting an error message each time I try to add the menu and I dont
know how to fix this.
The error message is.
While executing apply/behavior in show popup menu the
following java script error occurred. At line 247 of C://program
Files/Macromedica /Dreamweaver
MX/configuration/Behaviors/actuibs/shop popup menu. js";
TypeError: the head.innerHTML has no properties. The action
will not be added to your document.
I have checked at line 247 and nothing is there?
Any thought or suggestion would be greatly appreciated.
Jill

Jill:
I offer my sincere advice here - it's based on years of
seeing people
struggle with these simply awful menus. In fact, you may find
this essay
written by the person who adapted the code for Macromedia to
be
illuminating.
http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
Further, you say "no problem" but there are things going on
that you may
have never thought about - read this -
http://apptools.com/rants/jsmenu.php
http://apptools.com/rants/menus.php
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"JND1993" <[email protected]> wrote in
message
news:eqlgkb$ln8$[email protected]..
> Hi,
> Thanks so much, I have been adding DW popup menus to my
sites for years
> and
> have never run into a problem, now today im getting an
error message each
> time
> I try to add the menu and I dont know how to fix this.
>
> The error message is.
>
> While executing apply/behavior in show popup menu the
following java
> script
> error occurred. At line 247 of C://program
Files/Macromedica /Dreamweaver
> MX/configuration/Behaviors/actuibs/shop popup menu. js";
> TypeError: the head.innerHTML has no properties. The
action will not be
> added
> to your document.
>
> I have checked at line 247 and nothing is there?
>
> Any thought or suggestion would be greatly appreciated.
> Jill
>
>

Similar Messages

  • How can I add "Tools" menu bar item to firefox orange button

    After upgrading to FireFox 4 I decided to hide the menu bar, doing so I am not able to access the addons like "tamper data" which can be accessed only from the tools item of the menubar. Is there a way to customize the orange button of the firefox4 to add tools menu item?

    Thanks for pointing me to the add-on. But is there a way by which I can edit any xul file or any customize option like the customize toolbar.

  • How can we add a menu in Adobe Illustrator CS3?

    Hi
    I want to create a new menu in Adobe Illustrator menu structure, and I want to call another application through that menu. After hours of searching in web I came to know that  I have to work with Plugin programming. So I downloaded the adobe illustrator SDK CS3 and started the programming using Visual Studio .NET 2005 with the sample codes provided with the SDK. And I am still  not able to find out the any solution for adding a new menu. The problem is the the documentation provided with the sample code is too short, I am not able to understand the control flow , the functions used in the sample code.
    please help me!
    Sreejesh K V

    Hi,
    Thank you very much for your help
    I am not clear about the following code.
    extern AIErr addMenu( SPInterfaceMessage *message ) {
         AIErr error = kNoErr;
         // Add a menu item to the About SDK Plug-ins menu group.
         SDKAboutPluginsHelper aboutPluginsHelper;
         aboutPluginsHelper.AddAboutPluginsMenuItem(message,
                        kSDKDefAboutSDKCompanyPluginsGroupName,
                        ai::UnicodeString(kSDKDefAboutSDKCompanyPluginsGroupNameString),
                        "Adobe Plugin...",
                        &g->aboutPluginMenu);
         // Add other menus.
         AIMenuItemHandle          throwAwayAIMenu;
         AIPlatformAddMenuItemData throwAwayMenuData;
         AIMenuGroup                    throwAwayMenuGroup;
         char strBuffer[255];
         #define kMenuPlayMenuGroup     "Menu Play Group"
         #define kSDKMenuGroup     "SDK Group"
         // First we create a normal plug-in menu to use a hierarchical root                                   
         throwAwayMenuData.groupName = "Window Utilities";
         error = sADMBasic->GetIndexString(message->d.self, kMenuStringResID, 1, strBuffer, sizeof(strBuffer));
         if (error)
              goto error;
         throwAwayMenuData.itemText = SUctopstr ( strBuffer );
         error = sMenu->AddMenuItem( message->d.self, kSDKMenuGroup, &throwAwayMenuData,
                                            0, &throwAwayAIMenu );
         if ( error )
              goto error;
         // Now we declare the menu item a menu group
         sMenu->AddMenuGroupAsSubMenu( kSDKMenuGroup, 0, throwAwayAIMenu, &throwAwayMenuGroup );
         // Now we can add menu items to it.
         throwAwayMenuData.groupName = kSDKMenuGroup;
         *strBuffer = '\0';
         error = sADMBasic->GetIndexString(message->d.self, kMenuStringResID, 8, strBuffer, sizeof(strBuffer));
         if (error)
              goto error;
         throwAwayMenuData.itemText = SUctopstr ( strBuffer );     
         error = sMenu->AddMenuItem( message->d.self, "Auto Update 1", &throwAwayMenuData, 0,
                                            &throwAwayAIMenu );
         if ( error )
              goto error;          
         // enabled for paths and no masks in the selection
         error = sMenu->UpdateMenuItemAutomatically( throwAwayAIMenu, kAutoEnableMenuItemAction,
                        kIfPath | kIfGuide, kIfMask,
                        0, 0,
                        0, 0 );      // don't care about other update options
         if ( error )
              goto error;     
         sMenu->AddMenuGroupAsSubMenu( kMenuPlayMenuGroup, 0, throwAwayAIMenu, &throwAwayMenuGroup );
         throwAwayMenuData.groupName = kMenuPlayMenuGroup;
         *strBuffer = '\0';
         error = sADMBasic->GetIndexString(message->d.self, kMenuStringResID, 2, strBuffer, sizeof(strBuffer));
         if (error)
              goto error;
         throwAwayMenuData.itemText = SUctopstr ( strBuffer );     
         error = sMenu->AddMenuItem( message->d.self, "Menu Play", &throwAwayMenuData, 0,
                                            &throwAwayAIMenu );
         if ( error )
              goto error;          
         error = sMenu->UpdateMenuItemAutomatically( throwAwayAIMenu, kAutoEnableMenuItemAction,
                        0, 0,      // don't care about what's in artwork
                        kIfGroup, // is selected and
                        kIfTextPath,      // are not selected
                        0, 0 );      // don't care about other update options
         if ( error )
              goto error;     
         Can you give me the sample code to call the functions within the SDK API.
    For example adding an url in the plugin menu, calling another application ( .exe).
    I just tried to do myself but it ended in syntax error because I am not familiar
    With the VC++ programming.
    Thanks
    Sreejesh k v

  • 30EA2 Can't get Popup menu

    Hi!
    I'm evaluating Oracle SQL Developer 30EA2 for other platforms with JDK 1.6.0_20 on Fedora Linux (I use the "other platforms" version because all I need to get it running is to unzip it in its own directory and it doesn't interfere with anything else on my system).
    I can not get the popup menu via keyboard, only by the right mouse click. It doesn't work in Connections tab, nor in the SQLWorksheet.
    Shortcut key for command Other-Popup Menu is Shift-F10 (stock default setting)
    First I migrated the settings from previous installation (Version 2.1.1.64 Build MAIN-64.39) and it didn't work. I thought it may be because of mismatched settings, so I stopped SQL Developer,. deleted the ~/.sqldeveloper/system30.0.02.83 folder, started SQL Developer, but it does not work either.
    I can get popup menu in the 2.1.1.64 version normally, by Shift-F10 or by pressing "popup key" (located between Win key and Ctrl key).
    Please fix this, as this is a major obstacle for using SQL Developer without mouse. I use SQL Developer extensively every day, so keyboard only usage is essential to me.
    Speaking of popup menu: there is a double "Refactoring" entry in the popup menu in SQLWorksheet.
    Otherwise, SQL Developer is getting better and better! Keep up the good work!
    bye
    Alex

    Hi Alex -
    Just tested this on 3.0.02.97, Java(TM) Platform 1.6.0_21, Red Hat Enterprise Linux AS release 4 (Nahant Update 8), gnome
    & both Shift-F10 and 'Context Menu' keystrokes work so will be in next rel;ease.
    Brian Jeffries
    SQL Developer Team

  • How can I add a menu button that will replay the autoplay startup movie

    I want to link from the menu to the autoplay startup movie on the DVD, but I want to do this without having to put the movie on the dvd twice. Can It be done?

    John:
    Click on the item in the autoplay box and select "Loop slideshow" from the Advanced menu. That will continuously play the slideshow till your manually stop it.
    OT

  • How can I add popup help messages when I mouse over a button

    Hi there,
    I haev Acrobat x 10 pro.
    I'm new to acrobat and would like to set up a friendly form for people to fill in online.  I'd like them to have some interactive help so that for example when they mouse over or click a button, some help text appears.  I've played around with adding a text field that is hidden and then adding action items to a button to show it.  This works, but my text field is shaded like a normal text field and I'd like it to look different.
    Is there a better way to to this popup effect or is there a way t omake the popup look like a popup and not a text field?
    All help gratefully received,
    Thanks in advance.

    I'mnot sure what you mean by shading exactly, but you can set up a text field so that it doesn't have an inset border. An alternative is to use a button to display the text. Buttons are more flexible since you can set a button icon to be anything that can appear on a PDF page (text, images, vector graphics). For a sample, see: https://acrobat.com/#d=aP-2xL45pM57xVkT6d6fSg
    Also, if you use a text field, set it's default value to the text you want to display so that the field won't get blanked if the form is reset. You don't have to worry about this when using buttons.

  • Add a menu item in context menu at Sales Quotation

    How can I add a menu item in context menu at WH column in sales quotation screen? To access to the context menu, locate an active quotation and right click at an active WH column and a context menu will be shown.

    Hi Cherine,
    You can use the RightClickEvent to add your context menu depending on the position of the right click.
    You have a sample explaining how to use the RightClickEvent in the SDK UI Samples called 22.RightClick.
    Hope it helps
    Trinidad.

  • Disable Right Mouse Button Popup Menu

    How can I disable right mouse button popup menu for a LabVIEW control to use
    my custom popup menu?
    Alessio Colzi

    Sorry for the stupid question but I forgot that option.
    Thank you Gorka
    Alessio
    "Gorka Larrea" ha scritto nel messaggio
    news:[email protected]..
    > Not sure if can be made under LV 6 but under LV 5.0 you can disable
    > runtime popup menu for all the vi under VI setup right clicking the
    > icon in the right part of the front panel.
    >
    > Another option is to put a transparent decoration over your control,
    > to avoid right clicking.
    >
    > Hope this helps

  • Customizing the right button popup menu?

    I was wondering if anyone knows of a way to customize the right click popup menu in/for Labview.
    I am build a vi with a graph on which you can right click, bring up a menu, select an item, and the graph will display a cursor at that location with the label you selected from the right click popup menu.
    I would be grateful for any insight you might have into this.

    Hi,
    I've a toolkit for this. It draws popupmenu's (at least on
    Windows95,98,NT,2000).
    The trigger can be anything (it's a boolean), so if you can catch the right
    mouse button (using the events structure), you can create a popup menu above
    it.
    Sorry, I can't mail it to you, because of the no.email... Drop me a mail,
    and I'll send it to you.
    Regards,
    Wiebe.
    "Tere" wrote in message
    news:[email protected]..
    > I was wondering if anyone knows of a way to customize the right click
    > popup menu in/for Labview.
    >
    > I am build a vi with a graph on which you can right click, bring up a
    > menu, select an item, and the graph will display a cursor at that
    > location with the label you selected from the right clic
    k popup menu.
    >
    > I would be grateful for any insight you might have into this.

  • SHOWING POPUP MENU BY PRESSING BUTTON?

    Hello OTN members,
    The situation is as follows:
    On a Form i have Button, and by pressing the button it
    should bring up the popup menu ?
    Is the above condition possible by right clicking the
    button.
    Thanks for any suggestions.
    Sailesh
    null

    Sailesh (guest) wrote:
    : Hello OTN members,
    : The situation is as follows:
    : On a Form i have Button, and by pressing the button it
    : should bring up the popup menu ?
    : Is the above condition possible by right clicking the
    : button.
    : Thanks for any suggestions.
    : Sailesh
    Hi,
    You can have a popup menu attached to a button. So right click
    on that button will give you the pop up menu. (in property sheet
    of button, attach popup menu under functional section).
    I am not sure about bringing up a popup menu through
    when-button-pressed of a button. (unless you have a different
    canvas, containing your pop up menu...)
    Hope this can help.
    Thanks,
    Srinivasa Rao
    null

  • Explorer freezes after invoking popup menu from applet

    i have a problem, which i cannot find an explenation to.
    i have an applet which user can open a popup menu from.
    afterwards, when trying to move to different URL which will open new applet the browser freezes.
    any idea?

    By any chance is the popup window still visible when you try to move to the other page?

  • How can I add custom right-click-menu to column headers in JTable?

    Can anyone point me to a topic on how to customize a popup menu for column headers in JTable? Specifically, I want to add things like "auto-size column" and "hide column".
    Thanks,
    Matt

    Right-click on your table.  Then go to Advanced->Runtime Shortcut Menu->Edit.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How can I add more than one same spry menu (eg. collapsible menu)  with in different styles (font size, color, background, etc) on current page?

    How can I add more than one same spry menu (eg. collapsible menu)  with in different styles (font size, color, background, etc) on current page?

    Hi Nancy,
    This screenshot was only for imagination. A part of the code (not all) is below.  In the code there are some background images but they are not seem in live mode.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    <link href="css/my_site.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css"/>
    <link href="SpryAssets/SpryCollapsiblePanel.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryCollapsiblePanel.js" type="text/javascript"></script>
    <style>
    #CollapsiblePanel1 .CollapsiblePanelOpen .CollapsiblePanelTab {
        background-color: #003366;
        font-size: 18px;
        line-height: 52px;
        color: #FFF;
    #CollapsiblePanel1 .CollapsiblePanelTabHover .CollapsiblePanelTab {
        background-color: #003366;
        color: #FFF;
        text-shadow: 1px 1px #000;
        font-weight: bold;
        line-height: 52px;
    #CollapsiblePanel1 .CollapsiblePanelClosed .CollapsiblePanelTab  {
        background-color: #C3CFDF;
        border-radius: 5px 5px 0px 0px;
        color: #999
        text-shadow: 1px 1px #000;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: bold;
        line-height: 52px;
    #CollapsiblePanel2 .CollapsiblePanelOpen .CollapsiblePanelTab {
        background-image: url(images/international.jpg);
        background-repeat: no-repeat;
        font-size: 18px;
        line-height: 52px;
        color: #FFF;
    #CollapsiblePanel2 .CollapsiblePanelTabHover .CollapsiblePanelTab {
        background-color: #003366;
        color: #FFF;
        text-shadow: 1px 1px #000;
        font-weight: bold;
        background-image: url(images/TR_Col-WEB.png);
        background-repeat: no-repeat;
        line-height: 52px;
    #CollapsiblePanel2 .CollapsiblePanelClosed .CollapsiblePanelTab  {
        background-color: #C3CFDF;
        border-radius: 5px 5px 0px 0px;
        color: #999
        text-shadow: 1px 1px #000;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: bold;
        background-image: url(images/TR_Gray2-WEB.png);
        background-repeat: no-repeat;
        line-height: 52px;
    #CollapsiblePanel2 .CollapsiblePanelContent {
        background-color: blue;
    #CollapsiblePanel3 .CollapsiblePanelOpen .CollapsiblePanelTab {
        background-image: url(images/TR_Col-WEB.png);
        background-repeat: no-repeat;
        font-size: 18px;
        line-height: 52px;
        color: #FFF;
    #CollapsiblePanel3 .CollapsiblePanelTabHover .CollapsiblePanelTab {
        background-color: #003366;
        color: #FFF;
        text-shadow: 1px 1px #000;
        font-weight: bold;
        background-image: url(images/TR_Col-WEB.png);
        background-repeat: no-repeat;
        line-height: 52px;
    #CollapsiblePanel3 .CollapsiblePanelClosed .CollapsiblePanelTab  {
        background-color: #C3CFDF;
        border-radius: 5px 5px 0px 0px;
        color: #999
        text-shadow: 1px 1px #000;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: bold;
        background-image: url(images/TR_Gray2-WEB.png);
        background-repeat: no-repeat;
        line-height: 52px;
    #CollapsiblePanel4 .CollapsiblePanelOpen .CollapsiblePanelTab {
        background-image: url(images/TR_Col-WEB.png);
        background-repeat: no-repeat;
        font-size: 18px;
        line-height: 52px;
        color: #FFF;
    #CollapsiblePanel4 .CollapsiblePanelTabHover .CollapsiblePanelTab {
        background-color: #003366;
        color: #FFF;
        text-shadow: 1px 1px #000;
        font-weight: bold;
        background-image: url(images/TR_Col-WEB.png);
        background-repeat: no-repeat;
        line-height: 52px;
    #CollapsiblePanel4 .CollapsiblePanelClosed .CollapsiblePanelTab  {
        background-color: #C3CFDF;
        border-radius: 5px 5px 0px 0px;
        color: #999
        text-shadow: 1px 1px #000;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: bold;
        background-image: url(images/TR_Gray2-WEB.png);
        background-repeat: no-repeat;
        line-height: 52px;
    #CollapsiblePanel5 .CollapsiblePanelOpen .CollapsiblePanelTab {
        background-image: url(images/TR_Col-WEB.png);
        background-repeat: no-repeat;
        font-size: 18px;
        line-height: 52px;
        color: #FFF;
    #CollapsiblePanel5 .CollapsiblePanelTabHover .CollapsiblePanelTab {
        background-color: #003366;
        color: #FFF;
        text-shadow: 1px 1px #000;
        font-weight: bold;
        background-image: url(images/TR_Col-WEB.png);
        background-repeat: no-repeat;
        line-height: 52px;
    #CollapsiblePanel5 .CollapsiblePanelClosed .CollapsiblePanelTab  {
        background-color: #C3CFDF;
        border-radius: 5px 5px 0px 0px;
        color: #999
        text-shadow: 1px 1px #000;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: bold;
        background-image: url(images/TR_Gray2-WEB.png);
        background-repeat: no-repeat;
        line-height: 52px;
    </style>

  • Can I add more than one horizontal separator to the PanelUI (the new panel menu)

    Steps:
    1. Click the new panel menu button (hamburger)
    2. Click Customize
    3. On the left, drag "Separator (for panel menu)" from "Additional Tools and Features" to the panel on the right. A horizontal separator appears. "Separator (for panel menu)" no longer appears in the "Additional Tools and Features".
    I can add many "Separator" (vertical separator) to toolbars, but it appears I can only add one "Separator (for panel menu)" (horizontal separator) to the panel.
    I would like to add additional horizontal separators to the panel. Is there a way to do that?
    Firefox version: 33.1.1

    Yes, I do have Classic Theme Restorer installed (I love it!), but missed these customization nuances. After reading more threads, searching, and reviewing prefs.js, I saw the ctraddon_puib_separator.
    A while back, I had problems with vertical separators, specifically with AIOS, and had also looked for horizontal separators. The solution at that time was customizableui-special-separator{d}, where d was a unique digit.
    I always found the customization menu to be difficult to use, especially if a buttons addon was installed, mainly because it was unordered. I recently installed Sort and Search Customization Dialog and it has made a world of difference.
    I just started changing my FF ways and using the new menu. I wanted to divide up the menu into sections or activities. On top I'd have a row of user tools like history, bookmarks, then a divider and have a row of customization tools, another divider and development tools. The divider which provides the visual separation and grouping is really nice. I hope FF adopts them. I'll take my questions and feedback to the Classic Theme Restorer Forum thread shown on the addon page:
    https://addons.mozilla.org/en-US/firefox/addon/classicthemerestorer
    Thank you.

  • Can I add more than one menu to a master page?

    I have been struggling with this and can't find any tutorials. I am trying to add another menu to a separate page that only shows up on one group of pages. The problem I am having is the menu titles from the one that is already up comes on and I can't figure out how to get multiple menus on one page. Is there anyone that can help? I have created a menu from scratch using some different methods, but I would like to be able to not have to do that. Thanks!

    Hi Carlton,
    The automated Menu in Muse picks up all the pages that have show in the Menu option enabled. So, if you want a menu that only shows a group of pages, you will need to use a manual menu in Muse, you will not be able to use the automated one.
    - Abhishek Maurya

Maybe you are looking for

  • FI Year End Closing

    hi... pls tell me t.code for following List for FI Year End Closing   1 Execute Report for InterCompany Activity & Journal Entries   2 Open posting period for next yr   3 Run Business Area's Assignment report.   4 Review list of recurring journal ent

  • SQL Query CASE statement using two fields

    Hi, I have two fields. One is called rescategory1, the other is called rescategory2. I'm not sure if its a CASE statement I need or some sort of WHERE clause but I want to create a query that does the following or something similar: CASE rescategory2

  • O.T. Food For Thought

    Not something I would have thought any forum members are guilty of,but it does make you wonder how many adults of the future will know what they looked like when they were little : 'In the U.K., the information security company Symantec commissioned

  • How do i change dates to dd/mm/yyyy ?

    Computer i mac set to dd/mm but getting mm/dd on Australian websites that use the usual australian dd/mm

  • I don't like firefox 7

    I was happy with firefox 3, it was simple to use and looked clean. I tried firefox 4 at a friend and didn't like it so I never updated. But then you didn't give me a choice anymore and now I have firefox 7 and I don't like it all at, to the point whe