Limit on Pop-Up Menu Items?

I'm using Dreamweaver 8.02 to create a pop-up menu using the
Show Pop-Up Menu behavior. (Vertical menu, sub menus fly out to the
right.). If I add more than 9 items to a submenu, the code for
those items will be created and the script will work, but when I
edit the behavior again, only the first 9 items are accessible in
the Content tab. The script will continue to function until the
behavior is edited, then the code for anything above 9 will be
removed.
Are menu items limited to 9, or does Dreamweaver just not
recognize the code once it goes from mm_menu_1108150729_0_1_9 to
mm_menu_1108150729_0_1_10?
I upgraded to version 8.02, but that had no effect.

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
And by the way, spending a little to stay out of serious
trouble is not a
bad idea.
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
==================
"La. Websmith" <[email protected]> wrote in
message
news:ejdd5f$fc1$[email protected]..
> Of course. Just so long as they fit within my budget of
$0.
>
>
> This is a very bad choice. Those menus are deeply flawed
and will be
> nothing but trouble for you. Would you consider other
much nicer
> alternatives?
>
>
>

Similar Messages

  • Pop-up menu items

    Hello, I am new to Spry. I created a navigation bar with
    pop-up (or drop-down) menu items going across the top of my web
    page. I cannot get the items to drop-down. They are visible without
    the mouse hovering and I need them to not be visible until the
    mouse hovers over the main menu item. Hope this makes sense and I
    am sure a savvy user will be able to help me quickly!!
    Thanks,
    Jody

    Hi, yes I modified the CSS in many ways, I think that's my
    problem. I just learned how to do this last night, so it's all new.
    Help??!! Thanks.

  • Pop up menu reference help

    I am new to numbers and am trying to develop a logbook to track my flight time.  I need to be able to keep running totals of total time and by aircra type.  I have a number of questions, but I think this is the one to start with:
    i would like to have a pop-up menu (drop down list) to be able to select which aircraft type in a cell.  I want the pop-up menu items to be based on what is typed into a different cell (reference cell).
    i would like whatever txt is typed in a range of cells to be what is available as a pop up in a different range of cells.
    In table 1 if I type C182t in cell b1 thru b10, I want C182t to be available as a pop-up or drop down menu in table2, f2-f200.
    i.e.
    table 1, b1 I type C182t
    table 2 (f2 thru f200) have C182t in pop up/dropdown
    Next In table 1, b2 I type PA28R
    table2 (F2 thru f200) now have C182t and PA28R as choices
    and so on....
    thanks in advance nce for the help
    anthony

    In table 1 if I type C182t in cell b1 thru b10, I want C182t to be available as a pop-up or drop down menu in table2, f2-f200
    Inspired by quinn's script, here is a specific AppleScript solution to this problem.
    Given a first table named 'Aircraft Types', with C182 in B1 and PA28r in B2:
    C182t
    PA28r
    And a 'Table 2' like this:
    A
    B
    C
    D
    E
    F
    PA28r
    C182t
    PA30
    PA28r
    PA30
    C182t
    You can copy-paste this this script into Script Editor and run it to populate column F with Pop-Up Menu containing the choices from 'Table 1'.  Whenever you add an item to 'Table 1' just one-click will update the Pop-Ups.  (It's not fully automatic the way it can be in Excel, but it's just one click. No need to get involved in the details of the script... unless you want to.).
    --change to match where popup values are listed:
    property source : {sht:"Sheet 1", tbl:"Aircraft Types", col:"B"}
    --change to match range where you want the Popup Menu cells:
    property target : {sht:"Sheet 1", tbl:"Table 2", col:"F"}
    property guiDelay : 0.15 -- may need to increase on your machine
    tell application "Numbers" to tell front document
      tell sheet (source's sht) to tell table (source's tbl)
      set the selection range to first cell -- put focus on table to sort
      sort by column (source's col) direction ascending -- omit if want orginal order
      set popSrcRng to my makeBodyRng(source's sht, source's tbl, source's col)
      set popSrcRng's format to pop up menu
      set selection range to popSrcRng's last cell --put 'first cell' if want default to be first value,etc.
      my copyPaste("c")
      set column (source's col)'s format to text -- restore format so can add new items as needed
      end tell
      tell sheet (target's sht) to tell table (target's tbl)
      set range (target's col)'s format to text -- clear any existing popups
      set selection range to my makeBodyRng(target's sht, target's tbl, target's col)
      my copyPaste("v")
      end tell
    end tell
    to makeBodyRng(theSht, theTable, theCol) -- builds the range for just the body cells in a column
      tell application "Numbers" to tell front document's sheet theSht's table theTable
      set theRange to range ((column theCol's cell (header row count + 1)'s name) & ¬
      ":" & (column theCol's cell (row count - footer row count)'s name))
      end tell
    end makeBodyRng
    to copyPaste(k)
      activate application "Numbers"
      delay guiDelay --gives user interface a chance to catch up
      tell application "System Events" to keystroke k using command down
    end copyPaste
    Be sure to change the values in the property statements (within the quotes) if your tables have different names, are on a different sheet, or if you want the Pop-Ups in a different column.  And, of course, make sure it runs the way you want on a test document before using it with your real data.
    SG
    P.S.  quinn, note that you can get AppleScript to indent properly on the forum by clicking 'html' and removing the minus sign wherever you see something with this pattern:  text-indent: -39.3px.  (The number will vary; just delete the - wherever you see it). Then click 'Show Full Editor' upper right to return to the normal view. A little bit of a pain, but it goes quickly, and does the trick until they fix whatever bug is inserting those minus signs.

  • Pop up menu with rollover images?

    I have created a standard pop up menu in behaviors... is it
    possible to have images appear as the pointer is rolled over the
    individual pop up menu items? or should I be using fireworks to
    create an advanced pop up menu?
    Many thanks for any help you can give me!
    John.

    >I have created a standard pop up menu in behaviors... is
    it possible to
    >have
    > images appear as the pointer is rolled over the
    individual pop up menu
    > items?
    Yes, look in behaviors
    > or should I be using fireworks to create an advanced pop
    up menu?
    NEVER! use fireworks to generate code. You'r just asking for
    trouble down
    the line.

  • Pop-up blocker: why is the "show the blocked pop-up" menu missing in the options?

    There used to be the "show the blocked pop-up" menu item, whenever a pop-up is blocked by the pop-up blocker, I cannot see that menu these days.
    Even in the pop-up blocker help entry, the menu item is in parentheses. Does it mean that sometimes the item would show up and sometimes don't?
    What happened to this feature? I really loved this one, and it was one of the main reasons I started to use Firefox instead of IE.
    Is there any way to enable this in about:config or something?

    Thanks for your reply to this question. I believe that "show the blocked pop-up" ''was'' an option in FireFox's built-in popup blocker. As the OP mentioned, it is listed parenthetically on the [[Pop-Up Blocker Help Page|Pop-Up Blocker Help Page]]. Also, I don't run much in the way of add-ons and extensions, and no extensions were disabled when I updated this morning, but nonetheless the option seems to have disappeared. Since this problem doesn't have many "me toos," maybe it only happens under specific circumstances?

  • Pop up description on menu items; how to change the text

    When hovering over my manually created menu items a pop up appears displaying the target html page. How can I turn this off or change the text to a description of the page?
    www.FlyWranglersTV.com
    DPTom

    Bonjour,
    How to turn off the tooltip:
    http://discussions.apple.com/message.jspa?messageID=7050854#7050854

  • Is there a formula I can use to link a choice from pop-up menu to a $ amount in adjacent cell?  i.e. if Item 1 is chosen, adjacent cell populates $125.  if Item 2 is chosen, adjacent cell populates $250.

    is there a formula I can use to link a choice from pop-up menu to a $ amount in adjacent cell?  i.e. if Item 1 is chosen, adjacent cell populates $125.  if Item 2 is chosen, adjacent cell populates $250. it seems like this must be possible.  Help please!

    Hi Gabe,
    You could use an IF statement in the second cell.
    Popup in column B, two items: "This", That" (without the quotes)
    Formula in same row of column C
    Format the cell in column C as currency.
    If there are more than two items in the popup menu, it's better to use a lookup table containing the same list as the popup in column A, with the corresponding values in column B:
    C5: =LOOKUP(B,List :: $A,List :: $B)
    Regards,
    Barry

  • Keyboard shortcut to open a cells pop-up menu and select from list of options.

    I guessed Option-Return would be the shortcut from this, as it typically lets you edit a cells contents, but no. Read the keyboard Shortcuts list in Numbers>Help but didn't see anything.

    Hi ts,
    Thanks for drawing my attention to this! Let's add some missing detail…
    While "you just press spacebar" to open the pop-up menu, that won't select a menu item.
    After you've opened the menu, 'you could press the first letter' of an entry, ( 'like every other pop-up list on Earth,') or you could press the down arrow to step down the list (and the up arrow to step up, if you went beyond the item you wanted to choose).
    And you can change your mind; the menu will stay open until you confirm your choice (by pressing the space bar again, OR by pressing return OR by pressing enter).
    Note that pressing the first letter will select the 'smallest' item name beginning with that letter. To move to another item name starting with that letter, you'll need to use the up or down arrow key (or the mouse).
    Thanks again for posting. With luck, WideEyedPupil will still be monitoring this discussion, and will see these posts.
    Regards,
    Barry

  • Strange Problem with 'Show Pop Up Menu"

    Hello - I'm hoping someone can help me. I am using a template
    to create multiple pages for a video library. The first two
    templates worked like a charm. The third and fourth are giving us
    trouble.
    We essentially create drop down menu navigation for these
    pages via the template. There are many menu items in the drop down.
    Dreamweaver is now not saving our work as we update the pop
    up menus on the templates. Can someone tell me if they've
    experienced a similar problem? A major project hinges on this
    working properly, and its not at this point.

    The DW pop-up menus are incompatible with Templates. I'm
    sorry that you
    have gotten yourself into this mess. You may also want to
    read this -
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "LindaASL" <[email protected]> wrote in
    message
    news:fjp5li$h27$[email protected]..
    > Hello - I'm hoping someone can help me. I am using a
    template to create
    > multiple pages for a video library. The first two
    templates worked like a
    > charm. The third and fourth are giving us trouble.
    >
    > We essentially create drop down menu navigation for
    these pages via the
    > template. There are many menu items in the drop down.
    >
    > Dreamweaver is now not saving our work as we update the
    pop up menus on
    > the
    > templates. Can someone tell me if they've experienced a
    similar problem? A
    > major project hinges on this working properly, and its
    not at this point.
    >

  • Smart way to auto update pop-up menu in nav bar?

    Smart way to keep updating pop-up menu in Nav bar ?
    I created a template in DW 8. It is used to generate many
    other pages for the site. only the page content region is editable.
    There is a nav bar in the template. Some buttons of the nav bar
    display pop-up menu when MouseOver . Those pop-up menu need to be
    changed from time to time. What is the best way to automatically
    update the pop-up menu in those templated-generated files, using
    template (I tried to define the nav bar as editable region,
    modified the pop-ups and saved the template. I got a lots of
    unexpected problems, DW8 even crashed), using libray items or
    something else? I am a relatively new DW developer. Much appreciate
    if someone could help.

    If the navigation is in a non-editable region of the
    template, then changes
    to it will propagate automatically to all child pages - are
    you not seeing
    that happen?
    > I tried to define the nav bar as editable region
    You wouldn't usually want to do that.
    > I got a lots of unexpected problems, DW8 even
    > crashed
    You must have made other errors. Doing something like this
    would surely not
    crash DW.
    The only problem with having the navigation in the
    non-editable region of
    the template is that a change to it will touch *every* file
    in the site,
    each of which must then be uploaded again. To solve this
    problem you can
    use server-side includes for the navigation. Then you would
    make your
    change to the include file, upload it, and all pages would
    reflect that
    change.
    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
    ==================
    "lakeleman" <[email protected]> wrote in
    message
    news:[email protected]...
    >
    Smart way to keep updating pop-up menu in Nav bar ?
    > I created a template in DW 8. It is used to generate
    many other pages
    > for
    > the site. only the page content region is editable.
    There is a nav bar in
    > the
    > template. Some buttons of the nav bar display pop-up
    menu when MouseOver .
    > Those pop-up menu need to be changed from time to time.
    What is the best
    > way to
    > automatically update the pop-up menu in those
    templated-generated files,
    > using
    > template (I tried to define the nav bar as editable
    region, modified the
    > pop-ups and saved the template. I got a lots of
    unexpected problems, DW8
    > even
    > crashed), using libray items or something else? I am a
    relatively new DW
    > developer. Much appreciate if someone could help.
    >

  • Troubleshooting pop-up menu in Dreamweaver 8

    Hello,
    I'm using Macromedia Dreamweaver 8.
    1. Created a pop-menu woith 6 items all linking to 6 different anchors in a different page.
    2. The first 5 items work fine - they link up to the 5 anchors in the destination page.
    3. The 6th item when clicked simply closes the pop-menu and does not link to the anchor in the destination page.
        (Completely checked the anchor name and also tested that anchor by linking from a different page).
    Please reply asap.Please see HTML Code below:
    thanks
    allen
    DSM Home.html
    <!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=iso-8859-1" />
    <title>Dying Seed Home</title>
    <link href="DS_Home/DS_Home.css" rel="stylesheet" type="text/css" media="all"/>
    <script language="JavaScript">
    <!--
    function mmLoadMenus() {
    if (window.mm_menu_0802105338_0) return;
    window.mm_menu_0802105338_0 =  new Menu("root",120,23,"Arial Unicode  MS",11,"#000000","#000000","#3399FF","#CCCCCC","le   ft","middle",3,2,1000,-5,7,true,false,true,10,false,false);
    mm_menu_0802105338_0.addMenuItem("History","window  .open('About Us/Dark About Us.html#HISTORY', '_parent');");
    mm_menu_0802105338_0.addMenuItem("Milestones","win  dow.open('About Us/Dark About Us.html#MILESTONES', '_parent');");
    mm_menu_0802105338_0.addMenuItem("Mission Sta   tement","window.open('About Us/Dark About Us.html#MISSIONSTAT',  '_parent');");
    mm_menu_0802105338_0.addMenuItem("Faith State   ment","window.open('About Us/Dark About Us.html#FAITHSTAT',  '_parent');");
    mm_menu_0802105338_0.addMenuItem("Finance","window  .open('About Us/Dark About Us.html#FINANCE', '_parent');");
    mm_menu_0802105338_0.addMenuItem("Contact Us"  ,"window.open('About Us/Dark About Us.html#CONTACT', '_parent');");
    mm_menu_0802105338_0.fontWeight="bold";
    mm_menu_0802105338_0.hideOnMouseOut=true;
    mm_menu_0802105338_0.bgColor='#555555';
    mm_menu_0802105338_0.menuBorder=0;
    mm_menu_0802105338_0.menuLiteBgColor='#FFFFFF';
    mm_menu_0802105338_0.menuBorderBgColor='#777777';
    window.mm_menu_0803160751_0 = new Menu("root",172,23,"Arial Unicode  MS",11,"#000000","#000000","#3399FF","#CCCCCC","le   ft","middle",3,2,1000,-5,7,true,false,true,10,false,false);
    mm_menu_0803160751_0.addMenuItem("Administration",  "window.open('DS National/DS-National.html#ADMINS', '_parent');");
    mm_menu_0803160751_0.addMenuItem("Legacy","window.  open('DS National/DS-National.html#LEGACY', '_parent');");
    mm_menu_0803160751_0.addMenuItem("Departments","wi  ndow.open('DS National/DS-National.html#DEPTS', '_parent');");
    mm_menu_0803160751_0.addMenuItem("All India",  "window.open('DS National/DS-National.html#ALLINDIA', '_parent');");
    mm_menu_0803160751_0.addMenuItem("National Pr   omotion","window.open('DS National/DS-National.html#NATPROMO',  '_parent');");
    mm_menu_0803160751_0.addMenuItem("Dying Seed&   nbsp;Vision Institute","window.open('DS  National/DS-National.html#DSVI', '_parent');");
    mm_menu_0803160751_0.fontWeight="bold";
    mm_menu_0803160751_0.hideOnMouseOut=true;
    mm_menu_0803160751_0.bgColor='#555555';
    mm_menu_0803160751_0.menuBorder=0;
    mm_menu_0803160751_0.menuLiteBgColor='#FFFFFF';
    mm_menu_0803160751_0.menuBorderBgColor='#777777';
    window.mm_menu_0804102108_0 = new Menu("root",138,23,"Arial  Unicode MS",11,"#000000","#000000","#3399FF","#CCCCCC","le   ft","middle",3,2,1000,-5,7,true,false,true,10,true,false);
    mm_menu_0804102108_0.addMenuItem("Call &&amp;   nbsp;Vision","window.open('DS  International/DS-International.html#CALLVISN', '_parent');");
    mm_menu_0804102108_0.addMenuItem("Patrons &&a   mp;nbsp;Partners","window.open('DS  International/DS-International.html#PATPART', '_parent');");
    mm_menu_0804102108_0.addMenuItem("Overseas Mi   nistry","window.open('DS International/DS-International.html#OVERMISS',  '_parent');");
    mm_menu_0804102108_0.addMenuItem("Contact Us"  );
    mm_menu_0804102108_0.fontWeight="bold";
    mm_menu_0804102108_0.hideOnMouseOut=true;
    mm_menu_0804102108_0.bgColor='#555555';
    mm_menu_0804102108_0.menuBorder=0;
    mm_menu_0804102108_0.menuLiteBgColor='#FFFFFF';
    mm_menu_0804102108_0.menuBorderBgColor='#777777';
    mm_menu_0804102108_0.writeMenus();
    } // mmLoadMenus()
    function MM_initTimelines() { //v4.0
    //MM_initTimelines() Copyright 1997 Macromedia, Inc. All rights reserved.
    var ns = navigator.appName == "Netscape";
    var ns4 = (ns && parseInt(navigator.appVersion) == 4);
    var ns5 = (ns && parseInt(navigator.appVersion) > 4);
    var macIE5 = (navigator.platform ? (navigator.platform == "MacPPC") :  false) && (navigator.appName == "Microsoft Internet Explorer")  && (parseInt(navigator.appVersion) >= 4);
    document.MM_Time = new Array(1);
    document.MM_Time[0] = new Array(1);
    document.MM_Time["Timeline1"] = document.MM_Time[0];
    document.MM_Time[0].MM_Name = "Timeline1";
    document.MM_Time[0].fps = 15;
    document.MM_Time[0][0] = new String("sprite");
    document.MM_Time[0][0].slot = 1;
    if (ns4)
    document.MM_Time[0][0].obj = document["Layer2"];
    else if (ns5)
    document.MM_Time[0][0].obj = document.getElementById("Layer2");
    else
    document.MM_Time[0][0].obj = document.all ? document.all["Layer2"] : null;
    document.MM_Time[0][0].keyFrames = new Array(1, 15);
    document.MM_Time[0][0].values = new Array(5);
    if (ns5 || macIE5)
    document.MM_Time[0][0].values[0] = new Array("318px", "318px",  "318px", "318px", "318px", "318px", "318px", "318px", "317px", "317px",  "317px", "317px", "317px", "317px", "317px");
    else
    document.MM_Time[0][0].values[0] = new Array(318,318,318,318,318,318,318,318,317,317,317,  317,317,317,317);
    document.MM_Time[0][0].values[0].prop = "left";
    if (ns5 || macIE5)
    document.MM_Time[0][0].values[1] = new Array("78px", "78px",  "79px", "79px", "79px", "79px", "80px", "80px", "80px", "81px", "81px",  "81px", "81px", "82px", "82px");
    else
    document.MM_Time[0][0].values[1] = new Array(78,78,79,79,79,79,80,80,80,81,81,81,81,82,82  );
    document.MM_Time[0][0].values[1].prop = "top";
    if (!ns4) {
    document.MM_Time[0][0].values[0].prop2 = "style";
    document.MM_Time[0][0].values[1].prop2 = "style";
    if (ns5 || macIE5)
    document.MM_Time[0][0].values[2] = new Array("0px", "0px",  "0px", "0px", "0px", "0px", "0px", "0px", "0px", "0px", "0px", "0px",  "0px", "0px", "0px");
    else
    document.MM_Time[0][0].values[2] = new Array(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
    document.MM_Time[0][0].values[2].prop = "width";
    if (!ns4)
    document.MM_Time[0][0].values[2].prop2 = "style";
    if (ns5 || macIE5)
    document.MM_Time[0][0].values[3] = new Array("0px", "0px",  "0px", "0px", "0px", "0px", "0px", "0px", "0px", "0px", "0px", "0px",  "0px", "0px", "0px");
    else
    document.MM_Time[0][0].values[3] = new Array(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
    document.MM_Time[0][0].values[3].prop = "height";
    if (!ns4)
    document.MM_Time[0][0].values[3].prop2 = "style";
    document.MM_Time[0][0].values[4] = new Array("0","0");
    document.MM_Time[0][0].values[4].prop = "zIndex";
    if (!ns4)
    document.MM_Time[0][0].values[4].prop2 = "style";
    document.MM_Time[0].lastFrame = 15;
    for (i=0; i<document.MM_Time.length; i++) {
    document.MM_Time[i].ID = null;
    document.MM_Time[i].curFrame = 0;
    document.MM_Time[i].delay = 1000/document.MM_Time[i].fps;
    //-->
    </script>
    <script language="JavaScript" src="DS_Home/mm_menu.js"></script>
    </head>
    <body>
    <script language="JavaScript1.2">mmLoadMenus();</script>
    <h1 align="center"><img src="Images/Dark_Wheat banner.jpg"  alt="" name="WheatBanner" width="1085" height="230" id="WheatBanner"  /></h1>
    <div id="Layer1">
    <p align="center"><span class="verse1">Unless a grain of wheat falls into the
    earth and dies, it remains alone, but if it dies it bears much fruit. John
    12:24</span></p>
    </div>
    <div id="Layer2" width="50" align="center"><span class="welcome">Welcome to Dying
    Seed!</span> </div>
    <div id="Layer6" align="center">
    <p align="right" class="slogan">Dying Seed is carved in
    this stone: &lsquo;You gain by losing; you reap by sowing; you live by dying&rsquo;<br /><br />
    </p>
    </div>
    <div id="Layer12"><span class="slogan">.&hellip;.and when God&rsquo;s hand carves,
    never miss it!</span></div>
    <h1 align="center" class="slogan"> </h1>
    <div id="Layer7"><img src="Images/pinned-up2.jpg" width="200" height="262" alt="pics" /></div>
    <div id="Layer5">
    <table width="915" height="41" align="center">
    <tr>
    <th width="125" align="center" valign="bottom"  scope="col"><span class="menutxt"> <a href="#" name="link4"  id="link1" onmouseover="MM_showMenu(window.mm_menu_0802105338   _0,0,-148,null,'link4')" onmouseout="MM_startTimeout();">About
    Us</a></span></th>
    <th width="183" align="center" valign="bottom"  scope="col"><span class="menutxt"><a href="#" name="link5"  id="link2" onmouseover="MM_showMenu(window.mm_menu_0803160751   _0,0,-148,null,'link5')" onmouseout="MM_startTimeout();">DS
    National</a></span></th>
    <th width="209" align="center" valign="bottom"  scope="col"><span class="menutxt"><a href="#" name="link7"  id="link3" onmouseover="MM_showMenu(window.mm_menu_0804102108   _0,0,-98,null,'link7')" onmouseout="MM_startTimeout();">DS
    International </a></span></th>
    <th width="222" align="center" valign="bottom" scope="col"><span class="menutxt"><a href="#">Future
    Objectives </a></span></th>
    <th width="152" align="center" valign="bottom"  scope="col"><span class="menutxt"><a  href="#">Gallery</a></span></th>
    </tr>
    </table>
    </div>
    <div id="Layer9">
    <div align="left"><span class="style1">Ever wondered about  the grandeur of  simplicity?</span>       &nb   sp;    <span class="style1">See
    our <a href="About Us/Dark About Us.html#HISTORY"  target="_parent"  class="blinks">History</a></span></div>
    </div>
    <div id="Layer10"><span class="style1">Or known what He can  do with rugged perseverance?</span>   <span  class="style1">Stop
    by our <a href="About Us/Dark About Us.html#MISSIONSTAT" class="blinks">Mission</a></span></div>
    <div id="Layer11">
    <div align="left"><span class="style1">But to know what  God is yet to do?</span><span  class="style1">     &nbsp    ;        &    nbsp;       &nb    sp;       &nbsp   ;     Stay
    with <a href="About Us/Dark About Us.html#CONTACT" class="blinks">us</a></span></div>
    </div>
    </body>
    </html>

    Step away from the keyboard.
    Don't use those pop-up menus. They are really awful.
    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
    ==================
    "aebell" <[email protected]> wrote in
    message
    news:ern5k6$b$[email protected]..
    > Hello,
    >
    > Someone please help me..... I can't get the show-pop up
    menu to work in
    > IE browser. What do I do?

  • Pop-up menu trouble!

    I am learning to create a website using dreamweaver, fireworks and photoshop. I created a sample website using these tools. Initially I created a layout in photoshop followed by web slices in fireworks. Later I exported my work in dreamweaver to complete the website. I saved my layout as a template so that any changes get updated automatically in all pages. To add a rollover image menu, pop-up/drop-down menu in template, I switched back to fireworks within dreamweaver. I created rollover image menu successfully and even drop-down too. It worked fine in fireworks preview window. I finished my editing in fireworks and switched back to dreamweaver and updated the changes in template. when I previewed that template, the rollover and pop-up menu  worked fine on all menu item(on mouse over). when i clicked a menu item/page /link, it follows to the page correctly and rollover worked still  fine and smooth but pop-up menu failed as if i never created one. I tried reloading the page but it failed.
    Again I loaded a preview from template and it worked. when I click any menu, it failed. But the rollover works well. I tried to repeat my steps from beginning and the result is the same.
    I tried for preview from individual pages, no pop-up emerged. Later I observed that pop-up javascript is located in all pages but never works on execution. It works only in the template from which I created all other pages but it still fails on clicking other links in same template preview. Please help me. This stopped me from moving to next lessons.

    Please elaborate
    which version of Dreamweaver
    the location of the lessons that you are following
    a copy of the code that you have created
    This will place us on the same footing and enable us to help you.

  • Pop-up menu to list multiple time values (8:00 AM etc.) ?

    I was looking at the option of using a pop-up menu to select times (8:00 AM etc.) from to keep from having to enter all the times in my spreadsheet manually. Has anyone done this before and is there a download or widget for this? Unfortunately for me, I would need it to be in increments of 5 minutes starting from 7AM to 7PM or so, which would be a tremendous amount of parameters added to a traditional pop-up menu.
    Thanks for any input.

    T25 wrote:
    Thanks for the insight, it seems to make good sense to me with your process to create multiple pop-ups and/or sliders. Since I'm still new to iWork Numbers though, are the tables you illustrated in your reply saved in a separate spreadsheet to use as a reference for the pop-up in other, separate spreadsheets? Is that what LOOKUP is used for (to reference another sheet)?
    My invoice has a single cell for an "IN" time and another for an "OUT" time; all incorporated to a fairly "busy" invoice that can't accommodate any additional cells in those areas.
    Both tables are on the same sheet, but I placed them on separate tables on that sheet.
    They don't have to be on separate tables, and they don't have to be on the same sheet, but they do have to be in the same document, as Numbers does not provide for linking to separate documents/files.
    With the busy invoice in your case, you could place the popup and slider cells (two of each) on a separate table, and only the result cells on the same table as your invoice. The popups and sliders could go on the same table as the lookup array, but that table would then have to be both visible and unlocked.
    Placing the Lookup array on a separate table allows you to lock that table to prevent accidental changes to it. You can also easily hide the Lookup table by placing it behind the main table (your invoice), or on a second sheet in your document.
    Placed on the same table as the rest of the invoice, you can still hide it simply by hiding the two columns containing the lookup information.
    An alternate method, requiring no extra cells or tables would be to Use Insert Date and Time (in the Insert menu, or from the keyboard with shift-option-command-D ) to insert the date and time directly.
    There are some complications with this which might make it unusable, depending on how many people need to be trained and how well they take to training. Insert Date and Time starts with the assumption that what you really want to do is insert the date. Changing its mind takes a couple of extra steps that must be done immediately, and each time.
    1. Click on the cell to select it.
    2. Go Insert > Date and Time (or press shift-option-command-D )
    3. Before taking any other action, double click the cell (which will now be displaying the current date) to open a small dialogue.
    4. In the dialogue, use the popup menu to choose one of the Time only formats.
    5. Click outside the dialogue to dismiss it.
    The cell will now contain the current Date and Time value, and will display the current time.
    Note that the Time, when inserted this way, will be the time that the insertion was done, and won't be rounded to the nearer five minutes.
    You'll find a discussion of LOOKUP (and the two related functions, VLOOKUP and HLOOKUP in the iWork Formulas and Functions User Guide, and an excellent overview of Numbers (including explanation of the terms I've used above) in the Numbers '09 User Guide. Both can be downloaded using the menu items in the Help menu in Numbers. Both are recommended reading for new and old users of Numbers alike.
    Regards,
    Barry

  • Using COUNTIF formula using controlled data in cell pop-up menu

    I'm making a spread sheet that involves adding up the number of times a certain item occurs in a log. A pop-up menu is used in the cell to control the inputs of the log. I'm not sure how to go about using the COUNTIF function to count the number of times each item occurs. The "workout tracker" template in Numbers '09 does what I need to do when counting the "number of days exercised", but I don't understand how it was done. Can anyone explain this to me?
    My log table is: (Dashes denote spacing)
    Date---------Log Item-----Time
    01/03/09---Item 1-------9:00am
    02/03/09---Item 2-------12:15pm
    03/03/09---Item 3-------9:10am
    (you can only chose Item 1, 2 or 3 from a drop down list, you can't manually input anything else)
    I want to use a countif command for a table that is:
    -----------No. of Occurances
    Item 1-------1
    Item 2-------1
    Item 3-------1

    I'm guessing you are curious about the way they did COUNTIF and what "Indicator" is. If you unhide all columns in the Workouts table, you'll see a column D with the header "indicator". The reference to "Indicator" in the COUNTIF functions refers to the entire column. There is a fairly long formula in the cells of that column but, basically, it just populates it with 1-3 depending on what you pick in the Activity popup.

  • Using a conditional pop-up menu for creating an order form...

    I am trying to create an order form on Numbers (version 2.0.1) using my iPad. My idea is to create a pop-up menu that would contain a number of products (about 50 or so). I'd copy this pop-up menu on all the cells in the column under "Description". That part is no problem. BUT ... ideally when a product is selected from the pop-up menu, I would like for its price to automatically populate the corresponding cell under "Unit Price". Obviously the various products will have various prices. For example, I might have three products listed as "Assorted Miniatures" which cost $5 each; "Animal Pot" which costs $10; and "Geometric Pot" which costs $15. Can this be done???
    If and when that is accomplished, then I presume I can easily apply the basic formulas to get total amounts. All of this means that once completed the only thing I really need to do is select products and then all the pricing and total amounts are automatically listed and calculated. Can someone assist? I have a show coming up this weekend and I hope to fill out lots of order forms!!! :-)  Thank you!!!

    MicMac22,
    Here is my take. Lookup table as Wayne suggests.
    Popup menu is a great idea.
    description
    quant
    unit price
    total Amt
    Item 2
    $2.00
    Item 1
    $1.00
    My entry table would look like yours.
    item
    price
    item 1
    $1.00
    item 2
    $2.00
    item 3
    $3.00
    Table 2 is your lookup table.
    The formula in your entry table unit price is pasted into row 2 and copied down.
    IFERROR(OFFSET(Table 2::$A$1,MATCH(A2,item,0)−1,1,,),"")
    This says find the match of entry in A2 in item column in table 2 return the value in the column 1 over. If error return nothing ("").
    Will this work for you?
    Q

Maybe you are looking for