Help with DW pop-up window

I am trying to get a po-up window when someone clicks the
link on my site. I am not sure that I am doing this right. I
created the pop-up using Behaviors but the link comes up in the
main window as well as the pop-up. Here is the link if someone
doesn't mind taking a look to see what I am doing wrong. Click on
ABOUT to see the pop-up. Thanks.
Mark

No doubt you have the link in both the href attribute and the
OpenBrWindow
behavior. To fix this, change this -
<a href="whatever.html" onClick="MM_openBrWindow(...)">
to this -
<a href="whatever.html" target="_blank"
onClick="MM_openBrWindow(...);return
false">
Now you have a link that will work (almost correctly) whether
your visitor
has javascript enabled or not.
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
==================
"forumnotifier" <[email protected]> wrote in
message
news:ee6i9s$695$[email protected]..
>I am trying to get a po-up window when someone clicks the
link on my site.
>I
> am not sure that I am doing this right. I created the
pop-up using
> Behaviors
> but the link comes up in the main window as well as the
pop-up. Here is
> the
> link if someone doesn't mind taking a look to see what I
am doing wrong.
> Click
> on ABOUT to see the pop-up. Thanks.
>
> Mark
>

Similar Messages

  • I get an error stating cc cookies dir: cannot make folder / cookies: Permission denied (error 13) when I attempted to download the creative cloud installer on my Mac. Can anyone help with similar pop up window?

    I get an error stating cc cookies dir: cannot make folder / cookies: Permission denied (error 13) when I attempted to download the creative cloud installer on my Mac. Can anyone help with similar pop up window?  I'm trying to get a trial version of CS5. 

    You do not need to involve Creative Cloud to install/try the trial version of CS5...
    You can download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    CS5: http://prodesigntools.com/all-adobe-cs5-direct-download-links.html

  • Help With Video Pop Up Window.

    Hi there Im very new to web design so please understand that I am a complete novice, so my understanding is limited. Any help would be most appreciated.
    Could anyone provide me with a piece of code I can put into the HTML snippet function that will allow me from a hyperlink that says "video" to open up this Vimeo video (see below) in a new window that is the exact dimensions of the given video.- Almost like a pop up.
    Many thanks to any help,
    - preferably I want the appearance of the video to be like the embedd code below regulates: to not include any additional text etc.
    <object width="255" height="143"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clipid=8695239&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;showportrait=0&amp;color=0&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clipid=8695239&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;showportrait=0&amp;color=0&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="255" height="143"></embed></object>
    also here is the link to the original page http://vimeo.com/8695239
    Thanks again, Robin.

    On this page you'll find code to open a page with video in a new window :
    http://www.wyodor.net/MoreEmbed/
    Click where it says :
    Here's a basic sample page with shaded background you can use for testing.
    Click to open a window with the pop-up code.

  • Help with this Pop up window!!!

    So,
    I am working on my wife MBA Mid 2012.  She keeps getting the following pop up for a java update and download.  I complete the download many times and it still appears.  Any help?

    Most likely, you have a web plugin that depends on the Java runtime distributed by Apple, such as the Facebook video calling plugin or the "NexDef" plugin for watching baseball streams. If you no longer need the plugin, remove it. Otherwise, install Java.

  • Html tables with javascript pop up windows

    I have two tables with different table-id in html, that are as follows -
    table-header - consists of dynamic week wise days + resources
    table-data in with same nnumbers of columns...
                          for Img - http://i.stack.imgur.com/Gwvoq.png
    The Assign Task is a Button in every cell of table-data , What I need is , whent I click any button, the Pop-up window ( Kendowindow which is I m using right now in Javascript preferably) should display respective Cell row's 1st cell i.e resource's name and Id and cell column's 1st cell i.e. Date string.
    Please suggest the solutions.... Help is kindly appreciated.
    P.S. -- Please don't suggest Kendo Grid or Scheduler, because I can't able produce this kind of format, If you can do pls share your code and procedure.

    This forum is about JavaScript in PDF files, not in HTML pages.

  • Issue with date pop-up window coming up continuously

    Hey all,
    We are experiencing some sort of weird Swing behavior in our
    application with a date pop-up window. When we update date
    values, a pop-up date selection window displays. Then we choose
    a date by either double clicking a date or clicking on a date
    and clicking OK. Well, on subsequent updates of dates in a
    specific table, it is prompting us to select the date 3-4 times
    before taking. In other words, the pop-up date selection window
    displays 3-4 time consecutively despite choosing a date each
    time before taking affect on the last selection.
    Looking at the code and the behavior, it seems the application
    is simply ignoring the fact that the event has been completed.
    has anybody experienced behavior like this? Any help would be
    appreciated. We are stumped.
    Need more information?
    Thanks in advance,
    Tim

    here's a snippet of the code that's generating the calendar
    dialog:
    when a "double click" is detected:
    public void mouseClicked(MouseEvent e)
    if(e.getClickCount() == 2)
    //consume event to prevent it from "contaminating" other
    mouse listeners
    e.consume();
    if (AbstractApplication.LOG_INFO)
    System.out.println("Calendar row double-clicked");
    CalendarDialog cd = AbstractApplication.getCurrentInstance
    ().getCalendarDialog();
    cd.init(fieldToModify);
    cd.setLocation(100, 100);
    cd.resetDefaultButton();
    cd.setVisible(true);
    which calls this in CalendarDialog:
    public void init(JTextComponent aFieldToModify)
    setFieldToModify(aFieldToModify);
    DateTime currentDate = validateTextDatePassedIn
    (getFieldToModify().getText());
    setDateAsText(currentDate.toString());
    //remove button listener
    if(OKButtonListener != null)
    getOKButton().removeActionListener(getOKButtonListener());
    //set new button listener, then pump in appropriate date info
    getOKButton().removeActionListener(getOKButtonListener());
    setOKButtonListener(new CommitToFieldListener());
    getOKButton().addActionListener(getOKButtonListener());
    if(currentDate != null)
    { initDateInfo(currentDate); }

  • Having problems with a pop up window when downloading

    Hi all,
    i developed a site in asp.net,
    everytime i click to download a file on the site, it opens a *blank window* and leaves it open, it only happens with safari, it works fine with the other popular browsers, with the others, it opens the download box directly.
    for safari it still downloads directly but the blank pop up window still stays open.
    im not a pro, but would like to fix this, i would be really greatul if someone could help me for this,
    Thanking you in advance!

    Thank you for your response Carolyn,
    but unfortunately it has more to do with coding compatibility, i put the target to blank as highlighted. it opens the window for all browsers and closes it automatically when the download starts, but with safari it stays open.
    here is the code for the download asp.net function,is there anything which needs to be put up there to be compatible with safari?
    i do hope that it is now clearer,
    thanking you again!
    <table border="0" cellspacing="0" cellpadding="0" style="margin-left:0;">
    <tr>
    <td width="185" height="89" align="center"></td>
    </tr>
    <tr>
    <td height="30" align="center" ><table width="100%" border="0" cellpadding="0" cellspacing="5">
    <tr>
    <td width="38%" align="right" ></td>
    <td width="62%" align="left" class="riqi">Campus</td>
    </tr>
    </table></td>
    </tr>
    </table>
    </td><td></td><td></td><td></td><td></td>
    </tr>
    </table>
    Message was edited by: positivologist

  • Need Help with flash pop ups.

    Ok, i have a problem. I have been working on for about 43
    hours now lol. Im trying to load a Movie Clip from my library to my
    Flash Application From. Not only that but it has to be a pop that
    is dragable and has many componets that have to work. When i get my
    movie clip out on the stage, the hand icon comes up and i cant
    select any of my list menu componets or button and i cant get it to
    drag around. What do i need to do or better yet, how do i need to
    do it. Im out of ideas and i need this working so i can move on in
    my project for one of my clients. Please, any help would be
    appreciated. Joey ^.^

    Go to
    http://www.divahtml.com and get
    DivaPOPGold. It's a good investment
    and will do exactly what you want.
    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
    ==================
    "garynng" <[email protected]> wrote in
    message
    news:geai64$8av$[email protected]..
    > Here's what I'm trying to do - I have thumbnails on my
    site and when you
    > click
    > on them I want a larger image to show up in a pop up.
    I've accomplished
    > this by:
    >
    > 1. Clicking on the thumb and adding "javascript:;" as
    the link
    > 2. Clicking on <a> so I can add a behavior
    > 3. Adding the behavior "on click, open browser" and
    adding the larger
    > photo.
    >
    > Here's the test site - click on the photo in the center
    of the page with
    > the
    > gal sipping on a glass of wine:
    http://localwally.com/napatest
    >
    > Here's the code: <a href="javascript:;"
    >
    onclick="MM_openBrWindow('reynoldsfamily_1000.jpg','','width=1000,height=700')">
    > <img src="Renolds_400.jpg" name="Image1" width="400"
    height="300"
    > border="0"
    > id="Image1" />
    >
    > (note: if you look at the code source on the test site
    you might see some
    > goofy stuff and this is where I experiment on code, but
    the code I pasted
    > is
    > exactly what is on every photo behavior and they all do
    the same thing)
    >
    > It works - but now I want to finetune it. On IE the pop
    up window does not
    > fill the screen and you have to drag it up to see the
    entire larger photo.
    > On
    > Firefox, the entire image shows up but it's right
    justified. What I want
    > is for
    > the photo to just be centered on the screen. Any
    suggestions?
    >
    >

  • Help,how close pop-up window ,and open another view

    Hello,
    How click the pop-up window button ,then close the pop-up window .
    At the same time open another VIEW,and  transfer PO number to the VIEW.
    thanks

    Hi,
    First step is set the SCREEN TYPE as "Modal Dialog Box" in screen property tab.
    Then in PBO of the popup screen take a new GUI status and select DIALOG BOX as status type.
    Then assign some function code in 'X' button say 'CANCEL'.
    the put ur logic like below :
    PBO
    module gui_status.
    PAI.
    module user_command.
    module gui_status.
       set pf-status 'ZPOPUP'.
    endmodule.
    module user_command.
      if ok_popup = 'CANCEL'. " Where ok_popup is the ok_code variable in ur popup screen , also define it in TOP include
        leave to screen 0.
    endif.
    endmodule.
    Hope this will solve your problem and help you to put your logic.
    Thanks

  • I need help with blue screen on Windows 7

    Hi guys...I was wondering if someone could help me...!
    While I play a video game, I recieve a error blues screen message...I don't know if it is an error from my S.O, or it is an error for that video game...! 
    The message that I been given so far says :
    Problem signature:
      Problem
    Event Name:                        BlueScreen
      OS Version:                                         6.1.7600.2.0.0.256.1
      Locale ID:                                             10250
      Additional
    information about the problem:
      BCCode: 
                                                 50
      BCP1:                                                    FFFFF900C061C770
      BCP2:                                                    0000000000000000
      BCP3:                                                    FFFFF96000636D15
      BCP4:                                                    0000000000000000
      OS
    Version:                                          6_1_7600
      Service
    Pack:                                       0_0
     Product:                      
                            256_1
      Files
    that help describe the problem:
      C:\Windows\Minidump\022710-26223-01.dmp
      C:\Users\Caroline\AppData\Local\Temp\WER-125393-0.sysdata.xml

    Hi,
    In order to assist you, we will need the .DMP files to analyze what exactly occurred at the time of the crash, etc.
    If you don't know where .DMP files are located, here's how to get to them:
    1. Navigate to the %systemroot%\Minidump folder.
    2. Copy any and all DMP files in the Minidump folder to your Desktop and then zip up these files.
    3. Upload the zip containing the .DMP files to Onedrive or a hosting site of your choice and paste in your reply. Preferred sites: Onedrive, Mediafire, Dropbox, etc. Nothing with wait-timers, download managers, etc.
    4 (optional): The type of .DMP files located in the Minidump folder are known as Small Memory Dumps. In %systemroot% there will be what is known as a Kernel-Dump (if your system is set to generate). It is labeled MEMORY.DMP. The difference
    between Small Memory Dumps and Kernel-Dumps in the simplest definition is a Kernel-Dump contains
    much more information at the time of the crash, therefore allowing further debugging of your issue. If your upload speed permits it, and you aren't going against any strict bandwidth and/or usage caps, etc, the Kernel-Dump is the best
    choice. Do note that Kernel-Dumps are much larger in size due to containing much more info, which is why I mentioned upload speed, etc.
    If you are going to use Onedrive but don't know how to upload to it, please visit the following:
    Upload photos and files to Onedrive.
    After doing that, to learn how to share the link to the file if you are unaware, please visit the following link -
    Share files and folders and change permissions and view 'Get a link'.
    Please note that any "cleaner" programs such as TuneUpUtilities, CCleaner, etc, by default will delete .DMP files upon use. With this said, if you've run such software, you will need to allow the system to crash once again to generate a crash dump.
    If your computer is not generating .DMP files, please do the following:
    1. Start > type %systemroot% which should show the Windows folder, click on it. Once inside that folder, ensure there is a Minidump folder created. If not, CTRL-SHIFT-N to make a New Folder and name it Minidump.
    2. Windows key + Pause key. This should bring up System. Click Advanced System Settings on the left > Advanced > Performance > Settings > Advanced > Ensure there's a check-mark for 'Automatically manage paging file size for all
    drives'.
    3. Windows key + Pause key. This should bring up System. Click Advanced System Settings on the left > Advanced > Startup and Recovery > Settings > System Failure > ensure there is a check mark next to 'Write an event to the system
    log'.
    Ensure Small Memory Dump is selected and ensure the path is %systemroot%\Minidump.
    4. Double check that the WERS is ENABLED:
    Start > Search > type services.msc > Under the name tab, find Windows Error Reporting Service > If the status of the service is not Started then right click it and select Start. Also ensure that under Startup Type it is set to Automatic rather than
    Manual. You can do this by right clicking it, selecting properties, and under General selecting startup type to 'Automatic', and then click Apply.
    If you cannot get into normal mode to do any of this, please do this via Safe Mode.
    Regards,
    Patrick
    “Be kind whenever possible. It is always possible.” - Dalai Lama

  • Help with HP d145 on Windows PC. Specific error messages. iFelix help!

    My HP is connected to a windows xp system on my home network. When I try to add it to the Mac (I have enabled windows sharing on the PC), it shows up. When I try generic printingw (no d145 driver), I get this message when I try to print "Connection failed with error NTSTATUS_NOMEMORY"
    At the suggestion of a few people on the g5 board, I added the d145 driver Foomatic/HPIJS and specifically added it the printer list as the hpd145. However, now I get the following error
    "Unable to connect to SAMBA host, will retry in 60 seconds...foomatic-rip version $Revision 3.43.2.9"
    Can anyone help me out, Thanks in advance, Jim

    Hello Krish_12,
    This may be a result of security software interfering with the iCloud Control Panel's ability to communicate with our servers. The following article provides information that can help correct this.
    iCloud: Ensuring iCloud will work with security software in Windows
    http://support.apple.com/kb/TS4175
    Cheers,
    Allen

  • Need help with as3 for popup window

    I am nearing the end of the semester in my Flash Animation class. I have learned very simple AS3 things, code snippets etc. I am trying to find the actionscript for coding a very simple popup window, but have not found a clue.
    Here's what I want to do...I have a white box with some type on the stage. When a person clicks on the white box, I want a popup to open that is larger, that will contain the same type but larger. That box will have an x so it can be dismissed. I don't want to do this in html, only in Flash CS5. I don't want a browser window, I just want a bigger version of the smaller box. I know how to build both boxes, just don't know how to write the code. I know there will be an on-click mouse event listener, and then I am lost.
    Can anyone help with the code I might use? It would be most appreciated.

    It would be something along the lines of... (using instance names relative to your description)...
    popup.visible = false;
    whiteBox.addEventListener(MouseEvent.CLICK, showPopup);
    function showPopup(evt:MouseEvent):void {
         popup.visible = true;
    popup.popupX.addEventListener(MouseEvent.CLICK, hidePopup);
    function hidePopup(evt:MouseEvent):void {
         popup.visible = false;

  • Help with Flex based popup windows and data population.

    Hello, I need a bit of help with Flex popups. I have a flex
    application that uses a popup window when you click on a button and
    displays information about the image above the button the user
    clicked. I have about 4 images and I need to be able to display
    information about each of them through the popup window when users
    click on the buttons below the image.
    At this time, I am trying to do this from somewhat of a
    "static" point of view because I do not believe my hosting company
    supports Flex Data services. You will find my code below.
    First File.
    <?xml version="1.0" encoding="utf-8"?>
    <!--Application Initialization -->
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" width="850" height="750"
    cornerRadius="10" borderColor="#000000"
    backgroundGradientColors="[#1b3434, #000000]">
    <!-- Popup-->
    <mx:Script>
    <![CDATA[
    import mx.managers.PopUpManager;
    [Bindable]
    private var win:IMSAI;
    private function init():void{}
    private function createPopup():void{
    win=IMSAI(PopUpManager.createPopUp(this,IMSAI,true));
    win.title = 'IMSAI.Net';
    win.x = -500;
    win.y = 0;
    customMove.end();
    customMove.play();
    ]]>
    </mx:Script>
    <mx:Style>
    TitleWindow {
    borderStyle:solid;
    borderThickness:2;
    </mx:Style>
    <mx:Parallel id="customMove" target="{win}">
    <mx:Move duration="2000" xTo="{(stage.width - win.width)
    / 2}" yTo="{(stage.height - win.height) / 2}" />
    <mx:WipeDown duration="2000" />
    </mx:Parallel>
    This is the code to trigger the popup when a user clicks on
    the button. The code below is the code for the popup.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:TitleWindow xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical" creationComplete="init()"
    close="PopUpManager.removePopUp(this)"
    showCloseButton="true" alpha=".8"
    headerColors="[#000000,#1F3F62]" color="#FFFFFF"
    minHeight="200" minWidth="300"
    backgroundColor="#000000" title="IMSAI.net" width="520"
    height="394" verticalAlign="middle" horizontalAlign="center">
    <mx:Script>
    <![CDATA[
    import mx.managers.PopUpManager;
    private function init():void{}
    ]]>
    </mx:Script>
    <mx:Canvas width="470" height="338">
    <mx:Image x="10" y="10" width="140" height="103">
    <mx:source>file:///C|/ColdFusion8/wwwroot/IMSAI/Web-App/Site_Images/IMSAI
    Final Movie.swf</mx:source>
    </mx:Image>
    <mx:Text x="10" y="121" text="Description:" width="75"
    height="25" fontWeight="bold" color="#ff0000"/>
    <mx:Text x="158" y="10" text="Client:" width="52"
    height="28" fontWeight="bold" color="#ff0000"/>
    <mx:Text x="196" y="10" text="IMSAI Microcomputers
    &amp; Fischer-Freitas Company" width="252" height="39"/>
    <mx:Text x="159" y="46" text="Industry:"
    fontWeight="bold" color="#ff0000"/>
    <mx:Text x="216" y="46" text="Computer &amp;
    Microcontroller Manufacturing." width="232" height="35"/>
    <mx:Text x="83" y="121" text="IMSAI.net is the front-end
    web application for IMSAI Computer " width="355"/>
    <mx:Text x="10" y="136" text="manufacturing, customer
    support, and order processing. Driven by a Microsoft database
    back-end, this application includes rich flash forms, site search
    capabilities, and flash content. Currently under phase II of a
    three phase development plan, the e-commerce logic and processing
    capabilities are under development. Once finished, this application
    will be able to process orders provide customers with instant order
    confirmation numbers, shipment dates, and payment processing."
    width="428"/>
    <mx:Text x="10" y="244" text="Technologies:"
    fontWeight="bold" color="#ff0000"/>
    <mx:Image x="100" y="244" width="50" height="50">
    <mx:source>file:///C|/ColdFusion8/wwwroot/Sapphire
    Development/content/cf8icon.jpg</mx:source>
    </mx:Image>
    <mx:Image x="244" y="244" width="50" height="50">
    <mx:source>file:///C|/ColdFusion8/wwwroot/Sapphire
    Development/content/flashlogo.jpg</mx:source>
    </mx:Image>
    <mx:Text x="53" y="290" text="Coldfusion 8 Enterprise"
    height="30"/>
    <mx:Text x="230" y="290" text="Adobe Flash 8"/>
    </mx:Canvas>
    What I want to do is either be able to create a popup file
    for each button and photo, or find a way to pass a name like a
    button ID that corresponds to a XML data structure and then
    provides the appropriate data for the photo. I have tried altering
    the first page of code with the "public" declaration to allow for a
    second popup file for each button and image, but the IDE won't
    allow me to do such because it creates errors stating I can only
    have one public declaration of the kind and function above per
    application. Help resolving this would be greatly appreciated.
    Thank you.

    I have an idea of what I want to do. I am just having
    difficulty articulating how to go about such. I know I want to find
    a way so that if a user clicks on button 1, button 1 will send some
    kind of variable. For example, a user clicks Btn1 under a picture.
    Btn1 sends some kind of variable or binding to a data structure
    which returns the picture's description, price, etc. and calls the
    popup to display that data in a form like manner. Then the user
    click Btn2 which does the same thing. The only purpose of the popup
    is to display the data.
    Do I create a data structure with a related name to say a
    button name so when the btn is clicked, the a variable title btn1
    will prepend itself to the data structure like
    {btn1.imagename}
    {btn1.price}
    {btn1.description}.
    I want each btn to call a different set of data about each
    picture because right now, the code I have is allowing me multiple
    buttons, but is just displays the popup. Is there a way to create a
    separate popup window for each button? Thats seems as though it
    would be easier. Thank you for your help.

  • Help with creating a new window

    Hi there
    Could anyone help me with the coding to create a new window in java? Basically its when i click on a button a new window pops up
    thanks

    Icer_age828 wrote:
    Could anyone help me with the coding to create a new window in java? Basically its when i click on a button a new window pops upWe need more information on what you mean here, what you know and what you don't know. Do you understand the basics of Java? Are you talking about using Swing? If so, what exactly do you mean by a "new window"? You can create a simple dialog via the method JOptionPane.showMessage(...) method. Do you mean to create and show a new JDialog? JFrame? Do you know about ActionListeners and how to add them to jbuttons? Given your post, I think that your best bet would be to start going through the Sun Java Swing tutorial from the beginning. Look here .

  • 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();
    > }
    >
    >
    >

Maybe you are looking for