How to edit DW 8 pop-up menus in DW CS5?

Hello,
Yes, I understand about Spry menu bar in CS5 and will use it in the future for creating new pop-up menus.
However, I have already created many pop-up menus using DW 8 for  multiple web sites and standalone web pages - about 100 web pages total - for my employer.
Is it possible to edit these DW 8 pop-up menus from within DW CS5?
I did try the only instructions I found, which I thought were to choose ~ Deprecated from the Behaviors menu, and then choose the Pop-up menu. However, even when I have open a web page in CS5 containing an existing pop-up menu I created in DW 8, I do not see anything about Deprecated on the Behaviors menu.
I tried positioning my cursor on the URL and then also on a graphic item associated with the pop-up menu behavior I applied in DW 8 - still did not see "Deprecated" in the Behaviors menu or how to select it. (Please note that my pop-up menus do not involve Fireworks MX in any way; they were created directly in DW 8 by applying the pop-up menu JavaScript behavior.)
What am I missing? How do I select "Deprecated" in the Behaviors menu?
Is there some other way - or any way at all - I can edit my pop-up menus previously created in 100+ web pages ? I really do not have time to re-do all of these web pages using Spry.
Please advise. Thanks!

Hello,  Thanks for the response. All of my web sites and standalone web pages are internal, behind the corporate firewall so I cannot provide you with links.
Recap: The pop-up menus I created in DW 8 work beautifully, seamlessly and were very easy to maintain in the earlier version of Dreamweaver. I have been using DW pop-up menus since 2004.
Goal: To update and edit these pop-up menus created in DW 8 - in DW CS5. Why? Because we have multiple websites and standalone web pages, 100+ web pages total, some with multiple pop-up menus on each page and it is not possible due to time limitations to re-code and re-develop all of these existing pages using the new Spry menu. We will use the Spry menu when we create new menus for new web pages in the future.
I have previously read here: http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WSc78c5058ca073340dcda9110b1f693f21-7ae 9a.html  that you choose ~ Deprecate from the Behaviors menu to update existing DW 8 pop-up menus in DW CS 5, but I do not have this option available to me - I do not see a "Deprecate" selection available when I select an existing DW 8 pop-up menu to edit in CS5. Perhaps I am doing something wrong? When I place my cursor on the pop-up menu items, and go to the Behaviors panel, I do not have a Deprecate option, and the pop-up menu actions are not available to select.
I am concerned that the only way it appears that I can edit the pop-up menus is to edit the HTML which is possible but messy, and defeats the reason for having DW in the first place. Otherwise, I guess we go back to using DW8 and don't use DW CS5 at all for our existing web pages. If that happens, management will certainly question "why did we pay $400 for a commercial license for a software product which does not allow us to edit our existing web pages?".
Here are two coding samples from my web pages with the links changed so that confidential information is non-identifiable:
Example 1
1. Link coding associated with the pop-up menu behavior (identifiable link information changed for this example):
<a href="examples1/index.html" name="link1" id="site-home" style="text-decoration:none" onmouseover="MM_showMenu(window.mm_menu_0112173011_0,152,-1,null,'link1')" onmouseout="MM_startTimeout();">Example link 1<img src="images/triangle-sm.gif" alt="pointer" width="5" height="6" style="margin-left:6px"/></a>
2. Associated coding in the <head> tag for this particular example:
<script language="JavaScript" type="text/javascript">
<!--
function mmLoadMenus() {
  if (window.mm_menu_0104100320_0) return;
  window.mm_menu_0112173011_0 = new Menu("root",165,24,"Verdana, Arial, Helvetica, sans-serif",11,"#000000","#FFFFFF","#99CCFF","#708EA8","left","middle",3,0,1000,-5,7,true ,true,true,3,false,false);
  mm_menu_0112173011_0.addMenuItem("Example link 1 home","location='examples1/index.html'");
  mm_menu_0112173011_0.addMenuItem("Page two","location='examples1/page2.html'");
  mm_menu_0112173011_0.addMenuItem("Page three","location='examples1/page3.html'");
   mm_menu_0112173011_0.hideOnMouseOut=true;
   mm_menu_0112173011_0.bgColor='#FFFFFF';
   mm_menu_0112173011_0.menuBorder=1;
   mm_menu_0112173011_0.menuLiteBgColor='#FFFFFF';
   mm_menu_0112173011_0.menuBorderBgColor='';
mm_menu_0112174423_0.writeMenus();
} // mmLoadMenus()
//-->
</script>
<script language="JavaScript" src="mm_menu.js" type="text/javascript"></script>
3. Of course, we load the menus in the first line after the open <body> tag:
<script language="JavaScript1.2">mmLoadMenus();</script>
The "mm_menu.js" file itself is located in the self-same directory/folder as the web page, so it loads properly and the pop-up menus function as expected.
Example 2
1. Link coding associated with the pop-up menu behavior (identifiable link information changed for this example):
<a href="javascript:void(0)" name="link5" id="link1" onclick="MM_showMenu(window.mm_menu_0203084229_0,-115,-40,null,'link5')" onmouseout="MM_startTimeout();">Reports</a>
2. Associated coding in the <head> tag for this particular example:
<script language="JavaScript" type="text/javaScript">
<!--
function mmLoadMenus() {
  if (window.mm_menu_0203084113_0) return;
window.mm_menu_0203091816_0 = new Menu("root",108,17,"Verdana, Arial, Helvetica, sans-serif",11,"#0000FF","#0000FF","#FFFFFF","#ECECEC","left","middle",3,0,1000,-5,7,true ,false,true,0,false,true);
  mm_menu_0203091816_0.addMenuItem("Industryreport1","location='link1.html'");
  mm_menu_0203091816_0.addMenuItem("Industryreport2","location='link2.html'");
  mm_menu_0203091816_0.addMenuItem("Industryreport3","location='link3.html'");
  mm_menu_0203091816_0.addMenuItem("Industryreport4","location='link4.html'");
  mm_menu_0203091816_0.addMenuItem("Industryreport5","location='link5.html'");
   mm_menu_0203091816_0.hideOnMouseOut=true;
   mm_menu_0203091816_0.bgColor='#FFFFFF';
   mm_menu_0203091816_0.menuBorder=1;
   mm_menu_0203091816_0.menuLiteBgColor='#FFFFFF';
   mm_menu_0203091816_0.menuBorderBgColor='#FFFFFF';
mm_menu_0203091816_0.writeMenus();
} // mmLoadMenus()
//-->
</script>
<script language="JavaScript" src="mm_menu.js"></script>
3. Of course, we load the menus in the first line after the open <body> tag:
<script language="JavaScript1.2">mmLoadMenus();</script>
The "mm_menu.js" file itself is located in the self-same directory/folder as the web page, so it loads properly and the pop-up menus function as expected.
-------End Code and examples-------
Please advise. Thanks.

Similar Messages

  • How to edit Time in POP Up menu?

    Hi guys...
    I am trying to use the Basic Numbers '09 template "employee schedule" which is on the first page when you open new file.
    Now I want to change the TOP UP menu from "stating 06:00 AM" to "9:00 AM" and have a lot more starting time. like 9:30 PM and 9:45 PM up to 05:00 PM.
    When I select the Timing CELL and go to inspector in "Cell format" I can remove them, but I can't add, if I try to add " 10:00 AM " then press enter or press tap, it will only type "10" in the box and that won't work!
    could you please have a look at the free template and help me... thanks a lot.

    You should be able to add new items to the end of the list and delete existing items. What you cannot do is sort them or add any in the middle of the list.
    When I hit the + to add a new item then I type "10:00 AM" (without the quotes) and hit enter, I get 10:00 AM. I don't know why that would not be working for you.
    If you change the popup menu, you really need to search this forum for other posts on the employee schedule template. The times in the popup are saved as date & time, not time only, and they have the date on which the popup was created. The formulas in the table will give you some massive time differences if some entries are old and others new. If you are basically deleting all the items on the list and adding your own and you do it all on the same day (not some today and some tomorrow), you'll be okay. Otherwise, you need to modify the formulas to remove the date difference.

  • Preview Pop-Up Menus with third-party Player for mac

    Hi, everyone,
    Does anyone have an idea, how i could preview my pop-up menus without burning and waisting a BD every time??
    I just downloaded two different free BluRay players for mac, they both dont seem to have the option to open a Pop-up menu. (I really wonder, why that is so, i cannot imagine that this is so hard to develop…)
    anyway, how do you guys do that?? is there any software out there that can do this?? I am at a point where i feel i would even pay for a software or get a windows software and run it via crossover, if nessesary...
    Please help, i really want to preview my BluRay before i burn it on disc.
    Thank you very much,
    Niki

    Two methods:
    I use Total Media Theater (5 or 6). It is not free, and I do not know if it is available for Mac. Popup menus and slideshow operation is the most challenging for emulators (which is what computer DVD/BD players are).
    Burn to a DVD+RW. This is essential as a test step to burn to some disk.

  • How to change the presets in pop-up menus (CS6 or CR 7, example Photo Filter) with arrow keys?

    How to change the presets in pop-up menus (CS6 or CR 7, example Photo Filter) with arrow keys an see at the same time the changes on the photo?
    It worked under Windows, now I use OS 10.8 and have to apply a preset with a click or Return button but after that the pop-up menu close so I have to open it once again to change a preset. Please help. Thank you!

    The filter panel is a shortcut for the content panel and it only effects the content of that window. So if you have a folder it will only see this as a folder and not with its content. (a Stack behaves about the same, being different in only counting the first file in the filter panel criteria but not what is in the stack itself)
    You have a view work arounds, first is use menu view / show items from subfolders (this can take some time especially if you have not used caching before on this content) and this builds visible thumbs for all content and that can be used for filtering.
    Or use the find command (Edit / find) and inhere specify the source and fill in the criteria include subfolders and this will give you the correct result.
    When you create a smart collection the find command also pops up given you the same opportunity to get the results in a collection, but since a collection is only a bunch of aliases referring to the originals you might be a bit careful with editing and deleting.

  • How do i get that little pop up menu with all the editing choices on it that i used to get?  Is there a way to get the editing box to pop up as I make a new event instead of editing an event after i just made it ??????

    How do i get that little pop up menu with all the editing choices on it that i used to get?  Is there a way to get the editing box to pop up as I make a new event instead of editing an event after i just made it ??????

    Michal,
    iCal Help is a good place to start. Here are a couple of examples:

  • How can I turn off hot link pop up menus in Safari, and anywhere else they appear? OS 10.7.4  thanks!!

    How can I turn off hot link pop up menus in Safari, and anywhere else they appear? OS 10.7.4  thanks!!

    Thanks, that's a great soluion for something else. but it doesn't solve this. these look like system pop up windows, and seem to arise spontaneously .. .. .. not always when hovering over a link. first thing I did when i fired up the this new computer's safari was turned off pop up windows.

  • How to edit drop down menus in Contribute?

    When I get to a page on my site with drop down (or jump) menus, there doesn't seem to be any way of editing these in Contribute. Anyone know how to do this?

    Hi,
         If you have used Spry widgets (like Menu bar widget), then, you can edit the menus within Contribute CS5 itself. But if you are using any other way like a script based or 'form action' then, within Contribute you cannot edit such menus. You can choose to edit such web pages in an external application (like Dreamweaver, Textpad, or Notepad) by clicking Ctrl+Shift+E, and the web page will be opened in that editor. You can make changes there, save it, and publish the web page in Contribute.
    Hope this helps.

  • How to use Russian Language in Pop-Up menus

    I am trying to generate a Russian Translation of a pop-up
    menu using the Arial font. Both graphic and html body work fine but
    the Javascript Pop-Ups generated from Fireworks produces a string
    of Question Marks.
    Can anyone advise me how to have Russian characters work in
    the Pop-Up menus?

    Hi!
    1. Get the Russian language package for ECC 6.0
    2. Run se38->RSCPINST (Note 42305 - RSCPINST (I18N configuration tool), add language RU and press Simulate
    3. Check the log - whether or not  Russian locale is installed on your server's operation system. If not - install and configure it
    4. add/change required instance profile parameters (transaction RZ10). Language key for Russian is R.
    5. Restart application server.
    6. Run se38->RSCPINST and press Activate. Check the log.
    7. Run transaction SMLT. Add RU language and choose supplemented language. Supplemented language can be selected once!
    8. Run import of the RU language (follow the instructions from the help.sap.com)
    9. Once the import is finished, check log, if everything is OK run Supplementation.
    10. After importing of the RU language, you must also import the language data in the Support Packages it you installed them before language.
    11. Use the Russian language by mention RU in a sapgui field when login
    Hope it will help. Please ask if something is not clear enough.
    If useful please reward points.
    Best regards, Elena

  • How do I have Blu-Ray pop up menus linked together if I'm using multiple timelines?

    I have a 6 timeline project that I put in pop up menus for.  Each timeline asks for it's own pop up menu to use.  The pop up menus seemed to need to be created with the multiple chapter option to work for me, I couldn't create stand alones and link them together because the timeline asks for ONE pop up menu associated with it.  I then created 6 separate pop up menus (each one ended up with about 3 pages) one for each timeline.  I tried to link POP UP MENU1  to POP UP MENU2 with a NEXT button at the end of the last page of POP UP MENU1.  When I drag the whip to link it to the proper pop up menu when I actually look at the button the link is the current pop up menu not the one I want it linked to, so I am unable to do this.  The pop up menus function properly on my Blu-Ray player- If I am viewing material from timeline 1, I can pull up POP UP MENU1 and arrow back and forth to the three pages on this, POP UP MENU2 functions the same way for timeline 2.  etc.
    Project Settings:
    Blue Ray
    720 X 480
    EncoreCS5
    Quad 4
    2.4 GHZ speed
    150 GB free space on drive
    NVIDIA GEFORCE 8500 card
    6 GB Ram

    First of all, the pop up menus can not be linked to each other.
    If you want, you can have more pages on a single pop up menu and link all your timelines or chapters to the buttons of the pages and then link that pop up menu with more number of pages to all of the timelines. In this way, you can have the option to navigate to any chapter of any timeline while any timeline is playling.
    Thanks,
    Ramesh.

  • Problems with blu-ray pop-up menus

    I made the mistake of tacking this question/problem onto another similar post, so here it is again for some:
    I got this error message near the end of the disc build:
    Blu-ray Error: "fatal error". Code: "6", Note: "Graphics buffer underflows.&#8232;- Failed to multiplex with maximum IG PTS: 54900000 (in 90kHz).
    The blu-ray project I am working on is an 87 min live concert with about 8 other much shorter timelines.  The main menu has 6 buttons with a motion background.  There are few submenus as well, but the problem came when I started making pop-up menus for the various timelines.
    This is the first project where I really had to explore the possibliltes and limitations of Encore's pop-up menus.  I burned a test disc with just a basic pop-up menu to see how the menu's opacity would look over the final video.  All the video assets were set to to transcode "Automatically".  All audio assets are blu-ray compliant Surround ac3's or 16-bit stereo WAV's so could be left as "Don't Transcode".  This disc burned perfectly.
    I then went through the pretty involved process of making a final version of the main pop-up menus.  The main concert's pop-up menu has 5 pages (including page 0).  There are specific pop-up menus for other timelines, but those have no more than 2 pages.  None of the menus have more than 10 buttons.
    I tried to burn the disc, and it came back with the error above.  After reading some other posts, I thought it was worth a try to delete the AuthorScriptHDMVSessions folder before starting a new burn since it was already filled with files from my test burn.  That didn't help.
    Any insight or recommendations would be greatly appreciated.
    Thanks.

    After countless tests and research, I finally have a successfully burned blu-ray with WORKING multi-page pop-up menus (that I am happy with).  Thank you to all the people who gave theoretical guidance and suggestions in emails and other posts.  There has been no shortage of oddities and obstacles to overcome when just trying to make a simple blu-ray.  Unfortunately,  I did not have the time to accurately pinpoint what was causing the original error message.  The project just needed to get done.
    The main pop-up menu has 4 pages, with 13 buttons on each page.  Only about 5 - 9 of the "buttons" on each page are actual buttons that link anywhere.  The other buttons on each page only serve as the remaining pieces of the menu's background and cannot be accessed on the final disc.  Totally ridiculous way to make the backgrounds for pop-up menus, but it works.
    Some of the other things I learned regarding pop-up menus + Encore misc:
    1.  If at all possible, totally create a menu .psd BEFORE bringing it into an Encore project.  Make the button order in the .psd what you want it to end up being in the end (bottom layer is button 1).  If you start editing and saving order after it has been brought in, Encore will almost always revert it back to some strange (possibly original) button order.  You will spend all your time re-routing button navigation and changing their numbers, only to find out later that Encore has changed it all back without notice.
    2.  As many people state, it is best to have Encore do as little thinking as possible.  All of my button groups originally had Text Layers within them with some fx applied.  I merged each text layer down into that button's background layer to essentially rasterize the text with the fx applied.  Each (+) button group therefore only had a higlight layer and a background layer.  After doing this for all the buttons, the .psd file size was greatly reduced.  Naturally I saved a copy before going through the merging process in case I ever had to go back and edit the text.
    3.  Originally the background for the pop-up menus were made from a rectangle cut-out of the background of the main menu.  This was the width of the frame and around 1/5 of the height.  I had changed the opacity to around 60%, and cut up the pieces to go with their respective buttons.  For the final disc, I just made a shape with the Rounded Rectangle Tool, and filled it with a solid colour.  It is probably only about half the size of the original pop-up menu's background.  I changed its opacity as well, but then merged it with a blank layer so Encore didn't have to think about the opacity setting.
    4.  I encoded all the video elements BEFORE they were brought into the project.  There are some issues with the way the file sizes are interpretted by Encore, but I won't trust it to encode anything again.
    5.  For some reason Encore wants to transcode 16-bit, 48.0 kHz .aiff files when making a blu-ray, but 16-bit, 48.0 kHz .wav files do NOT need trancoding (for both dvds and blu-rays).

  • Pop-Up Menus and active content errors - Help!

    I'm attempting to add pop-up menus to my navigation bar, to
    make my site more user-friendly, but to no avail:
    I've tried designing pop-up menus in Fireworks, then
    importing the html code in, but that gives me errors when I try to
    insert the bar. Then, I tried putting my menus in different layers,
    with a "show layer" behavior on the button, and a "hide layer"
    behavior attached to the roll-off of the layer, but my version of
    Dreamweaver won't attach a behavior to a layer.
    Then, I noticed the tech-note on this site for the fix to use
    pop-ups in a template, so I added pop-up menus directly to my
    navigational buttons using the wizard. So here's where my problem
    comes in. . .
    When I preview my page, it throws up an active content error,
    but will still run. I uploaded it to my remote server, but when I
    went to the url, no action takes place when I put my cursor over
    it. Anybody have any ideas on how to create a pop-up menu that
    won't throw up an active content error? I've seen them on plenty of
    websites before, but can't figure how to do them.
    Any light you could shed would be greatly appreciated!

    > I'm attempting to add pop-up menus to my navigation bar,
    to make my site
    > more
    > user-friendly, but to no avail:
    Sometimes, they make your site less user-friendly. So be
    careful.
    The DW/FW pop-up menus are usually something that should be
    avoided. They
    are very poorly thought out and implemented, and will likely
    cause you
    continuing problems. It's foolish to devote the time to them
    that could be
    more effectively be placed elsewhere, especially since there
    are better
    options that work right out of the box, so to speak. Please
    check the free
    and commercial options here -
    http://www.projectseven.com/.
    > Any light you could shed would be greatly appreciated!
    Don't use DW/FW pop-up menus.
    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
    ==================
    "Ally86" <[email protected]> wrote in
    message
    news:[email protected]...
    > I'm attempting to add pop-up menus to my navigation bar,
    to make my site
    > more
    > user-friendly, but to no avail:
    >
    > I've tried designing pop-up menus in Fireworks, then
    importing the html
    > code
    > in, but that gives me errors when I try to insert the
    bar. Then, I tried
    > putting my menus in different layers, with a "show
    layer" behavior on the
    > button, and a "hide layer" behavior attached to the
    roll-off of the layer,
    > but
    > my version of Dreamweaver won't attach a behavior to a
    layer.
    >
    > Then, I noticed the tech-note on this site for the fix
    to use pop-ups in a
    > template, so I added pop-up menus directly to my
    navigational buttons
    > using the
    > wizard. So here's where my problem comes in. . .
    >
    > When I preview my page, it throws up an active content
    error, but will
    > still
    > run. I uploaded it to my remote server, but when I went
    to the url, no
    > action
    > takes place when I put my cursor over it. Anybody have
    any ideas on how
    > to
    > create a pop-up menu that won't throw up an active
    content error? I've
    > seen
    > them on plenty of websites before, but can't figure how
    to do them.
    >
    > Any light you could shed would be greatly appreciated!
    >

  • How to edit and add a signature on a pdf file

    how to edit and insert signature on a pdf attachment
    Creating, Editing & Exporting PDFs

    First the PDF file has to be editable.
    Then it depends on whether you want to sign it with an annotation (Acrobat stamp), an Electronic Signature (a.k.a EchoSign) or a Digital Signature (Acrobat).
    If it's a Stamp then go to Sign Panel>Get others to Sign and then you can use the Place Signature button.
    If it's an Electronic Signature then after you finished your stamp then just follow the wizard that pops up when you click the Signed. Proceed to Send Powered by EchoSign
    If it's a Digital Signature then go to Sign Panel>Work with Certificates>Sign with Certificate and follow the wizard.

  • How to Edit html content of My First Days in ESS

    Hi All,
    My requirement is to change only the html content displayed in My first Days under Life and work event tab.
    Currently it shows content provided by sap.
    e.g ; it displays "Welcome to xyz_Company_name  "  and some dummy content.
    where as we want to customize it as per client requirement i.e. to  display client specific policies and     
    name etc.
    Please help to solve the problem.
    Thanks,
    Zaid

    s.r.e.e wrote:
    I am reading this html file in java class file and displaying the template as it is in jsf page, now when user clicks on edit button one pop up should be opened and entered data should be displayed at appropriate place in layout, on clicking clear content should be cleared.
    Can anyone help me how to write the logic to open a popup using html button instead of a4j:commandbutton in jsf and how can I bind the values to backing bean list without using a4j:repeat using normal html template
    I'm not sure you are going to get any binding happening without a lot of cajoling.
    The real question is why are you trying to write (hardcode?) HTML in a Java class that needs to interact with JSF components?

  • Beyond Pop-Up Menus

    I recently generated a set of pulldown menus using
    dreamweaver 8 behaviors. I am currently trying to modify them.
    First I moved the onmouseover from the link to the table cell.
    During onmousover I want the table cell to turn the same color as
    the pulldown menu (similar to the pulldown menus on the adobe site
    above).
    Test Page
    http://www.triodisplay.com/company/about2.php
    I gave the cells ids and added some javascript. The first
    link (catalog) works correctly while the others don't during
    onMouseout.
    Here is the javascript I created to change the color of the
    cell.
    quote:
    function changeStyleById(id){
    if (document.getElementById)
    var nodeObj = document.getElementById(id)
    nodeObj.style.background = '#333333';
    function changeStyleBackById(id){
    if (menuid != 0) {
    var nodeObj = document.getElementById(id)
    nodeObj.style.background = '#B2B2B2';
    Here is the cell that calls the code.
    quote:
    <td align="left" id="1"
    onMouseOver="MM_showMenu(window.mm_menu_0425152551_0,-2,9,null,'image1',
    '2')" onMouseOut="MM_startTimeout('1');"> <a href="
    http://www.triodisplay.com/ps/ps.php"
    class="topnav"> <img src="testbutton/blank.gif" alt="design"
    name="image1" width="1" height="1" border="0" id="image1">Retail
    Design</a></td>
    Here is a link to the javascript
    http://www.triodisplay.com/company/mm_menu.js
    The problem I am having is onMouseOut="MM_startTimeout('1') .
    MM_startTimeout calls a function and I've inserted a variable for
    it to pass which is equal to the id. The problem is the mm_menu.js
    is a list of functions and I can't figure out how to get my
    variable to my new function.
    I am looking for either an easy way to pass the variable or
    if someone has a suggestions to change the color of the cell with
    the pulldown menus I'd appreciate it.
    Thanks in advance.

    > First I moved the onmouseover from the link to the table
    cell
    Bad choice. So was your selection of the DW pop-up menus.
    Here's what the
    person who adapted that code for Macromedia has to say about
    the method you
    are using -
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    Could you possibly consider one of the several other REALLY
    GOOD ways to do
    this? By the way, these good ways would allow you to do what
    you want
    easily....
    Check the uberlink and MacFly tutorials at PVII -
    http://www.projectseven.com/
    and the Navbar tutorial/articles at Thierry's place
    http://tjkdesign.com/articles/dropdown/
    Or this one (more recent article):
    http://tjkdesign.com/articles/Pure_CSS_Dropdown_Menus.asp
    Or to get it done fast, go here -
    http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm
    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
    ==================
    "cczernia1" <[email protected]> wrote in
    message
    news:[email protected]...
    >I recently generated a set of pulldown menus using
    dreamweaver 8 behaviors.
    >I
    > am currently trying to modify them. First I moved the
    onmouseover from the
    > link
    > to the table cell. During onmousover I want the table
    cell to turn the
    > same
    > color as the pulldown menu (similar to the pulldown
    menus on the adobe
    > site
    > above).
    >
    > Test Page
    >
    http://www.triodisplay.com/company/about2.php
    >
    > I gave the cells ids and added some javascript. The
    first link (catalog)
    > works
    > correctly while the others don't during onMouseout.
    >
    > Here is the javascript I created to change the color of
    the cell.
    >
    >
    quote:
    function changeStyleById(id){
    > if (document.getElementById)
    > {
    > var nodeObj = document.getElementById(id)
    > nodeObj.style.background = '#333333';
    > }
    > }
    >
    > function changeStyleBackById(id){
    > if (menuid != 0) {
    > var nodeObj = document.getElementById(id)
    > nodeObj.style.background = '#B2B2B2';
    > }
    >
    > }
    >
    > Here is the cell that cell that calls the code.
    >
    >
    quote:
    <td align="left" id="1"
    >
    onMouseOver="MM_showMenu(window.mm_menu_0425152551_0,-2,9,null,'image1',
    > '2')"
    > onMouseOut="MM_startTimeout('1');"> <a
    > href="
    http://www.triodisplay.com/ps/ps.php"
    class="topnav"> <img
    > src="testbutton/blank.gif" alt="design" name="image1"
    width="1" height="1"
    > border="0" id="image1">Retail
    Design</a></td>
    >
    >
    > Here is a link to the javascript
    >
    http://www.triodisplay.com/company/mm_menu.js
    >
    > The problem I am having is
    onMouseOut="MM_startTimeout('1') .
    > MM_startTimeout
    > calls a function and I've inserted a variable for it to
    pass which is
    > equal to
    > the id. The problem is the mm_menu.js is a list of
    functions and I can't
    > figure
    > out how to get my variable to my new function.
    >
    > I am looking for either an easy way to pass the variable
    or if someone has
    > a
    > suggestions to change the color of the cell with the
    pulldown menus I'd
    > appreciate it.
    >
    > Thanks in advance.
    >

  • How to edit TCURC values in BI

    Can someone tell me how to edit values in TCURC table?
    (I'm having issues importing it from R3 and I need a quick fix in mean time)
    Thanks

    Just a bit more explanation on what Ravi posted:
    You should go to Customizing transaction SPRO and select the following path:
    SAP NetWeaver   ->General Settings->Currencies->Check currency codes
    That way you can also access the relevant documentation.
    This leads you to the view V_CURC.
    In there you can take advantage of the cross system table viewer to compare with the settings in your R/3 system. To do so select from the menu:
    Utilities->Adjustment (in Change mode)
    Utilities->Comparison (in Display mode)
    Pick the RFC connection to connect to your R/3 system. Use the Filter icon to hide identical records. Select all (Edit->Select->...) and click on Adjust. Copy all and go back confirming the pop up with Yes. That way you can copy over values from R/3 to BW.
    *Note: This tool works on all views that exist in both systems and you can compare and copy data easily.
    Best,
    Ralf

Maybe you are looking for

  • CRM Open Interface Tables for Integrating with CRM

    HI all, We are evaluating integration with CRM from Telco Billing system. The TRMs of CRM talk about using some published open Interface table in CRM. I could not find any TRM or User manual where I can get this info. Also need to know API for CRM fo

  • Questions regarding risk register, resource pool, reports and KPI

    I am going on a requirement gathering activity today about a new MS Project Server project. I have knowledge of SharePoint but my knowledge of Project Server is very limited. Following will be my topic of discussion with client. Can you please tell m

  • BSAS - BSEG for cleared document

    Hi financial abapers, in table BSAD we have clearing documents for the goods/invoice received account. In field AUGBL is the doument no. cleared. But I do not see the fully specified key BUKRS BELNR GJAHR BUZEI for the cleared item. How to referce it

  • Erase option in Disc Utility

    I have an external hard drive that contains a "clone" of my internal hard drive and I need to return this short lived external drive and I do not want any "hacker" to be able to use/see/hack any of my programs or picture files. The erase option in Le

  • [SOLVED] Custom udev rule only working when triggered manually

    I have the following rule created for a USB gamecube controller adapter: SUBSYSTEMS=="usb", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="0337", MODE="0666" This rule only takes effect when I run udevadm trigger AFTER my device is plugged in. If I then