Self-made pop-up menu

Hey guys,
This is the first time I've been working with fireworks, so you might have a little patience with me. I'm a hard-learner.
Here's the deal: I'm about to design a little website and wanted to use a selfmade pop-up menu, since I don't like the designs of the menus fireworks offers.
I've cut the page into segments, dragged each of the little cross lines in the middle of their own segment and chosed a status.
And that's where my trouble starts. I have 3 statuses, but I can't get them to work right.
So when the mouse is over the word "team" in the navigation bar, the word "team" changes color and size as I wanted it, and a little pop-up menu appars underneath it.  
status 1-> status 2: works!
But when I roll the mouse over the single names that appear in the pop-up menu of "team", I want them to change the color as well and as it is described in status 3, but it won't.
status 2 -> status 3: doesn't work!!!
So what's the problem? What did I miss or do wrong???
Hope you guys can help me.
So long

Hi Linda,
so this it is. I'm not really familiar with .png files, but I assume, that you can "experience" effects like mouseovers with that, right?
So the problem is, when you roll with your mouse over team, three names appear. Now I want the background of these names to change again to a different colour, when the mouse is moved over these names. I hope you understand what I mean.

Similar Messages

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

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

  • Pop up menu

    I have a class that extends JPasswordField.
    no i need a thing like a pop up menu like in the windows when you have caps lock on i come up to tell you this way my users know that caps is active. i have done all of the back door stuff and at the moment it just prints out using System.out.println that caps is active. not the pop up so only last a short time but should not pause the program and should be independet of app just the password field i need the help to create the little pop up menu and to after let say 500ms close it.
    Please can you help me.
    it you would like to see the code i wil post it later.
    but if you under stand what i am needed then please can you help point me in the right direction. I think i would use a JWindow but then it would not move if the log in screen was moved so there has to be a better way of doing it.
    Thanks
    David

    thanks dose JWindow support if i put a .gif that has transparent part in it would it just leave the space blank so if i made an imageIcon added that to a JLabel and then to the JWindow add put that on top of the JFrame or what ever i have made as the parent . but then what happend if i move the JFrame. will the JWindow move with it.....
    here is the code that i have done that works but the pop up thing is buging me as i dont know how i am going to do it.
    package utils;
    import java.awt.event.*;
    import javax.swing.JPasswordField;
    import javax.swing.text.Document;
    import java.awt.Toolkit;
    * This class is just an extension of <Code>JPasswordField</Code> so that
    * it can tell the user that the caps lock is on when they enter the field
    * it also tells them if the caps is pressed while they are in the field.
    * and also if it was pushed in another application and then they go back to
    * the field.
    * @author David Rubin
    * @version 1.0
    public class CapsLockPasswordField extends JPasswordField
       boolean needsToBeChecked=true;
       public CapsLockPasswordField()
          super();
          addListnenster();
       public CapsLockPasswordField(String text)
          super(text);
          addListnenster();
       public CapsLockPasswordField(String text,int cols)
          super(text,cols);
          addListnenster();
       public CapsLockPasswordField(Document doc,String text,int cols)
          super(doc,text,cols);
          addListnenster();
       private void addListnenster()
          this.addFocusListener(new FocusAdapter(){
              public void focusGained(FocusEvent e){
                 checkForCapsLock();
              needsToBeChecked=false;
              public void focusLost(FocusEvent e){
                 checkForCapsLock();
                needsToBeChecked=true;
          this.addKeyListener(new KeyAdapter(){
             public void keyPressed(KeyEvent e){
                if(e.getKeyCode()==KeyEvent.VK_CAPS_LOCK)
                    needsToBeChecked=true;
                checkForCapsLock()  ;
                needsToBeChecked=false;
       private void checkForCapsLock()
          //this save us the trouble of checking if there is a caps on.
          if(!needsToBeChecked)
             return;
          boolean b= Toolkit.getDefaultToolkit().getLockingKeyState(
                KeyEvent.VK_CAPS_LOCK);
          if(b)
             //IN HERE YOU CAN DO ANY THING TO TELL THE USER THAT CAPS
            //LOCK IS ON
          //IS IT OK IF I GIVE THIS TO YOU
    //------------------------------->>>>>>>>>>>>>>>>>>
             System.out.println("Caps lock is on");
    }//----------------->>>>>>>>>>
    this is were is want to put a pop up so that it can be there to show use wha is going on.
    David

  • The spry pop-up menu I built in Adobe Dreamweaver worked fine in my old Firefox, I updated Firefox today and the menu no longer works--despite disabling the pop-up blocker in Firefox preferences...what's the problem??? I need the menu to work!!!

    I built a new pop-up menu for my website using Spry in Adobe Dreamweaver. Because of some differences in .HTML and .XHTML
    it took me days to get it right. I tested every variation in Firefox until it worked perfectly. Today, I installed the newest version of Firefox and now the pop-up no longer works. I changed the preferences in Firefox to disable to pop-up blocker and it STILL DOESN'T WORK...although an older style of pop-up menu (menu machine) which is no longer supported by Adobe, DOES WORK.
    HELP!!! THIS IS IMPORTANT.

    pixlor:
    OP is using CS3 and the menu blog is talking about the menus
    in earlier
    versions of FW, so *most* of the points made in the blog
    don't apply.
    That's not to say that using CS3 pop-up menus is a *good*
    thing....
    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
    ==================
    "pixlor" <[email protected]> wrote in
    message
    news:gbce7b$a50$[email protected]..
    >
    quote:
    Originally posted by:
    captainbianco
    > I agree completely and totally, and I will haha but I'd
    like to get this
    > one
    > fixed if I can. You can view the page here
    >
    http://www.flooringanswers.com/nysurfaces/index2.htm
    > Hover over the letters to see the pop-up menu's. The one
    over "t" is the
    > problem.
    > Under Flooring, for example, you have a div with id of
    > MMMenu0910163730_1_1
    > (ugh). Under that are four items and they have their own
    IDs:
    > MMMenu0910163730_1_1_Item_0
    > MMMenu0910163730_1_1_Item_1
    > MMMenu0910163730_1_1_Item_2
    > MMMenu0910163730_1_1_Item_3
    > MMMenu0910163730_1_1_Item_4
    >
    > Your CSS file, however, doesn't have location
    information for the ..Item_4
    > object.
    >
    > That's just from a quick, cursory look. In order to fix
    this, you're going
    > to
    > have to go through it line by line and debug it. By the
    time you do this,
    > you
    > might be better off getting something else and starting
    from scratch.
    >
    > Read this:
    >
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    >

  • JComboBox event notification when select first entry in pop-up menu JDK 6

    I recently began testing a Java GUI, I originally developed with JDK 1.5.0_11, with JDK 1.6.0_3. I have used the JComboBox in several applications developed using JDK 1.3.x and 1.4.x over the years. In every one of these earlier JDKs the JComboBox widgets all behaved the same. When you select the JComboBox widget, the pop-up menu appears and you can select any of the items from the menu list. Having made the selection with either a mouse click or a key press, an event notification is sent. Typically, an ActionEvent as well as either a mouse click event or a keypressed event may be sent. When testing with 1.6.0_x versions of the JDK and JRE, I can't account for any event notification being sent when selecting the first item at the top of the pop-up menu as the initial selection. If I select some other item on the list and then the first item, it works as it is supposed to work, but only after selecting another item first.
    I've placed the JComboBox in a JDialog and a JPanel. There are NO AWT widgets in any containers of the application. The same behavior seems to exist regardless of what other containing Swing component I place the JComboBox in. I'm running these applications on Windows XP, service pack 2. The system is an AMD 64 bit dual processor with 4Gb of RAM. The essential code follows:
    private JComboBox getJcboAlias()
        /* Note here that I am using a defaultComboModel as I have always done */
       jcboAliases = new JComboBox(urls);
       *jcboAliases.setEditable(false);*                               // Note here that the JComboBox is NOT editable
       jcboAliases.addActionListener(new ActionListener()   // ActionListener only receives a notification if the second or
       {                                                                            // another item in the pop-menu list is selected...but never the
          public void actionPerformed(ActionEvent ae)           // first item in the list
             String s = (String) jcboAliases.getSelectedItem();
             for (int i = 0; i < connections.size(); i++)
                conAlias = (String[]) connections.get(i);
                if (s.equals(conAlias))
    isSelected = true;
    break;
    jlblName.setVisible(true);
    jlblAlias.setVisible(true);
    jlblUID.setVisible(true);
    jlblPWD.setVisible(true);
    jtxtName.setText(conAlias[0]);
    jtxtName.setVisible(true);
    jtxtAddress.setText(conAlias[1]);
    jtxtAddress.setVisible(true);
    jtxtUID.setText(conAlias[2]);
    jtxtUID.setVisible(true);
    jtxtPWD.setVisible(true);
    jtxtPWD.setText("");
    jtxtPWD.requestFocus();
    return jcboAliases;
    }    I'm using a non-editable JComboBox because there is a pop-up menu with this and not with the JList widget.  JComboBox behaves more like the JList MicroSoft counterpart.  Another code snippet follows in which the JComboBox is editable.  The same errant behavior occurs when selecting the first item from the pop-up menu: private JComboBox getJcboPCMember()
    jcboPCMember = new JComboBox(PCViewerCustom.getCurrentMembers());
    jcboPCMember.setBounds(250, 103, 180, 20);
    jcboPCMember.setToolTipText("PATHCHECK(ER) member name - Example: CKPPTHCK");
    jcboPCMember.setSelectedIndex(Integer.valueOf(PCViewerCustom.getCurrentHost(3)));
    jcboPCMember.setEditable(true); // Note here that this JComboBox IS editable
    jcboPCMember.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent ae)
    if (ae.getActionCommand().equals("comboBoxEdited"))
    boolean copy = false;
    for (int i = 0; i < jcboPCMember.getItemCount(); i++)
    if (jcboPCMember.getSelectedItem().equals(jcboPCMember.getItemAt(i)))
    copy = true;
    break;
    if (!copy)
    if (jcboPCMember.getItemCount() > 0)
    if (jcboPCMember.getItemAt(0).equals("No Entries"))
    jcboPCMember.removeItem("");
    jcboPCMember.removeItem("No Entries");
    jcboPCMember.insertItemAt((String) jcboPCMember.getSelectedItem(), 0);
    else
    jcboPCMember.removeItem("");
    jcboPCMember.addItem((String) jcboPCMember.getSelectedItem());
    enableJbtnOK();
    else
    if (jcboPCMember.getSelectedIndex() >= 0)
    PCViewerCustom.setCurrentHost(3, Integer.toString(jcboPCMember.getSelectedIndex()));
    enableJbtnOK();
    else
    JOptionPane.showMessageDialog(null, "Name not selected", "Error", JOptionPane.ERROR_MESSAGE);
    return jcboPCMember;
         I am able to add a new entry to the JComboBox, however, I am still unable to select the first item from the pop-up menu and fire any kind of notification event.  I have not seen this behavior before in any earlier versions of the JDK and it's playing havoc with my ability to deploy the application into a JDK or JRE V6 environment, without adding a bunch of additional code to pre-select the first item on the list, which pretty much defeats the purpose of the JComboBox.  I'll be the first to admit I've done something wrong, but i've built a number of test scenarios now on two systems runing Win XP SP2 and I get the same errant behavior.  I've also added in event listeners for a MouseListerner, a KeyListener and an ItemListener.  Still no event notification on this first item in the list.  Again, however, if I select one of the other items from the pop-up menu list and then select the first item, all is well.  Imagine selling that method of operation to a user....  It occurs to me that this must be a bug in the V6 JComboBox.  I wanted to post this here first, however, in order to determine if this is, in fact, a bug - in other words, am I the only one seeing this, or is this a more widespread issue?  Any assistance in making this determination is greatly appreciated.
    David Baker
    Edited by: Galstuk on Nov 27, 2007 12:21 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    here is the other file as well:
    Harold Timmis
    [email protected]
    Orlando,Fl
    *Kudos always welcome
    Attachments:
    VI2.vi ‏5 KB

  • Where is the "reference tab's pop-up menu" in this instruction, "To hide a single row or column, choose Hide Row or Hide Column from the row or column reference tab's pop-up menu."

    Where is ref tab's pop-up menu?

    I made this screenshot to show convert to header row which is done from the same pop-up menu. Hover your cursor between the row number & the first cell until you see the triangle then click the triangle.

  • The pop-up menu I added to a button disappears

    When I add a pop-up menu to a button symbol I've created, all
    is well until I click on "done." Then, when I click on the + sign
    for that button, it says "Add Pop-up Menu..." as if I hadn't added
    it already. When I click on "Add Pop-up Menu..." again, nothing's
    there.
    I'm using Fireworks CS4 for the Mac. I've used Fireworks MX
    on my PC for many years, and have never had this problem.
    Help!!

    I found a bizarre work around for the pop-up menus that will
    not seem to retain any changes made in the pop-up menu editor. As
    soon as you finish making the changes in the editor and hit Done,
    go to the library (either document library or common library) and
    double click on the symbol to which the pop-up menu is attached.
    Click the Edit button. Then finish the editing by hitting the left
    arrow at the top left of the workspace. Now the changes to the
    pop-up menu have been saved.

  • Pop-up menu cellspacing in IE but not Firefox

    I created a website a while back using Dreamweaver and managed to install the header I created in Fireworks CS3 with no problem, however I am redesigning the site and when I place my header in, there appears to be cellspacing in my pop-up menu, but only with Internet Explorer and not with Firefox.  When I went to export the header, since I wasn't using Dreamweaver to write it in, I chose the style as "generic html", and made sure there was no Cell spacing. I'd appreciate any feedback I can get.

    Well, you have a number of errors that you'll need to address.
    You have two body tags, and you can only have one. This may be the problem.
    You have a <script language="JavaScript"> declaration and it should be <script type="text/javascript">
    You have <center> tags inside <a href...></a> elements and that is not correct.
    You have a <valign="top"> tag, and that is an attibute, not a tag.
    Where you have <h1 style="font-family:Times New Roman; color:#6F0101; font-size:26;"> won't work, because font names that have spaces in them must be enclosed in quotation marks. You would be better off defining a class for your h1s.
    There's a nifty add-on for Firefox that really helps to show you some things in your code. It's called Firebug. Search for it with Google and it's easy to install. I also have the HTML Tidy add-on. HTML Tidy shows me warnings and errors. Firebug shows the structure of the code and also the inheritance of the CSS. In this case, I think you may be inheriting some padding or margin from your default.css once you insert your header into the body.
    Here's what I recommend you do:
    1) Fix up your Fireworks file to name all your images. For example, the images in your menu that have "Home" written in them should be home.gif and home-ov.gif, (or similar, with "ov" indicating "over") not headermenu_r2_c1.gif and headermenu_r2_c1_f2.gif. Likewise, in the code it should have a name of "home." It will make your code so much easier to read and maintain.
    2) Install the HTML Tidy and Firebug add-ons to Firefox. Or, you can use the W3C code validator. Fix the errors in your code.
    3) Clean up your CSS and put all your CSS in one file. Rename those awful Fireworks names to something more memorable. Make sure you know exactly what is what and where everything is. That way, you'll see where attributes might be being inherited.
    If you want a good book for HTML and CSS, I like Elizabeth Castro's HTML for the World Wide Web. It's in the 6th edition, now. I recently picked up HTML Utopia: Designing Without Tables Using CSS and I find that it is a nice lead-in to designing layouts with CSS.
    All that said, Nadia is right and the Fireworks menus are not so great. They aren't really very robust and (as you've experienced) they're difficult to maintain and troubleshoot. Here are two sites that have professional menu plug-ins for Dreamweaver (not Fireworks):
    Pluginlab Limited
    Project Seven
    The Project Seven menus are regularly recommended, but I have no personal experience with either of them. Either one will give you a better experience with less frustration. While they are not free, they'll save you quite a bit of time.
    Good luck!

  • "Show Pop-Up Menu" behavior problems

    Greetings—
    The "Show Pop-Up Menu" under Add Behaviors is grayed-out and
    won't allow additional links to be added to the templates. I'm
    currently on DW MX 2004.
    Thank you

    > Does anyone have any suggestions what to do so this
    selection is not
    > grayed
    > out?
    The functionality has been REMOVED as a primary function in
    CS3. It will
    allow you to edit a LEGACY MENU, but not create a new menu
    from scratch.
    This is a good thing. The DW menus were indescribably
    horrible.
    In their place, use the Spry menus, or -
    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
    ==================
    "Moni057" <[email protected]> wrote in
    message
    news:f3na5s$9lv$[email protected]..
    >I just got CS3 (and un-installed DW8) and I have learned
    that the "Show
    >Pop-Up
    > Menu" behavior is depreciated. The problem I'm having is
    it is Grayed out
    > (And
    > yes, I made sure I had a 'link' selected when I tried to
    choose this
    > behavior)
    Is there a setting in the Preferences that I missed or is CS3
    just teasing
    > me w/a remembrance of this easy to use pop up menu
    maker? Any help is
    > appreciated :)
    >
    > Thanks,
    > Monica
    >
    > [email protected]
    >
    > ps: I do know about the "Spry assets" but I want to see
    if the above
    > option is
    > possible first. thanx :)
    >

  • Generating pop-up menu?

    i want to generate a pop-up menu which consists of data residing in the database. i don't know how to generate a pop-up menu. help me.....

    Good luck!
    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
    ==================
    "Fat Bloke" <[email protected]> wrote in
    message
    news:e2beru$ki9$[email protected]..
    > Murray, thanks for that it is very interesting.
    >
    > fat bloke
    >
    > --
    >
    > Murray *ACE* wrote:
    >> First of all, you have to read this -
    >>
    >>
    http://apptools.com/rants/jsmenu.php
    >>
    http://apptools.com/rants/menus.php
    >>
    >> Those DW pop-up menus are just deadly.
    >>
    >> Then read this -
    >>
    >>
    http://www.projectseven.com/support/answers.asp?id=153
    >>
    >>
    >> "Fat Bloke" <[email protected]>
    wrote in message
    >> news:e2a49c$qj4$[email protected]..
    >>> Pop up menu help
    >>>
    >>>
    >>>
    >>> Hi, I have made a pop up menu in Dreamweaver 8
    using the "behaviour"
    >>> command and it works well in Firefox, however
    when I test it in IE6
    >>> I keep getting the IE security bar opening on
    the top of the page
    >>> saying "To help protect your security, Internet
    explorer has
    >>> restricted this file from showing active content
    that could access
    >>> your computer" I know how to switch it off in my
    computer, but other
    >>> people would
    >>> probably not want to continue viewing the site
    when a security
    >>> warning has come up. How do I produce a popup
    menu like this
    >>>
    >>>
    http://www.smartwebby.com/
    "top options" without getting the
    >>> warning? Thanks
    >>>
    >>>
    >>> --
    >
    >

  • CS3 "Show Pop-Up Menu" Behavior Help

    I just got CS3 (and un-installed DW8) and I have learned that
    the "Show Pop-Up Menu" behavior is depreciated. The problem I'm
    having is it is Grayed out (And yes, I made sure I had a 'link'
    selected when I tried to choose this behavior) Does anyone have any
    suggestions what to do so this selection is not grayed out? Is
    there a setting in the Preferences that I missed or is CS3 just
    teasing me w/a remembrance of this easy to use pop up menu maker?
    Any help is appreciated :)
    Thanks,
    Monica
    [email protected]
    ps: I do know about the "Spry assets" but I want to see if
    the above option is possible first. thanx :)

    > Does anyone have any suggestions what to do so this
    selection is not
    > grayed
    > out?
    The functionality has been REMOVED as a primary function in
    CS3. It will
    allow you to edit a LEGACY MENU, but not create a new menu
    from scratch.
    This is a good thing. The DW menus were indescribably
    horrible.
    In their place, use the Spry menus, or -
    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
    ==================
    "Moni057" <[email protected]> wrote in
    message
    news:f3na5s$9lv$[email protected]..
    >I just got CS3 (and un-installed DW8) and I have learned
    that the "Show
    >Pop-Up
    > Menu" behavior is depreciated. The problem I'm having is
    it is Grayed out
    > (And
    > yes, I made sure I had a 'link' selected when I tried to
    choose this
    > behavior)
    Is there a setting in the Preferences that I missed or is CS3
    just teasing
    > me w/a remembrance of this easy to use pop up menu
    maker? Any help is
    > appreciated :)
    >
    > Thanks,
    > Monica
    >
    > [email protected]
    >
    > ps: I do know about the "Spry assets" but I want to see
    if the above
    > option is
    > possible first. thanx :)
    >

  • Pop-up menu as "menu" button?

    I've noticed a lot of Blu-rays show the pop-up menu when you press "menu" (rather than "pop up menu"). Is there a way to do this in Encore?
    I'd prefer it to go to the pop-up one I've made with the movie playing rather than go to the main menu
    any ideas?

    Only the TITLE/TOP button should take you to your Main Menu. The Menu or Pop Up button (they are the same) should result in a Pop-Up menu appearing if programmed.
    Darren

  • Formula to paste data that exists beside a pop-up menu.

    I'm using a pop-up menu that I share between two tables, Table-A and Table-B. (I copy the original pop-up menu in Table-A to Table-B)
    In Table-B want to populate the cell beside the value I select from the pop-up menu with the value of the cell beside the pop-up selection in Table-A
    How can that be done?

    Hi Dean,
    There are several ways to do this. LOOKUP() and its variants VLOOKUP() and HLOOKUP() are made for this. LOOKUP() will settle for a close match which is great in some cases, deadly in others and in your case irrelevant since you are using popups.
    quinn

  • Image Size pop up menu missing in Mac Mail

    Hi all,
    I've just noticed a very frustrating problem with my mac mail which seems to have started recently, for no apparent reason. I have made no updates to my mac mail at all.
    Basically when I attach and image to a new email, there used to be a pop up menu appear in the bottom right of the window where you can select the size of the image - small, medium, large or actual size.
    This has randomly disappeared!
    I cannot find any settings in the preferences for it to reappear. I have made no changes that would have caused this - at least not knowingly.
    Any ideas as to how I can get the image size pop up menu to reappear when I am attaching images to a new email?

    Well, it seems I have solved the problem. After searching all afternoon for a solution i thought i'd try the last thing on the list - quit mac mail and re open.
    It worked!
    The Image Size pop up menu now appears again when images are attached to the email.
    Despite this, id still like to know what I did to remove it.
    Any idea?

Maybe you are looking for

  • Cisco ASA 5505 Simple PAT

    Good morning you clever bunch, Having a real issue here, am used to the Router\Switch CLI but been asked to set up an ASA 5505 8.4. Quite simply I am trying to at least test out a static PAT from an external source to an internal server in a test env

  • Synaptics Touchpad, double finger scroll and tap-to-click

    I've recently lost tap-to-click functionality on my synaptics touchpad, I have no idea why because I haven't changed anything recently. Here's my related xorg.conf file: Section "InputDevice" Identifier "SynapticsTouchpad" Driver "synaptics" Option "

  • WLS8.1 & JSF 1.0 Final: "Faces Servlet" failed to preload

    Ok, this i what I've done. Modified the samples proprties file so everythings gets build without problems with the 1.0.x taglib. <copy todir="${build}/${example}/WEB-INF/lib" file="${jstl.jar}"/> <copy todir="${build}/${example}/WEB-INF/lib" file="${

  • A network error has occurred. Check your Internet connection, and then try again.

    I cant downlload updates in my mac, its been 3 months since I cant do it. it says: "A network error has occurred. Check your Internet connection, and then try again." Ive tried in differents houses, wifi, internet and it keeps telling me this. Does s

  • Videos on websites for Ipad

    My friend has Iphone and is able to view videos people post but I found my Ipad doesnt play them, do I need to download something to make work? The website is a socila network called Zannel where people post pics and vids from phone or pc and chat. I