Problem with Fireworks pop up menu in DW

(I already posted this on the DW forum, but it's also about
FW, so may be someone here knows about this as well.)
Hi,
I am working on a page whose layout was created in Fireworks
and transferred to DW. After I transferred the page to DW and
created new ones from the template, I went back to edit my page in
FW. I created a couple of rollovers and pop up menus. After I made
these edits, I went back to DW and everything worked fine on the
template page, but my pop up menus did not transfer correctly to
the other pages. They appear in weird places (bottom of the page!)
and the styles pretty much disappeared as well.
Does someone know what could be the problem and how to fix
it? One of the things I noticed is that the menus' CSS file is only
completely visible on the template but not on the other pages. In
the template I can see all the styles applied in the file, but on
the other pages only the CSS title appears, not the styles applied
to the pages.
I am using FW and DW 8.
I need HELP!!!
Thanks for any information you can provide.
MS

> Does someone know what could be the problem and how to
fix it?
The general problem is that fly-out menus created in FW or DW
both suck.
Really bad. Inaccessible, poor usability, a pain to update,
and bloated
scripts.
The specific problem is that the FW menu uses layers. Meaning
that it
specifically positions the menus on the screen relative to
the FW file...not
your DW file, which may have moved the contents around the
page.
Best solution? Don't use these crappy menus. Here are some
better options:
http://mnteractive.com/archive/hangover-fly-out-navigation-part-ii/
-Darrel

Similar Messages

  • Help with Fireworks  pop-up menu

    Hi All,
    I created a vertical pop-up menu from Fireworks MX 2004. I
    inserted it into my Dreamweaver file and it works great. However, I
    want the white background of the pop-up menu to be have a 40%
    opacity. I know I have to add a bit of coding to the mm_menu.js
    file and I've tried every conceivable bit of coding I can think of
    but still no luck. Does anyone know what to write and where to
    write in the code? Thanks in advance for any help!
    Below is the section of code that I've been working with. I
    assumed the opacity coding would go here some where.
    * mm_menu 20MAR2002 Version 6.0
    * Andy Finnell, March 2002
    * Copyright (c) 2000-2002 Macromedia, Inc.
    * based on menu.js
    * by gary smith, July 1997
    * Copyright (c) 1997-1999 Netscape Communications Corp.
    * Netscape grants you a royalty free license to use or
    modify this
    * software provided that this copyright notice appears on
    all copies.
    * This software is provided "AS IS," without a warranty of
    any kind.
    function Menu(label, mw, mh, fnt, fs, fclr, fhclr, bg, bgh,
    halgn, valgn, pad, space, to, sx, sy, srel, opq, vert, idt, aw, ah)
    this.version = "020320 [Menu; mm_menu.js]";
    this.type = "Menu";
    this.menuWidth = mw;
    this.menuItemHeight = mh;
    this.fontSize = fs;
    this.fontWeight = "plain";
    this.fontFamily = fnt;
    this.fontColor = fclr;
    this.fontColorHilite = fhclr;
    this.bgColor = "#555555";
    this.menuBorder = 1;
    this.menuBgOpaque=opq;
    this.menuItemBorder = 1;
    this.menuItemIndent = idt;
    this.menuItemBgColor = bg;
    this.menuItemVAlign = valgn;
    this.menuItemHAlign = halgn;
    this.menuItemPadding = pad;
    this.menuItemSpacing = space;
    this.menuLiteBgColor = "#ffffff";
    this.menuBorderBgColor = "#777777";
    this.menuHiliteBgColor = bgh;
    this.menuContainerBgColor = "#cccccc";
    this.childMenuIcon = "arrows.gif";
    this.submenuXOffset = sx;
    this.submenuYOffset = sy;
    this.submenuRelativeToItem = srel;
    this.vertical = vert;
    this.items = new Array();
    this.actions = new Array();
    this.childMenus = new Array();
    this.hideOnMouseOut = true;
    this.hideTimeout = to;
    this.addMenuItem = addMenuItem;
    this.writeMenus = writeMenus;
    this.MM_showMenu = MM_showMenu;
    this.onMenuItemOver = onMenuItemOver;
    this.onMenuItemAction = onMenuItemAction;
    this.hideMenu = hideMenu;
    this.hideChildMenu = hideChildMenu;
    if (!window.menus) window.menus = new Array();
    this.label = " " + label;
    window.menus[this.label] = this;
    window.menus[window.menus.length] = this;
    if (!window.activeMenus) window.activeMenus = new Array();

    > Dreamweaver file and it works great
    You think? 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
    ==================
    "creativemoon" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi All,
    > I created a vertical pop-up menu from Fireworks MX 2004.
    I inserted it
    > into my
    > Dreamweaver file and it works great. However, I want the
    white background
    > of
    > the pop-up menu to be have a 40% opacity. I know I have
    to add a bit of
    > coding
    > to the mm_menu.js file and I've tried every conceivable
    bit of coding I
    > can
    > think of but still no luck. Does anyone know what to
    write and where to
    > write
    > in the code? Thanks in advance for any help!
    >
    > Below is the section of code that I've been working
    with. I assumed the
    > opacity coding would go here some where.
    >
    > /**
    > * mm_menu 20MAR2002 Version 6.0
    > * Andy Finnell, March 2002
    > * Copyright (c) 2000-2002 Macromedia, Inc.
    > *
    > * based on menu.js
    > * by gary smith, July 1997
    > * Copyright (c) 1997-1999 Netscape Communications Corp.
    > *
    > * Netscape grants you a royalty free license to use or
    modify this
    > * software provided that this copyright notice appears
    on all copies.
    > * This software is provided "AS IS," without a warranty
    of any kind.
    > */
    > function Menu(label, mw, mh, fnt, fs, fclr, fhclr, bg,
    bgh, halgn, valgn,
    > pad,
    > space, to, sx, sy, srel, opq, vert, idt, aw, ah)
    > {
    > this.version = "020320 [Menu; mm_menu.js]";
    > this.type = "Menu";
    > this.menuWidth = mw;
    > this.menuItemHeight = mh;
    > this.fontSize = fs;
    > this.fontWeight = "plain";
    > this.fontFamily = fnt;
    > this.fontColor = fclr;
    > this.fontColorHilite = fhclr;
    > this.bgColor = "#555555";
    > this.menuBorder = 1;
    > this.menuBgOpaque=opq;
    > this.menuItemBorder = 1;
    > this.menuItemIndent = idt;
    > this.menuItemBgColor = bg;
    > this.menuItemVAlign = valgn;
    > this.menuItemHAlign = halgn;
    > this.menuItemPadding = pad;
    > this.menuItemSpacing = space;
    > this.menuLiteBgColor = "#ffffff";
    > this.menuBorderBgColor = "#777777";
    > this.menuHiliteBgColor = bgh;
    > this.menuContainerBgColor = "#cccccc";
    > this.childMenuIcon = "arrows.gif";
    > this.submenuXOffset = sx;
    > this.submenuYOffset = sy;
    > this.submenuRelativeToItem = srel;
    > this.vertical = vert;
    > this.items = new Array();
    > this.actions = new Array();
    > this.childMenus = new Array();
    > this.hideOnMouseOut = true;
    > this.hideTimeout = to;
    > this.addMenuItem = addMenuItem;
    > this.writeMenus = writeMenus;
    > this.MM_showMenu = MM_showMenu;
    > this.onMenuItemOver = onMenuItemOver;
    > this.onMenuItemAction = onMenuItemAction;
    > this.hideMenu = hideMenu;
    > this.hideChildMenu = hideChildMenu;
    > if (!window.menus) window.menus = new Array();
    > this.label = " " + label;
    > window.menus[this.label] = this;
    > window.menus[window.menus.length] = this;
    > if (!window.activeMenus) window.activeMenus = new
    Array();
    > }
    >
    >
    >

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

  • Dreamweaver MX - troubles with a pop-up menu/navbar combo

    Hi all,
    I'm attempting to create a 4-button navigation bar, where
    three of the buttons produce a popup menu with links to other pages
    within the site onMouseOver. The navbar itself works great, but I
    put all of that in a template, which of course is automatically
    placed in a template folder. I have 6 or 7 other pages that all use
    that template, and when I preview the template, the drop-down box
    links work fine and I can get to an actual page from the template.
    However once I'm at an actual page, every time I try to use the
    navbar dropdown links again to get to another page, the browser
    can't find the page! I tried moving the template to the same folder
    as the pages, which solves the actual problem, but then prevents
    the pages that are using the template from being automatically
    updated, and therefore creates a new problem.
    Should I just not use a template at all, and copy/paste the
    template code into each page? Or is there another way to fix this
    issue?
    Thanks!

    I'm presuming you are using the DW pop up menus... may I
    suggest that you
    read this article first before going any further:
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    There are better ways to create your menu, without all the
    hassles of these
    DW generic ones. Another article:
    http://apptools.com/rants/menus.php
    Anyway, you should not move the template file out of the
    Template folder-
    because as you say, it won't progate any changes to the child
    pages.
    The problem with the popups and the use of templates is in
    the links. The
    dwt file cannot read the actual links that are written in the
    javascript
    file the popups generate. There is a technote at the Adobe
    site, but I
    can't find it right now (seems to be a linking problem on the
    site) do a
    search for: "Using site root-relative paths with Fireworks
    Pop-up Menus in
    Dreamweaver templates", it may explain the issue further for
    you
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au
    ~ Forum Posting Guidelines ~
    http://www.adobe.com/support/forums/guidelines.html
    "dudewithasock" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi all,
    >
    > I'm attempting to create a 4-button navigation bar,
    where three of the
    > buttons
    > produce a popup menu with links to other pages within
    the site
    > onMouseOver. The
    > navbar itself works great, but I put all of that in a
    template, which of
    > course
    > is automatically placed in a template folder. I have 6
    or 7 other pages
    > that
    > all use that template, and when I preview the template,
    the drop-down box
    > links
    > work fine and I can get to an actual page from the
    template. However once
    > I'm
    > at an actual page, every time I try to use the navbar
    dropdown links again
    > to
    > get to another page, the browser can't find the page! I
    tried moving the
    > template to the same folder as the pages, which solves
    the actual problem,
    > but
    > then prevents the pages that are using the template from
    being
    > automatically
    > updated, and therefore creates a new problem.
    >
    > Should I just not use a template at all, and copy/paste
    the template code
    > into
    > each page? Or is there another way to fix this issue?
    >
    > Thanks!
    >

  • Strange problem with Dreamweaver Pop-Up menus

    Hello:
    I have encountered a very strange problem with DreamWeaver
    pop-up menus, and I was wondering if I could get some help from
    this forum, as I can't seem to find an answer anywhere else.
    The problem involves use of DreamWeaver's pop-up menu
    behavior — all works as expected, and my local preview of the
    Web page/site works fine, but when I upload the site to a server, I
    see extra question mark and "box" characters added to my drop-down
    menus. This problem is inconsistent between browsers: Sometimes I
    see it only on IE, sometimes I also see it on Firefox.
    For example, check out the following URLs:
    http://libertycreativesolutions.net/clients/cci/
    ... this implementation of drop-down menus ("Services"
    button, etc.) displays an extra "box" character for each of the
    drop-down menu items, but this only occurs in IE -- Firefox is
    fine.
    http://libertycreativesolutions.net/clients/microtek/HTML/MicroTek_home.html
    ... this implementation of drop-down menus shows an extra
    question mark above the triggering link onMouseOver for Firefox,
    and in IE, it shows this "box" character for both the triggering
    buttons and for each menu item.
    For both of these sites, the pop-up menus work without a
    problem *when I'm looking at a local version on my workstation*.
    What in the Wide Wide World of Sports is going on here????
    Any help for this problem is appreciated.
    Note that I stripped out the JavaScript code for menu
    information from the <head></head> area of each of
    these pages and placed it in a linked JavaScript document.
    HELP!

    First, you need to read this, written by the person who
    adapted that menu
    code for Macromedia -
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    Then you need to know that there are MUCH better ways to do
    such things -
    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
    ==================
    "Pomond69" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello:
    > I have encountered a very strange problem with
    DreamWeaver pop-up menus,
    > and I
    > was wondering if I could get some help from this forum,
    as I can't seem
    > to
    > find an answer anywhere else.
    >
    > The problem involves use of DreamWeaver's pop-up menu
    behavior ? all works
    > as
    > expected, and my local preview of the Web page/site
    works fine, but when I
    > upload the site to a server, I see extra question mark
    and "box"
    > characters
    > added to my drop-down menus. This problem is
    inconsistent between
    > browsers:
    > Sometimes I see it only on IE, sometimes I also see it
    on Firefox.
    >
    > For example, check out the following URLs:
    >
    >
    http://libertycreativesolutions.net/clients/cci/
    > ... this implementation of drop-down menus ("Services"
    button, etc.)
    > displays
    > an extra "box" character for each of the drop-down menu
    items, but this
    > only
    > occurs in IE -- Firefox is fine.
    >
    >
    http://libertycreativesolutions.net/clients/microtek/HTML/MicroTek_home.html
    > ... this implementation of drop-down menus shows an
    extra question mark
    > above
    > the triggering link onMouseOver for Firefox, and in IE,
    it shows this
    > "box"
    > character for both the triggering buttons and for each
    menu item.
    >
    > For both of these sites, the pop-up menus work without a
    problem *when I'm
    > looking at a local version on my workstation*.
    >
    > What in the Wide Wide World of Sports is going on
    here???? Any help for
    > this
    > problem is appreciated.
    >
    > Note that I stripped out the JavaScript code for menu
    information from the
    > <head></head> area of each of these pages
    and placed it in a linked
    > JavaScript
    > document.
    >
    > HELP!
    >

  • I have a problem with the pop-up prompt to enter my serial number for installation, it won't pop up when I entered the redemption code. Can someone help?

    I have a problem with the pop-up prompt to enter my serial number for installation, it won't pop up when I entered the redemption code. Can someone help?

    There is no pop up. There is a window that is part of the installation process. If you entered a wrong number, like a redemption code, you would have wound up installing it as a trial. In that case, go to the Help menu in the editor and look for an option there.
    If that isn't what you're talking about, you really need to explain in more detail.

  • Fireworks pop up menu and flash

    hi,
    I want to have a page layout like adobe.com. Fireworks Pop up
    menu on top and flash swf file beneth it, but my Fireworks css pop
    up menu is hidden by flash swf file embeded when I bring it all
    together in Dreamweaver.
    I guess this is because embeded files superceed the css
    z-indexing but how do I overcome this isue. As I can see it can be
    done at adobe.com.

    All Active content on a page will always rise to the top, so
    to speak,
    including Flash, certain form elements, Java applets, and
    Active X controls.
    This means that each of these will poke through layers. There
    is not a good
    cross-browser/platform reliable way to solve this issue, but
    if you can be
    confident in your visitors using IE 5+ or NN6+, then you can
    use the Flash
    wmode parameter.
    MM articles:
    http://www.macromedia.com/support/flash/ts/documents/flash_top_layer.htm
    http://www.macromedia.com/support/flash/ts/documents/wmode.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
    ==================
    "sonneym" <[email protected]> wrote in
    message
    news:e3tgtr$kbb$[email protected]..
    > hi,
    > I want to have a page layout like adobe.com. Fireworks
    Pop up menu on top
    > and
    > flash swf file beneth it, but my Fireworks css pop up
    menu is hidden by
    > flash
    > swf file embeded when I bring it all together in
    Dreamweaver.
    > I guess this is because embeded files superceed the css
    z-indexing but how
    > do
    > I overcome this isue. As I can see it can be done at
    adobe.com.
    >

  • Fireworks Pop Up Menu Issue in Dreamweaver

    Hi I have built a pop up/dropdown menu in Fireworks. This menu bar is for a site that I built using dreamweaver. I exported the menu bar in fireworks and then inserted it into dreamweaver but when I do this the button images are missing. Instead of images (of the menu bar categories), there are gray boxes in the shape of the picture (category/button image).
    I had this issue before and was able to correct it. I am not sure what I did though. Nothing seems to be working, since I am unaware of how I actually fixed it, I can't figure out how to fix it again.
    When I preview the file in fireworks, it looks fine and everything seems to work. When I insert the html file into dreamweaver, I have this issue with the menu bar images. The weird thing is that it is only the button images. I do have this site published and I have uploaded all of the files but the pictures still do not show. The link to this site is www.pariswyattllansoart.com. (the site is still under construction obviously).
    The menu bar works fine otherwise. The only issue is that the up and over images for the buttons of the menu bar do not show in dreamweaver or on the published site. Even the images that make up the rest of the menu bar show. If you check the site out, you will see what I mean.
    Thanks for your help in advance!
    Here is the code for the file:
    <div id="FWTableContainer854242715">
          <table border="0" cellpadding="0" cellspacing="0" width="740">
            <!-- fwtable fwsrc="Menu Bar 1.png" fwpage="Page 1" fwbase="Menu Bar 1.gif" fwstyle="Dreamweaver" fwdocid = "854242715" fwnested="0" -->
            <tr>
              <td><img src="../Paris Wyatt Llanso Art/Fireworks/spacer.gif" alt="" name="undefined_2" width="80" height="1" border="0" id="undefined_2" /></td>
              <td><img src="../Paris Wyatt Llanso Art/Fireworks/spacer.gif" alt="" name="undefined_2" width="56" height="1" border="0" id="undefined_2" /></td>
              <td><img src="../Paris Wyatt Llanso Art/Fireworks/spacer.gif" alt="" name="undefined_2" width="130" height="1" border="0" id="undefined_2" /></td>
              <td><img src="../Paris Wyatt Llanso Art/Fireworks/spacer.gif" alt="" name="undefined_2" width="61" height="1" border="0" id="undefined_2" /></td>
              <td><img src="../Paris Wyatt Llanso Art/Fireworks/spacer.gif" alt="" name="undefined_2" width="130" height="1" border="0" id="undefined_2" /></td>
              <td><img src="../Paris Wyatt Llanso Art/Fireworks/spacer.gif" alt="" name="undefined_2" width="54" height="1" border="0" id="undefined_2" /></td>
              <td><img src="../Paris Wyatt Llanso Art/Fireworks/spacer.gif" alt="" name="undefined_2" width="73" height="1" border="0" id="undefined_2" /></td>
              <td><img src="../Paris Wyatt Llanso Art/Fireworks/spacer.gif" alt="" name="undefined_2" width="50" height="1" border="0" id="undefined_2" /></td>
              <td><img src="../Paris Wyatt Llanso Art/Fireworks/spacer.gif" alt="" name="undefined_2" width="106" height="1" border="0" id="undefined_2" /></td>
              <td><img src="../Paris Wyatt Llanso Art/Fireworks/spacer.gif" alt="" name="undefined_2" width="1" height="1" border="0" id="undefined_2" /></td>
            </tr>
            <tr>
              <td><a href="http://www.pariswyattllansoart.com/shop art.html" onmouseout="MM_swapImgRestore();MM_menuStartTimeout(1000)" onmouseover="MM_menuShowMenu('MMMenuContainer0521180405_0', 'MMMenu0521180405_0',-55,18,'MenuBar1_r1_c1');MM_swapImage('MenuBar1_r1_c1','','Menu Bar 1_r1_c1_f2.gif',1)"><img name="MenuBar1_r1_c1" src="Menu%20Bar%201_r1_c1.gif" width="80" height="13" border="0" id="MenuBar1_r1_c1" alt="" /></a></td>
              <td valign="top" bgcolor="#000000"><p style="margin:0px"></p></td>
              <td><a href="http://www.pariswyattllansoart.com/contact.html" onmouseout="MM_swapImgRestore();MM_menuStartTimeout(1000)" onmouseover="MM_menuShowMenu('MMMenuContainer0521180830_1', 'MMMenu0521180830_1',-40,18,'MenuBar1_r1_c3');MM_swapImage('MenuBar1_r1_c3','','Menu Bar 1_r1_c3_f2.gif',1)"><img name="MenuBar1_r1_c3" src="Menu%20Bar%201_r1_c3.gif" width="130" height="13" border="0" id="MenuBar1_r1_c3" alt="" /></a></td>
              <td valign="top" bgcolor="#000000"><p style="margin:0px"></p></td>
              <td><a href="http://www.pariswyattllansoart.com/news &amp; events.html" onmouseout="MM_swapImgRestore();MM_menuStartTimeout(1000)" onmouseover="MM_menuShowMenu('MMMenuContainer0521180919_2', 'MMMenu0521180919_2',-30,18,'MenuBar1_r1_c5');MM_swapImage('MenuBar1_r1_c5','','Menu Bar 1_r1_c5_f2.gif',1)"><img name="MenuBar1_r1_c5" src="Menu%20Bar%201_r1_c5.gif" width="130" height="13" border="0" id="MenuBar1_r1_c5" alt="" /></a></td>
              <td valign="top" bgcolor="#000000"><p style="margin:0px"></p></td>
              <td><a href="http://www.pariswyattllansoart.com/policies.html" onmouseout="MM_swapImgRestore();MM_menuStartTimeout(1000)" onmouseover="MM_menuShowMenu('MMMenuContainer0521181252_3', 'MMMenu0521181252_3',-40,18,'MenuBar1_r1_c7');MM_swapImage('MenuBar1_r1_c7','','Menu Bar 1_r1_c7_f2.gif',1)"><img name="MenuBar1_r1_c7" src="Menu%20Bar%201_r1_c7.gif" width="73" height="13" border="0" id="MenuBar1_r1_c7" alt="" /></a></td>
              <td valign="top" bgcolor="#000000"><p style="margin:0px"></p></td>
              <td><a href="http://www.pariswyattllansoart.com/about paris.html" onmouseout="MM_swapImgRestore();MM_menuStartTimeout(1000)" onmouseover="MM_menuShowMenu('MMMenuContainer0521181434_4', 'MMMenu0521181434_4',-7,18,'MenuBar1_r1_c9');MM_swapImage('MenuBar1_r1_c9','','Menu Bar 1_r1_c9_f2.gif',1)"><img name="MenuBar1_r1_c9" src="Menu%20Bar%201_r1_c9.gif" width="106" height="13" border="0" id="MenuBar1_r1_c9" alt="" /></a></td>
              <td><img src="../Paris Wyatt Llanso Art/Fireworks/spacer.gif" alt="" name="undefined_2" width="1" height="13" border="0" id="undefined_2" /></td>
            </tr>
          </table>
          <div id="MMMenuContainer0521180405_0">
            <div id="MMMenu0521180405_0" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"> <a href="shop art.html" id="MMMenu0521180405_0_Item_0" class="MMMIFVStyleMMMenu0521180405_0" onmouseover="MM_menuOverMenuItem('MMMenu0521180405_0');"> SHOP ART </a> <a href="originals by paris.html" id="MMMenu0521180405_0_Item_1" class="MMMIVStyleMMMenu0521180405_0" onmouseover="MM_menuOverMenuItem('MMMenu0521180405_0');"> ORIGINALS BY PARIS </a> <a href="pri nts by paris.html" id="MMMenu0521180405_0_Item_2" class="MMMIVStyleMMMenu0521180405_0" onmouseover="MM_menuOverMenuItem('MMMenu0521180405_0');"> PRINTS BY PARIS </a> <a href="order custom painting.html" id="MMMenu0521180405_0_Item_3" class="MMMIVStyleMMMenu0521180405_0" onmouseover="MM_menuOverMenuItem('MMMenu0521180405_0');"> ORDER CUSTOM </a> <a href="tags_bags_cards.html" id="MMMenu0521180405_0_Item_4" class="MMMIVStyleMMMenu0521180405_0" onmouseover="MM_menuOverMenuItem('MMMenu0521180405_0');"> TAGS, BAGS &amp; CARDS </a> <a href="etsy.html" id="MMMenu0521180405_0_Item_5" class="MMMIVStyleMMMenu0521180405_0" onmouseover="MM_menuOverMenuItem('MMMenu0521180405_0');"> ETSY SHOP </a> </div>
          </div>
          <div id="MMMenuContainer0521180830_1">
            <div id="MMMenu0521180830_1" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"> <a href="javascript:;" id="MMMenu0521180830_1_Item_0" class="MMMIFVStyleMMMenu0521180830_1" onmouseover="MM_menuOverMenuItem('MMMenu0521180830_1');"> CONTACT PARIS </a> <a href="javascript:;" id="MMMenu0521180830_1_Item_1" class="MMMIVStyleMMMenu0521180830_1" onmouseover="MM_menuOverMenuItem('MMMenu0521180830_1');"> CONTACT INFORMATION </a> </div>
          </div>
          <div id="MMMenuContainer0521180919_2">
            <div id="MMMenu0521180919_2" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"> <a href="news &amp; events.html" id="MMMenu0521180919_2_Item_0" class="MMMIFVStyleMMMenu0521180919_2" onmouseover="MM_menuOverMenuItem('MMMenu0521180919_2');"> NEWS &amp; EVENTS </a> <a href="newsletter.html" id="MMMenu0521180919_2_Item_1" class="MMMIVStyleMMMenu0521180919_2" onmouseover="MM_menuOverMenuItem('MMMenu0521180919_2');"> NEWSLETTER </a> <a href="blog.html" id="MMMenu0521180919_2_Item_2" class="MMMIVStyleMMMenu0521180919_2" onmouseover="MM_menuOverMenuItem('MMMenu0521180919_2');"> PARIS' BLOG </a> <a href="upcoming shows.html" id="MMMenu0521180919_2_Item_3" class="MMMIVStyleMMMenu0521180919_2" onmouseover="MM_menuOverMenuItem('MMMenu0521180919_2');"> UPCOMING SHOWS </a> <a href="archived shows.html" id="MMMenu0521180919_2_Item_4" class="MMMIVStyleMMMenu0521180919_2" onmouseover="MM_menuOverMenuItem('MMMenu0521180919_2');"> ARCHIVED SHOWS </a> <a href="upcoming openings.html" id="MMMenu0521180919_2_Item_5" class="MMMIVStyleMMMenu0521180919_2" onmouseover="MM_menuOverMenuItem('MMMenu0521180919_2');"> UPCOMING OPENINGS </a> <a href="archived openings.html" id="MMMenu0521180919_2_Item_6" class="MMMIVStyleMMMenu0521180919_2" onmouseover="MM_menuOverMenuItem('MMMenu0521180919_2');"> ARCHIVED OPENINGS </a> </div>
          </div>
          <div id="MMMenuContainer0521181252_3">
            <div id="MMMenu0521181252_3" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"> <a href="policies.html" id="MMMenu0521181252_3_Item_0" class="MMMIFVStyleMMMenu0521181252_3" onmouseover="MM_menuOverMenuItem('MMMenu0521181252_3');"> POLICIES </a> <a href="return policy.html" id="MMMenu0521181252_3_Item_1" class="MMMIVStyleMMMenu0521181252_3" onmouseover="MM_menuOverMenuItem('MMMenu0521181252_3');"> RETURN POLICY </a> <a href="shipping policy.html" id="MMMenu0521181252_3_Item_2" class="MMMIVStyleMMMenu0521181252_3" onmouseover="MM_menuOverMenuItem('MMMenu0521181252_3');"> SHIPPING POLICY </a> <a href="custom policy.html" id="MMMenu0521181252_3_Item_3" class="MMMIVStyleMMMenu0521181252_3" onmouseover="MM_menuOverMenuItem('MMMenu0521181252_3');"> CUSTOM POLICY </a> </div>
          </div>
          <div id="MMMenuContainer0521181434_4">
            <div id="MMMenu0521181434_4" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"> <a href="about paris.html" id="MMMenu0521181434_4_Item_0" class="MMMIFVStyleMMMenu0521181434_4" onmouseover="MM_menuOverMenuItem('MMMenu0521181434_4');"> ABOUT PARIS </a> <a href="biography.html" id="MMMenu0521181434_4_Item_1" class="MMMIVStyleMMMenu0521181434_4" onmouseover="MM_menuOverMenuItem('MMMenu0521181434_4');"> BIOGRAPHY </a> <a href="gallereis.html" id="MMMenu0521181434_4_Item_2" class="MMMIVStyleMMMenu0521181434_4" onmouseover="MM_menuOverMenuItem('MMMenu0521181434_4');"> GALLERIES </a> <a href="care tips.html" id="MMMenu0521181434_4_Item_3" class="MMMIVStyleMMMenu0521181434_4" onmouseover="MM_menuOverMenuItem('MMMenu0521181434_4');"> CARE TIPS </a> </div>
          </div>
        </div>

    Thanks you!!! Your advice was so helpful. First of all thank you for pointing out how I should be saving my files. Because of your advice, I thought I would watch the tutorial again and pay attention to exactly how he was saving his document. I was saving the doc like this: Menu Bar, now I know that I need to save this file like this: menuBar_file and it works wonderfully. The files have to be saved in a folder in the local directory. Also because of how I was saving things, I realized that I had a few other problems with DW. I fixed those issues and DW works wonderfully.
    Also here is something else that I learned from this. Once I got the images working, the dropdown/popup menus where no longer working. The issue was that I was trying to insert the FW dropdown menu into a document that had already been saved as a template. If you do this, there is not enough room for all of the code, so the remedy is to insert the menu bar into an html doc. and then save it as a template.
    Thanks so much again. I have learned so much.

  • Help inserting Fireworks pop-up menu into Dreamweaver

    I wonder if anyone can help me with pop-up menu insertion
    process. I create the menu in Fireworks and export it to
    Dreamweaver. I place the menu in a fresh test document and it works
    perfectly every time, but when I go through the exact same series
    of steps in my real page, I get a broken image icon. I just can't
    understand why the path is fine one way, yet gets lost in the
    shuffle the other way. The only two differences I can think of are
    where in the site folder the test page is saved, as opposed to
    where the real (archive) page is stored, and the fact that the
    archive page already has rows and columns and cells, where the
    fresh test page has just one basic table and nothing else at all. I
    even tried manipulating the code directly to make the sections in
    question identical, and even that doesn't do it. As far as I could
    see, my actual working site page (which won't accept the insertion)
    had one extra bit of code, namely
    <td colspan="4"
    Everything else seems to be the same.
    I am losing my sanity over this!

    Would it be too late to direct you to another menu approach
    altogether? The
    FW pop-up menus are not the sharpest knife in the drawer -
    Check the uberlink and MacFly tutorials at PVII
    http://www.projectseven.com/)
    and the Navbar tutorial/articles at Thierry's place
    http://tjkdesign.com/navbars/)
    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
    ==================
    "birdpics" <[email protected]> wrote in
    message
    news:ed2pnn$5cl$[email protected]..
    > I wonder if anyone can help me with pop-up menu
    insertion process. I
    > create
    > the menu in Fireworks and export it to Dreamweaver. I
    place the menu in a
    > fresh
    > test document and it works perfectly every time, but
    when I go through the
    > exact same series of steps in my real page, I get a
    broken image icon. I
    > just
    > can't understand why the path is fine one way, yet gets
    lost in the
    > shuffle the
    > other way. The only two differences I can think of are
    where in the site
    > folder the test page is saved, as opposed to where the
    real (archive) page
    > is
    > stored, and the fact that the archive page already has
    rows and columns
    > and
    > cells, where the fresh test page has just one basic
    table and nothing else
    > at
    > all. I even tried manipulating the code directly to make
    the sections in
    > question identical, and even that doesn't do it. As far
    as I could see, my
    > actual working site page (which won't accept the
    insertion) had one extra
    > bit
    > of code, namely
    >
    > <td colspan="4"
    >
    > Everything else seems to be the same.
    >
    > I am losing my sanity over this!
    >
    >
    >
    >
    >

  • Problem with .css for Spry menu

    Hi,
    I am having a problem with the Spry menu I have created and edited. All looks great in the Design view of Photoshop however under the Live view or opened using a browser the menu reverts to a list of hyperlinks!
    I have checked the .css link but when using Firefox CSS editor the CSS file for the menu is simply blank?
    Any suggestions would be great!
    Thanks,
    Ozan

    Your SpryMenuBarHorizontal.css needs to be within your SpryAssets folder, which is where it would have been put automatically when you inserted the SpryMenuBar. You can move it back in there using the Files Panel.
    Here is what the file structure needs to look like:
    SpryAssets
    SpryMenuBar.js
    SpryMenuBarHorizontal.css
    cssstyletemplate.css
    index.html (or whatever the name of your page is)
    Hierarchally, the top level of your root folder will show folders for SpryAssets and css and the html pages will be on the same level.
    The Spry assets themselves will be down a level IN the SpryAssets folder, as the styletemplate.css file will be down a level IN the css folder.
    In the head of the document, you will have
         <link rel="stylesheet" type="text/css" href="css/styletemplate.css" />
         <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"> </script>
         <link rel="stylesheet" type="text/css" href="SpryAssets/SpryMenuBarHorizontal.css" />
    At the end, remove the slash before Spry inside the imgDown and imgRight sections:
         <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    Compare these with your files and file structure and correct any small typos, and they should be correctly linked.
    Beth

  • Switching tables with a pop-up menu??

    Hi all, I was wondering if it is possible to switch tables in a cell through a pop-up menu. To be more specific I have a pop-up menu in cell B9 and a table in E9 that works with the B9 pop-up. The table in E9 is A1-B30. I would like to make another pop-up that has 3 items in it that would switch out the table in E9 to reflect what has been chosen in the new pop-up. The info in B9 can stay the same. From playing around I have learned that you can not have the same cells in a table referenced if you have 2 pop-ups on the same sheet, you have to alter your table slightly to make it work. Any chance on this?
    Thanks
    Peter

    I'm getting lost on the switching out part. You need to explain in more detail what you expect to happen. Switching out means nothing in a spreadsheet (at least in standard terminology).
    What specifically happens when you change the new pull down?
    You wrote "The table in E9 is A1-B30. " Huh? That looks like an equation, not a table. Plus you cannot store a tabel in a cell.
    If you intend that the cell E9 has something like =My Table:: a1- My Table ::b30
    And you want the MYTable part to change to a different table name, then you can use the address and Index functions to do this. Have address build the cell reference into a string referenceing your pull downs and the index takes that string and uses it like a standard equation.
    Something like this:
    =index(address(1,1,,,B10))-index(address(2,30,,b10))
    This would takt the cell A1 on whatever sheet was selected in B10 drop down and subtract cell B30 from that same sheet.
    Jason

  • Is there a way I can do an 'if' sum with a pop-up menu?

    In Numbers, I am trying to have a sum that looks like this:
    Pop-up menu with options a, b, c
    x
    y
    If pop-up menu = a, then multiply x with y
    Thanks

    Hi jamang,
    Is this what you want?
    Formula in E2 (and Fill Down)
    =IF(B2="a",C2*D2,"")
    If you choose a from a Pop-Up, E multiplies X and Y.
    If the Pop-Up in not equal to a, E will show "" (NULL, the cell will appear blank).
    Regards,
    Ian.

  • Problem with one POP account

    I'm having major problems with a single POP account, using Mail 3.3. It was there with 10.5.2 and persists with upgrade to 10.5.3. I have 5 accounts (3 POP, 2 IMAP) and all work fine except one and that one no longer can receive mail-haven't seen any new mail in about a week. When I attempt to import mail the activity indicator just spins but nothing shows up. Have also tried to thin it out but mail I thought was deleted shows up again. Any ideas-this is pretty frustrating!

    I recently have been trying to find out why my email won't go online. A window pops up stating The identity of "pop.qwestoffice.net" cannot be verified. The certificate for this server is invalid. You may be connecting to a server that is pretending to be "pop.qwestoffice.net" putting information at risk. It asks to connect anyway? Anyone out there have a clue? I am losing my contacts with my clients.

  • Problem with fireworks images

    Sometimes when look at my site from different computers my
    fireworks image looks different. It sometimes has a colored
    background and when it was created in fireworks it has a
    transparent background. I am really frustrated as to why this is.
    Can anyone help me?

    On Tue, 28 Aug 2007 07:17:31 +0400, Murphy37
    <[email protected]> wrote:
    > And the png image created in Fireworks (that is the
    logo) sometimes
    > displays a grey background. Now I checked out the
    article listed in the
    > response below but it states that the problem shouldn't
    exist if you use
    > Fireworks to create the png.
    There is the problem with PNG transparency and IE:
    http://homepage.ntlworld.com/bobosola/
    It is IE problem.
    > I also tried to use a jpg as the format to save it
    > in but then I get a white background.
    JPEGs do not allow transparency, so forget about using JPEGs
    for such a
    cases.
    Ilya Razmanov
    http://photoshop.msk.ru -
    Photoshop plug-in filters

  • RAM and Virtual RAM Problems with Fireworks

    I'm working on a Fireworks file with 25 pages and some heavy graphics. However, I've turned some of the heavy objects into symbols which are repeated from page to page.
    The file is 17 Mb and my Virtual Memory bumps to 3.4 Gigs when I open this file and things are slow and often crash. I'm working on a Mac with CS4 and have 4 Gigs of RAM. The actual ram is 2.27 GB. Seems like a crap ton of Ram? Plus it's running slow and crashes regularly.
    Please advise if there are settings I can change to improve the performance.

    I have this same problem.
    We design websites like shops and stuff. We'll need to work out all the pages and show them to our clients.
    I have just finished a site with 45 pages. I have to cut this up in 3 different files. Highly annoying. And working on a windows system to so you get my irritations.
    I get the feeling that this is a result of the buggy-ness in Fireworks. The contact with the Adobe help-team is dramatic. I don't understand that you sell a product this expensive and not give a good service afterwhile.
    I must say that i don't have any problems with the other programs. Only Fireworks. The rest is very good (to end with someting nice)

Maybe you are looking for

  • Voice Memos - does not play or sync to iTunes

    Is there a file size limit with Voice Memos? I recorded a 35 minute file which appears on the iPhone. However it will not play - and does not appear in iTunes when I sync. Have the latest iPhone software and latest version of Leopard.

  • Difference in graphic cards for Imovie HD edit

    Hi. I plan to get a new Imac for imovie HD editing, upgrading a 2 ghz imac that is very short in memory, HD, and speed. I don't play games or do any 3d renderings. What i would like to know is which process of the Imovie or Iphoto software would be b

  • My mini mac 2008 does not have Imovie on it

    I contacted Apple and they said I should have IMovie based on when I bought my mini mac.  He said to reinstall install disk 2. I did and still no Imovie. Does anyone know how to get it?

  • My file yet in the queue (30 hours)! queue doesn't work?

    I submited a .doc file to convert to pdf about 30 hours ago and viewing the status appear still in the queue. Could it be that the queue is not working now?

  • IOS 7 Activation Lock On My Supervised Devices

    Running into huge road blocks with "Activation Lock" feature on iOS7. Our district has about 2500 student iPads which have their own apple ID. At the beginning of the year rollout we were on iOS 6.1.3. We have our students activate find my iPad app.