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.

Similar Messages

  • Using COUNTIF on time values in pop-up menu (employee schedule template)

    I have modified the Numbers employee schedule template to my liking and it works very well. I would like to add a column to the beginning which shows, at a glance, how many people I have scheduled for AM shifts and PM shifts on a given day. My AM shifts start at 9:00 AM and my PM shifts end at 6:30 or 8:30 PM.
    So I thought I could use COUNTIF, but after I set the array, I cannot get the condition right to return anything except "0". How do you make it detect the appropriate times? The times in each cell for In and Out times are selected using a pop-up menu, just like the template.
    Here is what I tried: =COUNTIF(E3:AE3,"9:00 AM")
    What should the condition be to return a proper count?

    ac,
    You shouldn't feel badly about having trouble with this template. It is a rather tricky one. The values in the Pop-Up menus are Date/Time values. That is to say, they have year, month, day, hour and minute components, even if only the hours and minutes are displayed. So if you only compare to the hours and minutes, you will never get a match.
    I don't know if you have experienced this yet, but when you changed the Pop-Up menu content, you probably entered the current year, month and day unknowingly and will have trouble doing math against the Pop-Up content that was originally in the template.
    My suggestion in your case would be to convert the time references to decimal hours before doing a comparison. For instance, if the time you wish to compare to is in cell C4, you could extract the decimal hours with =HOUR(C4)+MINUTE(C4)/60
    Remember that the hours will reflect a 24-hour day, so times in the afternoon will run from 12.0 to 23.99...
    Then after converting to decimal, instead of using "9:00 AM" for the COUNTIF criteria, use 9.
    There are probably ways to do this using the Duration format as well, but I prefer the decimal hours.
    Hope this helps.
    Jerry

  • 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

  • What function would you use instead of "IF" when referencing durations from a pop-up menu. Ie; if c4 equals 1h enter 280, if c4 equals 30m enter 160, etc. IF works fine if c4 is formatted as text but returns 0 when formatted as pop-up.

    What function similar to IF would one use when the reference cell is a pop-up menu of items in duration format?
    Example: if C4 equals 1h enter 280, if C4 equals 30m enter 160, etc
    i can get it to work fine if I format the cell to text but I not only need it pop-up, I also need it to be written in duration format because it's used as duration in other functions.
    thank you for your help in advance
    Christina

    Hi Christina,
    A screenshot is always helpful.
    C4 is your popup? You want to chose a duration there and have 280 or 160 show up somewhere else? Are they the results of a mathmatical formula or do you want a lookup table to show them?
    I suspect something else is going on in your table. I have no trouble having a popup recognized as a duration:
    The formula in C2  =DUR2MINUTES(B2) displaying "60" as expected. Note that "60" is not a duration. If I want C2 to be a duration I need the formula to read:
    =DUR2MINUTES(B2)&"m".
    I hope this helps, if not, post a screenshot including relevant formulas.
    quinn

  • How Do i make a pop-up menu's contents change in 1 cell according to what I have chosen in another pop up menu from another cell

    In table 1 I have 4 sets of options under the heading "CATEGORY" which will make up a pop up menu in the first cell. "Slat fencing", "standard pool fencing", "Non standard pool and garden fencing" and "Louvres" if I choose one of these 4 categories from a pop-up menu I need the next column to indicate another set of pop up menu's that change according to the first cell that I chose. I.E. I have 2 cells in a table. If I choose "Standard pool fencing" from a pop up menu in the first cell I need the pop up menu in the second cell to show the options Flat top Black, Flat top other colour, Semi frameless glass, Frameless glass.
    Any help would be greatly appreciated.
    Regards, Brendan.
    TABLE 1
    CATEGORY
    SUB CATEGORY
    Slat fencing
    Aluminium privacy screens
    Knotwood timber grain
    knotwood standard powder coated
    Standard pool fencing
    Flat top Black
    Flat top other colour
    Semi frameless glass
    Frameless glass
    Non standard pool and garden fencing
    Flat top
    loop top
    rod top
    loop and spear
    rod and spear
    level spear
    hi/lo spear
    florence
    mondello
    venice
    sorrento
    carini
    verona
    milan
    Pisa 2
    Pisa
    Meditteranean
    Pescara
    Louvres
    fixed horizontal louvre 85mm elliptical blades
    operable horizontal louvres
    Vertical louvres (Stefmar) using 65x16 aluminium slats
    160mm vertical louvres
    TABLE 2
    CATEGORY
    SUB CATEGORY
    Slat fencing
    Knotwood timber grain

    Brendan,
    Let me try to explain using a similar but different method:
    All the lines are shown for information flow and would not normally be included.
    The table in the top left is a working table where you interact with the information:
    You first select a category using a slider.  As you slide left and right the "value" (shown as 2 in column B) will change.  As the value changes the Category changes because the information is looked up from the category table (highlighted with a blue shaded background in the first picture.
    The subcategory will also change as you modify the slider in column "B" because you are changing the category, which selects which table is used for the sub-category (sub-category tables are highlighted in light green).  Once you select the category you can then slide through the possible selections for the subcategory (column "D").
    There are only two formulas and they are in the "Work" table:
    A2=IFERROR(VLOOKUP(B2,Category :: A:C, 2, FALSE), "<Not Found>")
    C2=IFERROR(VLOOKUP(D2, INDIRECT(A2),2,FALSE), "<NOT FOUND>")
    For A2=IFERROR(VLOOKUP(B2,Category :: A:C, 2, FALSE), "<Not Found>").... this means in cell A2 enter the text "=IFERROR(VLOOKUP(B2,Category :: A:C, 2, FALSE), "<Not Found>")" omit the first and last double quote
    This whole scheme requires the tables be named the same as the categories in the "Category" table
    I hope this helps.  If not please indicate what is causing you trouble.

  • Exporting Pop-up Menu to Dreamwaver?

    I am having trouble getting a pop-up menu (more specifically
    a drop down menu) that I created in Fireworks to work in
    Dreamweaver. I am exporting it as a Dreamweaver Library file and
    I'm thinking this may not be correct. None of my menus are showing
    up when I roll over the buttons.
    I though I read somewhere that Dreamweaver and Fireworks have
    a compatability problem with these.
    Any suggestions?

    Which version of FW are you using?
    It's very possible to do this, but you need to a) understand
    FW menus and
    how they work, b) understand DW Library items and how they
    work.
    Unfortunately if you meet criteria (a) and (b) you know
    enough to know that
    you wouldn't use either on a dare!
    Rather than the simply awful FW menu, use something that
    works reliably -
    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
    Rather than a design-time tool like Library items, use
    Server-side includes.
    Any other bubbles I can burst for you? 8)
    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
    ==================
    "rudbls" <[email protected]> wrote in
    message
    news:fj3mtg$4al$[email protected]..
    >I am having trouble getting a pop-up menu (more
    specifically a drop down
    >menu)
    > that I created in Fireworks to work in Dreamweaver. I am
    exporting it as
    > a
    > Dreamweaver Library file and I'm thinking this may not
    be correct. None
    > of my
    > menus are showing up when I roll over the buttons.
    >
    > I though I read somewhere that Dreamweaver and Fireworks
    have a
    > compatability
    > problem with these.
    >
    > Any suggestions?
    >

  • Show Pop Up Menu

    I'm having trouble accessing the "show pop up menu" option in
    the behaviors + palette. It's greyed out.
    I am just trying to create a pop-up menu for some links.
    Here's what I'm doing:
    1. highlight the word that will be the link
    2. type # in the link window (I've also tried to insert a url
    here)
    3. I've tried selecting the link word or selecting the
    reference to it at the bottom of the DW page
    4. Click on + in the behaviors palette
    Thank you

    If your new template is using the DW popup menu you will not
    be able to
    update the links as Gary already mentioned. The reason for
    this is that all
    the links for your popups are in an external javascript
    file... when it
    comes time for a child page to be updated, it cannot read the
    links in the
    js file and does not update your pages.... this is *one* of
    the reasons why
    this pop menu system is not highly thought on this forum....
    more about js menus here:
    http://apptools.com/rants/jsmenu.php
    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
    CSS Tutorials for Dreamweaver:
    http://www.adobe.com/devnet/dreamweaver/css.html
    > Thank you for replying.
    >
    > Yes, it's in a template. I just tried saving my template
    as an html file,
    > and
    > was able to make the pop-up menu. But now if I save it
    as a template, how
    > can I
    > link all the files (there are many) to this new
    template.
    >
    > If I rename this template with the name of the one I
    used to create the
    > files,
    > will DW behave as if it's the same template? Will it
    update my files when
    > I
    > make changes, even though it was not the one I used to
    create these files?
    >
    > I've had pesky template problems before and afraid to
    mess up the original
    > template which I used to create all the files.
    >

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

  • PREVIEW - Where is the "SELECT" toolbar pop-up menu?

    I'm using Preview Version 6.0.1 (765.4) and MacOS 10.8.2.  I want to separate an image from its background. To do this I need to go to the Toolbar, open 'Select' and then choose Instant Alpha.
    Problem is I can't find the Select pop-up menu.
    https://dl.dropbox.com/u/11373233/MacDiscussions/Preview/Screen%20Shot%202013-01 -26%20at%2015.21.47.png
    Preview Help says "If you can’t see the Select pop-up menu in the toolbar, you may need to resize the window."
    I've tried all sorts of window sizes but none have made the Select menu option manifest itself. I suppose that it's possible that my interpretation of "resize the window" may be different from Apple's.  But I don't know.
    I've also tried Customize Toolbar in the View menu but the Select menu option isn't there to drag to the Toolbar.
    I've tried resaving the file from jpeg to PDF and working on that instead, but still can find no Select option.
    Does anyone know why I can't find the Select menu in Preview's Toolbar?

    leroydouglas wrote:
    Preview> under View you can open Show the tool bar.
    You may have to drag the image wider in order to see the instant alpha tools etc on the right side.
    There are 2 short cuts:
    shift-command-\   ( same as command-| )
    shift-command-a
    Hi Leroydouglas
    Thank you for your reply.
    leroydouglas wrote:
    Preview> under View you can open Show the tool bar.
    First thing I tried. Made no difference.
    leroydouglas wrote:
    You may have to drag the image wider in order to see the instant alpha tools etc on the right side.
    Interesting point.  As I said, I have done all this of course,. Hence I doubted my interpretation of the Help Page instructions.
    However I find, even now, that when I drag the right edge of the window over to what would be half way across my second screen if it were connected (it is disconnected right now because the monitor has died and I haven't replaced it yet) still all I can get are the options as far right as the crop tool.  That's it.
    There are 2 short cuts:
    shift-command-\   ( same as command-| )
    shift-command-a
    I found them to be -
    shift-command-\ 
    shift-command-a ( same as command-| )
    But, what the heck, who cares? Neither keystroke made any difference.
    Might be a clue though?
    Again, thanks for taking the trouble to reply, Leroy.  Much appreciated my friend.

  • Where is the Text and Filter Pop-Up Menu in Aperture?

    I am very new to Aperture, and I am having trouble finding the Filter Pop-Up Menu and the Text Box. Any help would be appreciated. Thanks!

    The text pop-up menu you read about may have been the Add Filter pop-up menu in the Query HUD (Cmd-F). You can use it to add additional text search boxes to the HUD. You already have one by default in the upper right corner of the HUD.
    That's for searching.
    Again, if what you're trying to do is overlay text on an image, you can't really do that except as I described the previous reply.
    If what you're trying to do is enter text to an image's metadata, you do that in the Metadata Inspector (I).

  • Where is the the "Library pop-up menu near the top of the iTunes window."

    Need some some help with music sharing. Where is the "the Library pop-up menu near the top of the iTunes window." ?
    Will this work with a Windows laptop running iTunes?
    /m

    leroydouglas wrote:
    Preview> under View you can open Show the tool bar.
    You may have to drag the image wider in order to see the instant alpha tools etc on the right side.
    There are 2 short cuts:
    shift-command-\   ( same as command-| )
    shift-command-a
    Hi Leroydouglas
    Thank you for your reply.
    leroydouglas wrote:
    Preview> under View you can open Show the tool bar.
    First thing I tried. Made no difference.
    leroydouglas wrote:
    You may have to drag the image wider in order to see the instant alpha tools etc on the right side.
    Interesting point.  As I said, I have done all this of course,. Hence I doubted my interpretation of the Help Page instructions.
    However I find, even now, that when I drag the right edge of the window over to what would be half way across my second screen if it were connected (it is disconnected right now because the monitor has died and I haven't replaced it yet) still all I can get are the options as far right as the crop tool.  That's it.
    There are 2 short cuts:
    shift-command-\   ( same as command-| )
    shift-command-a
    I found them to be -
    shift-command-\ 
    shift-command-a ( same as command-| )
    But, what the heck, who cares? Neither keystroke made any difference.
    Might be a clue though?
    Again, thanks for taking the trouble to reply, Leroy.  Much appreciated my friend.

  • 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 menu behind flash piece

    Hello,
    I first had a problem with the pop-up menu showing up behind
    my flash piece, I found other posts that have helped me solve this
    problem, but now my problem is in IE the flash piece has a light
    gray border around it when you rollover and a tool tip shows up
    that says click to activate and use this control. If a user were to
    click on the flash piece to navigate they need to click twice once
    to activate and then second to go where they selected, this double
    click happens with the expanded menu as well. Is there anything
    that can be done to eliminate having to click on the flash piece to
    activate (though I don't understand what there is to activate
    because the flash piece works before clicking on it).
    Thanks,
    KG

    That's unfortunate.
    You're in trouble in lots of ways. Please read this by the
    person who
    adapted those menus for Macromedia -
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    There are MUCH better ways!
    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
    ==================
    "hcinderela" <[email protected]> wrote in
    message
    news:et82mi$b8r$[email protected]..
    > Its FW MX 2004

  • Action pop-up menu

    The "Action pop-up menu" icon does not appear in iPad 4S iCloud toolbar as stated in Apple Support's "iCloud: Manage junk email" narrative.
    My goal is to create a junk file in the iCloud email accounts column and add a junk identifier icon in the toolbar.

    Atanas wrote:
    ... and reinstalled the iMovie only (one version down), but that didn't solve the issue....
    I've read sooo much trouble with those self-declared 'optimzers' ...-
    iM/iLife is heavy involved into the structures of MacOS, Quicktime, the iLife-apps itself are a 'suite' of integrated programs, they do share resources ...-
    I like this two numbers: out-of-the-box, a new Mac shows in Finder ~300 files & folders. +de facto+ more than 40.000 are installed ...
    with square #1, I meant a complete re-install of your Mac +in toto+ ...
    (usually, I NEVER give advice for any re-install, but reading 'optimizer' ... < shiver > )

  • Pop Up Menu Behavour Dissappears

    Hi Guys, I have Dreamweaver MX 2004. I have added
    Navigation Box with menu listed vertically. I have then added
    pop-up menu through the Behaviour going up to three levels deep.
    These are attached to Buttons I have downloaded from a free Button
    site. I enter all the information and that is fine. When tested in
    the browser (F12) the pop ups display correctly. The propblem I
    have is that when I close down Dreamweaver and then re-open the
    program, that if I need to edit the Pop-up Menu, they have
    dissappeared from the Behaviours Panel, yet if I check in the
    browser (F12), the pop ups still display as previously set up. How
    do I get the pop up hiearchy to display in the Behaviours Panel so
    I can edit changes....... I have tried all sorts of different ways,
    to no avail. I am about to give up in disgust. Will upgrading to
    Dreamweaver 8 fix the problem? Can some one assist me please with a
    solution or a work around. It would appear that this is a program
    fault . My direct email addy is [email protected] if you
    can assist. Thanking you. Regards, John Codrington

    What fixes this problem is not to use those menus. They are
    exceptionally
    poorly implemented and integrated with DW, and will give you
    nothing but
    trouble.
    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
    ==================
    "Adventuresome" <[email protected]> wrote in
    message
    news:[email protected]...
    >
    Hi Guys, I have Dreamweaver MX 2004. I have added
    Navigation Box
    > with
    > menu listed vertically. I have then added pop-up menu
    through the
    > Behaviour
    > going up to three levels deep. These are attached to
    Buttons I have
    > downloaded
    > from a free Button site. I enter all the information and
    that is fine.
    > When
    > tested in the browser (F12) the pop ups display
    correctly. The propblem I
    > have
    > is that when I close down Dreamweaver and then re-open
    the program, that
    > if I
    > need to edit the Pop-up Menu, they have dissappeared
    from the Behaviours
    > Panel,
    > yet if I check in the browser (F12), the pop ups still
    display as
    > previously
    > set up. How do I get the pop up hiearchy to display in
    the Behaviours
    > Panel so
    > I can edit changes....... I have tried all sorts of
    different ways, to no
    > avail. I am about to give up in disgust. Will upgrading
    to Dreamweaver 8
    > fix
    > the problem? Can some one assist me please with a
    solution or a work
    > around.
    > It would appear that this is a program fault . My direct
    email addy is
    > [email protected] if you can assist. Thanking
    you. Regards, John
    > Codrington
    >

Maybe you are looking for

  • ABAP Report

    hi experts, i need ur help can someone help in writing out vthe code for this 1. Sum the Goods receipt quantity in order unit (MSEG-BSTMG) for all of the following Movement types (MSEG-BWART):   200 through 292   551 through 556   701 through 718 Che

  • This problem will occur when running in 64 bit mode with the 32 bit Oracle client components installed.

    hi friends , My report Fetch from the orcle database , we installed Oracle 10g and 11g - clent 32 -bit on win 2k8 -64 bit machine .while design time runing fine,but ofter depolyement im facing below issue. In error has occurred during report processi

  • Abap code of user EXIT for my first post on FISCPER_CALC_MONTH or year

    *ZSIGFISCPER Exercice cumulé jusqu'à la période selectionnée par utilisateur TABLES: TVARVC. DATA: L_S_RANGE TYPE RSR_S_RANGESID. DATA : LOC_VAR_RANGE LIKE RRRANGEEXIT, v_year like T009B-BDATJ, v_per3 like T009B-POPER, v_month(3) type c, v_initial(7)

  • JSP/Java to Generate PDFs

    I am looking into what is involved in dynamically generating PDFs in Java. The project that I am looking into involves taking data submitted via a form and generating a PDF from it. Can anyone direct me to a good site, tutorial, or give some advice o

  • Where to find javax package??

    I got a javax package which holds only servlet package and now i need ejb which not there in my package..Please tell me where the javax whole package ????