Simple pop-up lists

I am trying to create a small pop-up windows for very short lists of organizations within a country. When a country is clicked, a small white window, not the size of the regular site, should appear, preferably but not necessarily next to the name of the country has clicked. Should be fixed width, but the length is not, because some countries have quite a long list of organizations.

I'm quite new to Dreamweaver and do not have an idea on how to do it. Is there an extension there, I can buy to make your job easier? I tried to do it by making a new model, but the model who became a .asp, was released in its original coded splendor on the web. I enclose the code here, for what it can be used.

OK - well, then you need to use a separate page for each such link
which is open in a new window pop up. You can do this with the DW
OpenBrowserWindow behavior.

--
Murray - ICQ 71997575
Adobe Community Expert
(If you * MUST * write me, don't don't LAUGH when you do!)
==================
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
==================

"Mila D. Aguilar" wrote in message
News:fc8inc$AO7$1@forums. Macromedia.com...
> I just saw the BoxOver. It's a good idea for little snippets and maybe I
> can
> use some time, but the problem is, my users will not be able to print
> the
> addresses. I need boxes that are larger (510 pixels fixed, variable
(> length from 450), more permanent and printable.
>

Tags: Dreamweaver

Similar Questions

  • Windows Live ID typo, how to remove this pop-up list when I connect?

    Windows Live ID typo, how to remove this pop-up list when I connect?

    Post Windows Live questions in the appropriate forum found here:
    http://windowslivehelp.com/

  • Index selected in the pop-up list

    I now have the code sucessfully fills a table for use with a pop-up box.

    I have problems to get the correct index selected in the box, however.

    the table being introduced in the pop-up list is JUST strings

    FOR EXAMPLE:

    myArray = OtherString, Stuff, a phrase, an example of House

    in a function, I make the pop-up box with 2 buttons and an event listener:

    // add buttonsp.addButton("QuizMe!");p.addButton("Search Again");p.addEventListener(Event.SELECT, getIDFromClicked);
    

    The function I use to capture the entrance

    private function getIDFromClicked(e:Event){
    
           var d:PopupList = e.target as PopupList;
           //retrieve the selected index/indices
           trace("Selected Index : " + d.selectedIndex.toString() + " ");
           trace("Selected Index : " + d.selectedIndex + " ");
    
    }
    

    This will display

    Selected Index : 0
    Selected Index : 0
    

    even if you select articles 15 (out of 29) on the shortcut menu.

    I was watching several examples how do I capture the selected index entry and I believe that my code to work properly, but I can't seem to understand why the index is * always * 0.

    thoughts?

    Hey dtater,

    the selectedIndex property returns only the selected from the pop-up button. to get the index of the selected array element, you can use the selectedIndices property. an example would be:

    (in your event listener)

    trace("Selected index: " + d.selectedIndices[0]);
    

    hope that helps. Good luck!

  • Help with cascading pop-up list on slot form of table

    I'm new to APEX (on APEX 5.0) Please bear with me!  Let's say I have a tabular form with 4 columns (A, B, C, D)

    Here's the logic:

    1 column A is just a static list of 2 values.

    2 column B is determined by what you choose in column a.

    3. column C is determined by what you choose in column A and column B

    4 D column is determined by what you choose in column A and column C


    I need a list of popup cascading for columns B, C and D but since its under table, with several lines it is difficult.  I followed this link:

    Jari APEX blog: 'cascading' list Article on slot form table

    I was able to get the above to work in my application to meet business #2 logic, but I can't figure out how to make it work for the logic #3 and #4 because there are several critical values.  Is there an easier way to do this?  Can someone help me understand what the javascript code does in the link above?

    More precisely:

    (function ($) {;})

    / * Cascading pop-up list * /.

    $.fn.htmldbCascadePopup = function (parent, tempItem, options) {}

    options = $.extend({)

    loadingTxt: 'Loading... '. »,

    loadingCss: {'width': '80px","float": 'left'}

    (}, options);

    return this.each (function (i) {}

    var $self = $(this);

    $anchor = $self.next ("a").

    $parent = $(parent) .eq (i).

    popupFn = new Function ($anchor.attr("href").substr (11));

    $parent.change (function () {$self.val("").effect("highlight",{},2000) .focus () ;});})

    {$anchor.click (function (e)}

    e.preventDefault ();

    var parentVal = $parent.val ();

    if(!parentVal) {parentVal =' ";};}

    Apex. Server.Process ("DUMMY", {}

    p_arg_names: tempItem,

    p_arg_values: parentVal

    },{

    data type: "text",

    beforeSend: function() {}

    $self

    . Hide()

    .after ($("< div/>", {"html":options.loadingTxt,"la classe css":options.loadingCss",": "ui-saisie semi-automatique-chargement"})

    . Width ($self.outerWidth ())

    . Height ($self.outerHeight ())

    );

    },

    complete: function() {}

    popupFn();

    $self

    . Show()

    . Next ("div. UI-AutoComplete-Loading")

    . Remove();

    }

    });

    });

    });

    };

    (}) (apex.jQuery);

    I have a Monday deadline for this so my time is up.  Here's what I did to help someone, even if it has a very quick and dirty solution.

    After the example of Jari blog work, I learned the following: Popup LOVs have a display value and a return value.  They correspond each to their own field in tabular form.  For example, the display for my column 'B' column is f10 and the back column is (hidden) f09.  Column C depends on A and b.  So, I did the return value of B for the concatenation of A & B.  Then I pass that value into a variable of the APEX with Jari javascript and try the parse to the LOV for column C.

    It gives me values in the table that I don't really want.  If column A is supposed to be "12345" and column B is supposed to be "XXXXX", then the value in column B is "12345". XXXXX. "  So I'll make a post process clean.

    All this could be increased if I know enough javascript to add multiple parameters to the code of Jari.

  • Name to appear first in the custom dialog box pop-up list

    Hi Forum.

    Thanks for the support so far.  I'm creating a simple custom dialog box which will be "popup", few names in the drop-down list.

    I read an external txt file bearing the name corresponding to the drop-down list. I try to display the name "Stephen" in the txt file as the first and then others follow one by one. Please help on this.

    name listed in the pop-up window

    Dialog.Load ({}

    names of:

    {

    'The King':-1.

    'Queen':-2,.

    'Jack':-3,.

    "Stephen":-4,.

    "Robert":-5,.

    }

    })

    He tried as below but found that the myList3 variable is directly instead of its value ("Stephen").

    Dialog.Load ({}

    names of:

    {

    myList3 : + 1, / / the variable myList3 will be known as "Stephen" stored inside.

    'The King':-1.

    'Queen':-2,.

    'Jack':-3,.

    "Stephen":-4,.

    "Robert":-5,.

    }

    })

    Appreciated your timely help on that. Thank you.

    See examples 3 and 4 in the execDialog API reference.

  • change the pop-up list for all cells using this pop-up window

    I have a workbook of numbers more who uses the same large table pop up in almost every row in each sheet...

    How can I maintain the list of items on the global scale (in all occurrences)?

    Creating on the Mac to use it on all my devices.

    Thank you!

    Let's say you already have a selection of cells that are formatted as a menu pop up.  Here is an example.  C2, D2 and E2 are all the pop ups.

    If you want to add a new item to all the pop-ups AND want to keep the current selections, perhaps you want to add 'In PROGRESS' for the existing pop ups, maintain the current selection and convert the cell with the new element to a set menu.

    Simply select the cells with the existing pop-up and the cell with the new item.

    In this case, I selected the cells C2 to E2, then I held the command key and click cell E3

    Now, to make all these popups of cells using cell formatter:

  • My 'exceptions' of registered Web sites pop up list remains ever made!

    Tools > Options > content > Exceptions

    I tried EVERYTHING to save the websites where I want to jump - rises resulted - in vain! Whenever I reboot, my the pop-up exceptions list is reset with no registered site. Help, please?

    I have an almost identical machine, Windows 7 OS on two (64 bits). One of the machines recorded the pop ups very well. I tried every article found troubleshooting w / in the forum on this topic. I have a check cross-each setting on the computer that registers with success my list pop up exceptional compared to the machine which NEVER recorded my menu drop-down. They are identical machines, similar programs/set-ups, and. I use the same FF modules for each machine, the same. I tried FF "Refresh", and I was up to uninstall and reinstall (I even tried Revo uninstaller on one of the many Firefox UN / re install attempts.) Lengths comprehensive to make sure previous firefox remains of last profiles were not used.

    What should I do here? I have Internet Explorer disabled on my two machines. I use CCleaner to remove the temporary files. (but again, they are the same settings and works of a machine, the other is not). I checked my settings of MBAM (even on two machines). Currently I don't have any other browsers installed - but I can always "allow re-" Internet Explorer if necessary (even once, IE is disabled on both machines).

    Help, please! I'm dying to understand this!

    PS - The two machines are usually State "you are using an older version of Firefox" (like at the top of this page, or check Firefox plug-in)-Despite both being 64-bit versions to date and up to date. "Assumptions" about my version of FF and the BONES are incorrect. From this post I'm using version FF 50.0.2 and Adobe Flash Player Shockwave Flash 23.0 r0, c. 23.0.0.207 'up-to-date '. Finally, the two machines have been restored to windows 7 pro. In fact, have been canceled, technically speaking (I just installed Win7 on them b/c I prefer 8, 8.1, or 10).

    When data loss occurs?

    • only at the start of Windows - software utility like CCleaner (but perhaps something else?) would be the prime suspect in this case
    • whenever you exit Firefox and start it again - if you have Advanced SystemCare, make sure that it is not blocking (backward) browser settings
  • Pop-up list works poorly in report multi-record

    It is a strage behaviour:

    If I use a popuplist in a report that can be modified, it properly displays the Description I want to show, but when I select one choice, it returns the Code instead of the Description in the text box.

    My request is very simple:

    Select dsmuni, idmuni
    of int_localidad
    order by 1


    Please, any ideas?
    Thanks in advance.

    David.

    Hi David,

    OK, now I know what you mean... Unfortunately this is how it works! As you say, kind of pointless really. What is the point to display the key value that is usually meaningless to the user when you need to display is the description associated with the value of this key?

    Which is why I rarely use tabular forms, and when I have to, I never use popup LOVs with them. I try to use selection lists instead (if possible) or simply add an icon 'Edit' and use a normal form (in the same page or in a separate page) to change the record.

    There are solutions, I don't remember any off the top of my head, but you can search the forum for them...

    Good luck!
    Luis

  • How to fill two text fields based on a simple drop down list

    I'm trying to set up a form so that the two text fields will fill with a text by default (separate for each text field) at the same time.

    Here is a screenshot of the fields.

    Thus, for example, if I select Utah in the drop-down list in 'State', ' OH Fund Center "is automatically filled in with APWSWR4949 and"OH WBS"is automatically filled in with WR49.73.0003.

    I have a similar script for down text in form fields, but the script does not work.  I tried the following script:

    var v1 = this.getField("RecState").valueAsString;

    If (v1 == "Utah") event.value = APWSWR4949;

    else event.value = "";

    However, it would not AutoFill OH Fund Center area.  And I have no idea how complete both fields at the same time.

    Any help would be greatly appreciated.

    Thank you!

    Crystal

    Strings must be enclosed in quotation marks. So change your code:

    var v1 = this.getField("RecState").valueAsString;
    if (v1=="Utah") event.value = "APWSWR4949";
    else event.value = "";
    

    If it works, then you can use code similar to your other field.

  • Base Panel disappeared from the develop module.  5.7 Mac OS 10.10.1 LR control I tried clicking on the headers of panels that is always there.  Don't get a pop up list.  Can not find the way to restore.  What should I do?

    Base in the development model Panel no longer appears.  Began this afternoon.  Use LR 5 since its release.  No problem before today.  Searched the forums and has not developed the control, click module headers.  List of control does not appear.  What should I do next?  I did a restore of Time machine, but nothing has changed.

    In the develop Module, go to the window menu in Lightroom (it's between the view and the aid), select panels, select Basic.

  • Question in the simple drop-down list spark

    Hello

    In my interface, I have a drop-down list. When the user changes the value, I'm throwing up a warning window ("are you sure...'") because the change has a ripple effect. Everything works fine except when the user makes a selection in the alert window, the drop-down list remains open. I tried the "closeDropDown" method, but that doesn't seem to work. I thought it's maybe due to the Alert control, but I don't know.

    Any help or a little nudge in the right direction I can find an answer would be appreciated.

    You can try waiting for the close event set up the alert.

  • simple pop-up with AS3?... .not using javascript

    It is EXACTLY what I want... but in AS2

    http://www.flashkit.com/tutorials/ActionScripting/creating-Elizabet-889/index.php

    a simple click on a button, a popup appears in the image, then the image, an exit button. Help?

    to do this, you need to place this popUp on the mainTimeline on a layer separate above anything else.

    After that it defined in the main timeline to visible = false; and you can reference it like this:

    MovieClip (root).popUp.visible = true;

  • I lost my saved games in the game menu pop-up list.

    I'm on Vista my games menu would let me do a right click on a game and that I would see my saved games. I could just click on it and it would launch the game using this saved game.

    After I upgraded to Win7 (pro), it seems to be lost.  Is there some setting somewhere to put this back?

    Thank you

    Don H.

    Hello TheOldGuy101,

    Unfortunately, the saved games option was selected the right-click contextual menu of games preinstalled in windows 7.

    Check if you can access the saved games in windows 7. To access the saved games. Click Start > type saved games in the search box.

    However, I suggest you to post your comments in the link mentioned below:

    http://connect.Microsoft.com/

    Please get back to us if you have any other questions.

    Thank you
    Mir - Microsoft Support
    Visit our http://social.answers.microsoft.com/Forums/en-US/answersfeedback/threads

  • Simple pop-up with the Menu Options

    Greetings,

    I create an application that monitors the MicroSD card to a file.  I have the application auto-start and an alert is triggered when a well-named file is changed.

    What I want to do, is any application that they are currently using, I want a popup window to be displayed with a small text and then have several options they can choose as 'Upload', 'Email', 'Delete', etc.

    I did most of the coding without a user interface, but I'm having a hard time looking for the correct terms to give me the kind of UI I am looking.

    If someone could just provide the kind of UI I describe or point me in the right direction.  I tried the sample applications Blackberry and I was unable to find what I was looking for.

    Thank you

    Jeff

    You want to create a subclass of PopupScreen and push this global modal to get over other applications.

    See PopupScreen and UIApplication.pushModal)

  • Simple drop-down list (not navigation)

    Hi all.
    I must admit that I am more versed in Flash that I am unfortunately in Dreamweaver. I'm building a Web site from this time, and I have a menu drop-down. I need for this drop down menu to post a link to other pages when a menu item is selected and you press go (positioned next to the menu) button (a bit like in the drop-down menus on this site). Someone will walk me please how to do something like that? I hope it's quick and easy. Thank you!

    Use the menu on the rerouting of DW. Or download the JumpMenuMagic of PVII extension -.
    http://www.Projectseven.com/

    --
    Murray - ICQ 71997575
    Adobe Community Expert
    (If you * MUST * write me, don't don't LAUGH when you do!)
    ==================
    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
    ==================

    "Sugaplum" wrote in message
    News:eeqvrd$3ov$1@forums. Macromedia.com...
    > Hello all.
    > I must admit that I am more versed in Flash in Dreamweaver
    > Unfortunately. I'll build a Web site from this time, and I'm a drop of water
    > down
    > menu. I need for this drop down menu to post a link to other pages when a menu
    > the next item
    > selected and (a bit on the go button (positioned next to the menu)
    > as
    (> the menu drop-down menus on this site). Someone please guide me how
    > to
    > go do something like that? I hope it's quick and easy. Thank you!
    >

Maybe you are looking for