Flash Drop Down Menu Help Needed

I am using this set-up for a drop-down menu:
http://www.flash-menu.net/flash_drop_down_menu/flash_drop_down_menu_component.htm
I'm usign the vertical setup:  http://flash-menu.net/flash_drop_down_menu/download_vertical_drop_down_menu_free.htm
I want to put it both on a static html page (for those who do not have FLASH installed), as well as the FLASH site.
This is the site:  http://www.miltongordonussenate.com/flash/index.html
I want to put this menu on both the Campaign page, AND the Links page.
I have the seperate parts- the swf file, the html file, and the jscript file. I don't know if I am uploading the seperate files in the wrong place, or if I am just completely off base.
Can someone help me with this, please?

Ok, I see several people have looked, but no one has answered.
Is there a better way to do what I want to do? Any help is appreciated!

Similar Messages

  • Drop Down menu help needed

    Hi, on my site at the checkout page, it has 2 drop down menus, one for country and one for state.  right now as it is, if you select United States from the first menu, you are then able to select which state you are from.  But if any other country is selected, the Select State drop down menu dissappears.  The coding looks like this right now
    private function onChange(target:SelectCountryCombo):Void {
      switch(target) {
       case _selectCountry:
        if (target.value == 'US')
         _selectState.visible = true      
        else
         _selectState.visible = false;
       break;
    What i want to do is make it so that if you select canada the drop down menu stays visable, and i've added the provinces into the list.  I tried adding 'CA' along with the 'US' but that makes it stay visible for all countries, i only want it visible for the 2.  it seems easy but i really dont know action script very well at all.  Thanks a lot for any  help

    I just had another question about the same thing. Is it possible that when CA is selected, that a different data provider for the "Select State" list would come up? For example, if US were selected it would load "_selectState.dataProvider = PayPalStateUSList.instance.option;" but if CA were selected, i could have it load the same thing but with just provinces? i tried to just copy the coding for PayPalStateUSList and rename it PayPalStateCAList with the list changed to provinces, and have it load it in the as but i dont really know what im doing.
    right now i just have the states and provinces all in one list, but its just harder to select when everything is all mixed in. it looks a bit unorganized.
    another thing i would like to do, is change the total price based on the country selected in the drop down menu, if its possible. right now I have a shipping charge being added to the total from the shopping cart screen (thanks to kglad), but what would make more sence would to have the shipping based on wether its domestic or international. would it be possible to change the total based on the country selected?
    these are the last of my questions, after these 2 issues are fixed my site is complete.  Thanks for all the help
    The coding for the page looks like this (both my concerns are on the same page)
    import mx.utils.Delegate;
    import kliment.managers.PopUpManager;
    import kliment.data.FormField;
    import kliment.display.MCC;
    import kliment.net.URL;
    import kliment.net.URLMethod;
    import kliment.net.URLTarget;
    import kliment.utils._Object;
    import kliment.utils._String;
    import as.Application;
    import as.Settings;
    import as.SimpleButton;
    import as.subpage.elements.AgreeCheckBox;
    import as.subpage.elements.SelectStateCombo;
    import as.subpage.SubpageAbstract;
    import as.menu.Menu;
    import as.AlertMessage;
    import as.shopingcart.PayPalCountryList;
    import as.shopingcart.PayPalStateUSList;
    import as.subpage.elements.SelectCountryCombo;
    import as.subpage.elements.SelectCountryItemRender;
    * @author ...
    class as.subpage.ViewCheckout extends SubpageAbstract {
    private var _IDENTIFIER:String = 'checkout_view';
    private var _price_txt:TextField;
    private var _f_name_txt:FormField;
    private var _l_name_txt:FormField;
    private var _email_txt:FormField;
    private var _phone_txt:FormField;
    private var _city_txt:FormField;
    private var _street_txt:FormField;
    private var _zip_txt:FormField;
    private var _country_cb:FormField;
    private var _state_cb:FormField;
    private var _selectCountry:SelectCountryCombo;
    private var _selectState:SelectCountryCombo;
    private var _i_agree_cb:AgreeCheckBox;
    private var _proceed_btn:SimpleButton;
    public function ViewCheckout() {
      super();
    private function _init():Void {
      _target_mc = MCC.attach(_IDENTIFIER, _host.content_mc);
      _page_mc = _target_mc.page_mc;
      _price_txt = _page_mc.price_txt;
      _price_txt.autoSize = 'left';
      _price_txt.text = Settings.CURRENCY + _String.decimalFractions(Application.instance.aSopingCart.totalPrice, 2);
      _f_name_txt = new FormField(_page_mc.f_name_txt, 'first_name', _page_mc.f_name_txt.text, true);
      _l_name_txt = new FormField(_page_mc.l_name_txt, 'last_name', _page_mc.l_name_txt.text, true);
      _city_txt = new FormField(_page_mc.city_txt, 'city', _page_mc.city_txt.text, true);
      _street_txt = new FormField(_page_mc.street_txt, 'address1', _page_mc.street_txt.text, true);
      _zip_txt = new FormField(_page_mc.zip_txt, 'zip', _page_mc.zip_txt.text, true);
      _email_txt = new FormField(_page_mc.email_txt, 'email', _page_mc.email_txt.text, true);
      _phone_txt = new FormField(_page_mc.phone_txt, 'night_phone_b', _page_mc.phone_txt.text);
      _selectCountry = new SelectCountryCombo(_page_mc.select_country_mc, 'combo_box_list', 'Select a country');
      _selectCountry.itemRender = SelectCountryItemRender;
      _selectCountry.dataProvider = PayPalCountryList.instance.option;
      _selectCountry.addListener(this);
      _selectState = new SelectCountryCombo(_page_mc.select_state_mc, 'combo_box_list', 'Select a state');
      _selectState.itemRender = SelectCountryItemRender;
      _selectState.dataProvider = PayPalStateUSList.instance.option;
      _selectState.addListener(this);
      _country_cb = new FormField(_selectCountry, 'adress_country', '', true);
      _state_cb = new FormField(_selectState, 'adress_state', ''); 
      _proceed_btn = new SimpleButton(_page_mc.proceed_mc);
      _proceed_btn.onClick = Delegate.create(this, _onProceedClickHandler);
      _i_agree_cb = new AgreeCheckBox(_page_mc.i_agree_mc);
      _page_mc.f_name_txt.tabIndex = 0;
      _page_mc.l_name_txt.tabIndex = 1;
      _page_mc.email_txt.tabIndex = 2;
      _page_mc.phone_txt.tabIndex = 3;
      _page_mc.zip_txt.tabIndex = 4;
      _page_mc.city_txt.tabIndex = 5;
      _page_mc.street_txt.tabIndex = 6;
      _page_mc._y = 33;
      _page_mc._x = 50;
    private function onChange(target:SelectCountryCombo):Void {
      switch(target) {
       case _selectCountry:
        if (target.value == 'US' || target.value=="CA")
         _selectState.visible = true      
        else
         _selectState.visible = false;
       break;
    private function _onProceedClickHandler():Void {
      var isError:Boolean = false;
      var isErrorSelect:Boolean = false;
      var message:String = '';
      var messageLine1:String = '';
      var messageLine2:String = '';
      var forSend:Object = new Object();
      forSend.cmd = '_cart';
      forSend.business = Settings.BUSINESS_EMAIL;
      forSend.currency_code = Settings.CURRENCY_CODE;
      forSend.upload = 1;
      forSend.address_override = 1;
      forSend.rm = 2;
      forSend.no_shipping = 1;
      if (Settings.NOTIFY_URL)
      forSend.notify_url = Settings.NOTIFY_URL;
      if (Settings.RETURN_URL)
      forSend.return_url = Settings.RETURN_URL;
      var purchasesList:Object = Application.instance.aSopingCart.getPayPalCarts();
      if (!purchasesList) {
       isError = true;
       message += 'The shopping cart is empty.'+newline;
      if (_f_name_txt.isValid)
       forSend[_f_name_txt.name] = _f_name_txt.value;
      else {
       messageLine1 += ((isError)?', ':'') + String(_f_name_txt.start_value).toLowerCase();
       isError = true;
      if (_l_name_txt.isValid)
       forSend[_l_name_txt.name] = _l_name_txt.value;
      else {
       messageLine1 += ((isError)?', ':'') + String(_l_name_txt.start_value).toLowerCase();
       isError = true;
      if (_email_txt.isValid)
       forSend[_email_txt.name] = _email_txt.value;
      else {
       messageLine1 += ((isError)?', ':'') + String(_email_txt.start_value).toLowerCase();
       isError = true;
      if (_phone_txt.isValid)
       forSend[_phone_txt.name] = _phone_txt.value;
      else {
       messageLine1 += ((isError)?', ':'') + String(_phone_txt.start_value).toLowerCase();
       isError = true;
      if (_city_txt.isValid)
       forSend[_city_txt.name] = _city_txt.value;
      else {
       messageLine1 += ((isError)?', ':'') + String(_city_txt.start_value).toLowerCase();
       isError = true;
      if (_street_txt.isValid)
       forSend[_street_txt.name] = _street_txt.value;
      else {
       messageLine1 += ((isError)?', ':'') + String(_street_txt.start_value).toLowerCase();
       isError = true;
      if (_zip_txt.isValid)
       forSend[_zip_txt.name] = _zip_txt.value;
      else {
       messageLine1 += ((isError)?', ':'') + String(_zip_txt.start_value).toLowerCase();
       isError = true;
      if (isError)
       messageLine1 = 'Please enter your ' + messageLine1 + '. ' + newline;
      if (_selectCountry.selectedIndex >= 0)
       forSend['country_code'] = _selectCountry.value;
      else {
       messageLine2 += ((isErrorSelect)?', ':'') + 'country';
       isError = true;
       isErrorSelect = true;
      if (_selectState.selectedIndex >= 0 && _selectCountry.value == 'US')
       forSend['state'] = _selectState.value;
      else if (_selectCountry.value == 'US'){
       messageLine2 += ((isErrorSelect)?', ':'') + 'state';
       isError = true;
       isErrorSelect = true;
      if (isErrorSelect)
       messageLine2 = 'Please select your ' + messageLine2 + '. ' + newline;
      //isError = false;
      if (!isError && Boolean(_i_agree_cb.value)) {
       _Object.copyTo(purchasesList, forSend);
       URL.navigate('https://www.paypal.com/cgi-bin/webscr', forSend, URLMethod.POST, URLTarget.BLANK);
       Application.instance.aSopingCart.clear();
       message = 'The purchases are waiting for the payment.'+newline+'The shopping cart is empty.';
       _application.gotoSpash();
      } else {
       message += 'You need to accept The Terms of Use to place an order. ' + newline;
      message += messageLine1;
      message += messageLine2;
      new AlertMessage('Info!', message);
    public function onResize():Void {

  • NO hand curser in browser, in flash drop down menu???

    NO hand curser in browser, in flash drop down menu???
    <removed by mod>

    HI thanks for the reply I do not know you but dude thanks for trying to help, we are down here in Indonesia trying to save the rain forest, we are introducing the use of the coconut palm tree to ues in construction purposes, like flooring, studs etc. anyway enough of that, it will all be in the website if i can get it up, we are not trying to be cheap and do the site our selves but I need to know how to do this stuff so I can edit the site, and I really dig it.
    So after all that, when youy say dropdown, I used Flash 4 can I send you the fla. file, if it's not to much trouble????
    thank you JF.

  • Spry Tabbed Panels overwritting Flash drop down menu in IE

    I am having an issue with Spry Tabbed Panels appearing above
    a Flash drop down menu in IE6 & IE7 but it works fine in
    Firefox. Would someone be able to educate me on what I can do to
    fix this problem. The page that is exhibiting this problem is
    http://us.shuttle.com/performance.aspx
    I’ve tried adding “WMODE” to my flash menu,
    also updated “SpryTabbedPanels.js to version 0.5 –
    pre-release 1.6”, but neither way is
    helping…….

    Thank you very much for the suggestion. Yes, this is how I
    tried:
    .TabbedPanels {
    margin: 0px;
    padding: 0px;
    float: left;
    clear: none;
    width: 100%;
    z-index: 1000;
    I’ve been tried setting Z-index to from 50 to 2000 in
    attached css, but still not working.

  • Spry Tabbed Panels overwritting Flash drop down menu in IE but display fine in Firefox

    I am having an issue with Spry Tabbed Panels appearing above
    a Flash drop down menu in IE6 & IE7 but it works fine in
    Firefox. Would someone be able to educate me on what I can do to
    fix this problem. The page that is exhibiting this problem is
    http://us.shuttle.com/performance.aspx
    I’ve add “WMODE” to my flash menu,
    also updated “SpryTabbedPanels.js to version 0.5 –
    pre-release 1.6”, but neither way is
    helping…….

    Thank you very much for the suggestion. Yes, this is how I
    tried:
    .TabbedPanels {
    margin: 0px;
    padding: 0px;
    float: left;
    clear: none;
    width: 100%;
    z-index: 1000;
    I’ve been tried setting Z-index to from 50 to 2000 in
    attached css, but still not working.

  • Rollover Button + Drop-down menu = I need HELP!

    Hello,
    I'm fairly new to this whole Flash thing, but i seem to be
    doing really well so far. I have created a website that is in
    functional, working order - all of my buttons, actions, links, etc.
    are working, (which i'm quite proud of), but i'm now at a loss. I'm
    trying to create a rollover button/dropdown menu effect for two of
    my galleries, and although i've successfully created the pop-up
    effect of the menu by utilizing the "Over" and "Down" states inside
    of the button itself, when i render out the file and test it, the
    drop-down text flickers. Placing the mouse over the original
    button, everything seems to work fine, but as soon as i move the
    pointer down over the pop-up/drop-down text, it flickers! i've
    tried creating this is separate layers, i've tried increasing my
    Hit state, i've even tried a stop action, but nothing works, and
    i'm out of ideas. Help!?

    If you are hoping to make linkable buttons for the drop down
    portions, then they need to be separate buttons. If they are
    internal to the main button, then they are the main button and will
    only link where it links (if they don't totally throw it out of
    whack--I forget what one of my client's doing that resulted in, but
    the bottom line is... buttons inside buttons are bad news.).
    My suggestion: Google "AS2 drop down menu tutorials" and see
    what you can find. Googling is a great resource for finding things.
    There will likely be a number to choose from, so read thru them and
    see which ones match what you're trying to create and are easy to
    follow (some may not explain things well... everybody and their
    uncles apparently want to try to teach the world what they know,
    regardless of their ability to explain things (or lack thereof)).
    Some, if not many, will provide source files you can build
    from.

  • IPhone 2.x 3g... Drop down menu! Need some HELP

    My fiance's iPhone seems to have a drop down menu when she scrolls down from the battery/clock or anywhere up there. I tried to do the same with my iPhone and nothing drops
    I can't figure out what could be the difference between our phones... If you know the answer, please advise.
    Thx!

    does it look like a entry field at the top and a keyboard at the bottom?
    if not... what does the drop down menu contain?

  • Flash Drop Downs - Please Help!

    THANKS in advance for the help you can provide.
    I am attempting to build a flash drop down navigation bar and I followed the Tutvid video tutorial on YouTube, which launched successfully - it looks wonderful!
    However, when I wanted to add additional drop down menus for other buttons, the video has a big gap in information for the beginner (me).
    To speak the same language, the video is at this address: http://www.youtube.com/watch?v=LC7BaZCForE
    Action Script sequences to scroll to are the following:
    1. Movie where drop downs are created on timeline with action script: 29:13
    2. Action Script content for Hit Area: 29.52
    3. Root Layer action script: 32:33
    I assumed that I should be adding my additional menu drop downs on the same timeline window as the first.  I added new layers for the menus and frames, but I thought I should write the action script for the new menus on the same action script layer as the first.  I added action script 10 frames from the first menu, so the next grouping began at frame 20 and ended at frame 30.
    Adding the second menu (I want more but stopped when I tested) resulted in the two menus alternately blinking on and off so a repeating movie kicks in and no "over" and "out" functions for the menu are recognized.
    I'll now paste in my code for corresponding segments from his video so maybe you can show me where I need to change my coding to make it all work.  Apparently my function definition needs to change, but I have no clue what that means or how it needs to be different.  Before I paste, however, let me share the error that pops up:
    Location: Symbol 'mcDropDowns', Layer AS MugCup', Frame 20, Line 4
    Description: 1021: Duplicate function definition.
    Okay, here's my coding:
    1.
    Frame 1
    stop();
    clicker_mc.visible = false;
    2.
    Frame 10
    stop ();
    mugFrame_btn.addEventListener(MouseEvent.MOUSE_OVER, goBackF);
    function goBackF(event:MouseEvent):void{
    gotoAndStop(1);
    Frame 20
    stop ();
    tableFrame_btn.addEventListener(MouseEvent.MOUSE_OVER, goBackF);
    function goBackF(event:MouseEvent):void{
    gotoAndStop(1);
    3.
    var navBtnGlow:GlowFilter = new GlowFilter(0x425616, 0.75, 0, 15, 1, 2, true, false);
    navBar_mc.addEventListener(MouseEvent.MOUSE_OVER, navOverF);
    navBar_mc.addEventListener(MouseEvent.MOUSE_OUT, navOutF);
    function navOverF(event:MouseEvent):void{
    event.target.filters = [navBtnGlow];
    navBar_mc.setChildIndex(event.target as MovieClip, 1);
    dropMenus_mc.gotoAndStop(navBar_mc.getChildAt(1).name);
    trace("We are Rolled Over..." + navBar_mc.getChildAt (1).name)
    function navOutF(event:MouseEvent):void{
    event.target.filters = [];         
    navBar_mc.addEventListener(MouseEvent.MOUSE_OVER, navOverF);
    navBar_mc.addEventListener(MouseEvent.MOUSE_OUT, navOutF);
    Please know that I realize this will take a few moments for you to compare my code to what's on the video.  Know that you will be doing me a TREMENDOUS favor by helping me to understand the theory behind replicating this step.
    I look forward to hearing from you - THANKS!

    Ah, no... I tested it further, and found that the script I
    posted above is not causing the problem. This puts me even further
    back than before... I truly have absolutely no idea what part of
    the applet is malfunctioning now.
    If there is any sort of list of known reasons for the flash
    player to crash... actionscript or animation... I would greatly
    appreciate seeing it.
    Sorry if I'm failing to provide enough information about my
    problem...

  • LiveCycle Designer 8.0 Drop-down menu help - newbie

    I am new with LiveCycle and do not know much about coding and the like. I've search the forums and have not found quite what I need. (It might be because I don't know the correct terms to search - so I apologize in advance if there was a previous posting regarding this)
    I am creating a form for lab tests for referring physicians to fill out.
    for simplicity, I will just use the state, city example.
    >>>>>> QUESTION 1.
    I have dragged/dropped a drop-down menu icon onto the form, gone through the Palette>Object>Field>List Items to compile the list of states (in my real case, a list of lab tests)
    How can I get the second drop down menu to show the corresponding cities based on the "state" selected in the first drop down menu? So that when I choose "California" I have the option in the second drop-down menu to choose from "Los Angeles," "Orange County," "Long Beach," etc
    VERSUS
    if I select "Texas" the list will retrieve "Houston," "Sugarland," "Dallas," etc.
    I read about hardcoding and although I'm not quite sure what that means, I think that is what I will be doing as I will not be referencing outside of my form.
    Also, the items in these menus are long/descriptive in nature, is there a way to refer to the lists in the code without having to type everything out? In my form (instead of "state") I will have lab tests "Test_1" with CPT codes attached, that is the list includes items like:
    93880 - carotid duplex scan, bilateral
    93882 - carotid duplex scan, unilateral
    and in drop-down list 2 I have items like:
    454.0 - varicose vein with ulcer
    454.1 - varicose veins with inflammation
    it would be such a pain to type each out in the code, but if there are no other ways around it, that is fine too.
    >>>>>>> QUESTION 2.
    The referring physician will have the option to email this form to the vascular lab scheduler. To prevent an "accidental" changes, I would like the form to be a "live form" for people to fill out, but upon return, the form to be a static PDF file, that is, the person receiving the email does not have the option to make any changes (purposeful or accidental), is there a way to do this?
    THANK YOU SO MUCH IN ADVANCE!
    again, I apologize for asking for help for what I'm sure is an easy fix. I don't know very much about the coding language, if it is not too much to ask - step-by-step would be helpful.
    I'm using Adobe LiveCycle Designer 8.0.
    Thank you.
    -Viv

    Hi Geo,
    Thank you for the link.
    Sorry, this is very difficult for me to explain not knowing the scripting language, but I will try my best not to confuse you too much.
    I was able to get Thom's example to work, and based on that, I was able to get this hypothetical situation to work:
    < script contentType="application/x-javascript" name="Example2" >var oTestOrdered = {
    12345678912345678: [ ["-"], ["AAA (Endologix)"], ["AAA (GORE)"], ["Aortic Arch"],["other"]],
    56565: [ ["-"], ["Varicose Vein"], ["Venous Insufficiency"], ["Spider Veins"],["Symptomatic Var Veins"]],
    46546: [ ["-"], ["TA biopsy"], ["CEA"], ["amputation"], ["debridement"]]
    function SetTestEntries()
    ICD9_2.clearItems();
    ICD9_2.rawValue = null;
    var aTests = oTestOrdered[xfa.event.change];
    if(aTests && aTests.length)
    for(var i=0;i<aTests.length;i++)
    ICD9_2.addItem(aTests[i][0].toString());
    </ script >
    HOWEVER, I cannot get something like this one to work (the only difference is that I added a "9" to the first option) it seems as though I cannot insert anything beyond 17 consecutive characters (no dashes and underscores are allowed either):
    < script contentType="application/x-javascript" name="Example2" >var oTestOrdered = {
    123456789123456789: [ ["-"], ["AAA (Endologix)"], ["AAA (GORE)"], ["Aortic Arch"],["other"]],
    56565: [ ["-"], ["Varicose Vein"], ["Venous Insufficiency"], ["Spider Veins"],["Symptomatic Var Veins"]],
    46546: [ ["-"], ["TA biopsy"], ["CEA"], ["amputation"], ["debridement"]]
    function SetTestEntries()
    ICD9_2.clearItems();
    ICD9_2.rawValue = null;
    var aTests = oTestOrdered[xfa.event.change];
    if(aTests && aTests.length)
    for(var i=0;i<aTests.length;i++)
    ICD9_2.addItem(aTests[i][0].toString());
    </ script >
    The form I am creating is a Vascular Lab request form, where the test ordered (drop down box 1)has a CPT code to reference the test being ordered (i.e., 93880 - Carotid Duplex Scan, bilateral) and the test has a set of diagnoses (ICD-9 codes) in drop down box 2, associated with that test (i.e., 459.81 - Venous Insufficiency)
    I have found that I do not have a problem with the "diagnoses" but I cannot add the descriptive test select in the first place. That is, the code works fine if I leave it as "93880" but not "93880 - description." I have also run into the problem that I cannot use dashes or underscores, nor can I type more than 17 characters otherwise the code no longer works.
    Is there something I need to add or remove in order to make this work?
    Thank you in advance for your help and patience!

  • Basic Form with Drop Down Menu Help

    Hi Guys,
    I have just started using dreamweaver and i dont use code or anything yet.  I have been following a tutorial from thesitewizard which runs through the basics of creating a web page in the design screen.  It created a form to insert but i need to know how to create a form which has a drop down menu to have say 4 or 5 options to select the normal name email comments etc fields and submit button to enbale people to contact me.  Can anyone help with this.  Pleae keep in mind i am very new to this and dont have any code experience etc at all.
    Thanx in advance for any help.
    cheers
    chris

    You will need to use a form processing script to handle your form data.  This isn't terribly difficult, but it's more than you can do in Design View alone.
    Have a look at this form building service.
    http://wufoo.com/
    Another one to look at - although I've never used it myself, it gets mentioned a lot in these groups.
    Forms To Go from BeBo Soft -
    http://www.bebosoft.com/products/formstogo/index.php
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics |  Print | Media Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • Flash drop down menu (where to start?)

    check out this site
    http://www.marquiscustomhomes.com
    i want to mimic this drop down menu at the top. i made one
    similar to this using fireworks, but it's such a mess of code that
    i want it to be easy and look better. as far as i can tell, flash
    and javascript are being used on this site?
    so far, i know how to animate objects by converting to symbol
    and tweening. this i understand. but where do i start with this
    little project.
    Not looking for step by step instructions... although that
    would be awesome.... looking for major concepts and specific things
    i need to get this done. For instance, how many layers? Is each
    menu item it's own seperate movieclip? How does rollover function
    fit in? Alright, thanks everyone in advance... i'll be checking
    often.
    http://www.marquiscustomhomes.com

    I am just finishing a similar project and would recommend
    taking micro-steps beginning with getting the main buttons drawn on
    the stage and set as individual movieclip instances. after that you
    need to use actionscript to make the buttons do something (i.e.
    change appearance and/or display subnavigation). This is just a
    place to start.

  • Flash Drop Down Menu Buttons

    I was under the impression that Flash allowed one to place
    buttons within buttons. Basically I am trying to create a simple
    drop down navigation menu. A simple horizontal bar with four
    buttons that change color and drop down menus as the viewer scrolls
    over the buttons. I would then like the drop down text titles to
    change color as the viewer scrolls over the individual items on the
    drop down menu. When the viewer clicked on the title ("down"
    position) it would once again change color. Thank you.

    I ended up doing just what you suggested and everything in
    the Universe is back in place.
    Thank you.

  • Flash Drop Down Menu

    Hi all
    I am learning ActionScript 2.0 for about 6 months and I have
    created a flash based website. My question is how to allow a drop
    down menu to animate outside of a Shockwave files boundaries.
    I have seen Flash menus that do this and also I have
    seen some banner ads that allow animation to display outside of the
    swf file.
    Is there any tutorials or information out there that I can
    learn, or could somebody give me an idea of what to do. I
    understand how to use the Menu component and how to create a
    regular drop down menu within the boundaries of a swf file
    javono
    www.javono.com

    you can't visibly animate flash objects outside the stage
    boundaries. you can appear to do so using div tags so that's what
    you should check.

  • JavaScript and Drop down menu help?

    Hi,
    I'm having trouble trying to get options in my drop down menu to update in another section. I have the below script in a hidden field and everything seems to be working but it keeps picking up the last line only when doing calculations (i.e 48) when I change it in the drop down menu to say "HBZ-200" which has the value of 200 it is still only picking up the last line and value of 48.
    So to put a little perspective on things the below script is in a hidden field called stndwatt, I then want to calculate that in another hidden field called calc which has the following calculations - (Qty3+ballconsump)-stndwatt, this should then update my visible field called ElectYear1 which then has the calculations of - (Qty1+Qty2)*(Qty4*Qty5*Qtycost*calcs*weeksinyear)/1000, as far as I can work out my stndwatt field is only picking up the last line below which is 48.
    I'm sorry if this is vague I'm not very familar with JavaScript or PDF forms and have been scratching my head all day with this.
    var v = this.getField("ProductLineOne").value;
    if (v=="T101221W-30 (3000K T10 LED Tube)") event.value = "21";
    else if (v=="T101221W-40 (4000K T10 LED Tube)") event.value = "21";
    else if (v=="T101221W-50 (5000K T10 LED Tube)") event.value = "21";
    else if (v=="T101221W-60 (6000K T10 LED Tube)") event.value = "21";
    else if (v=="HBZ-100 (100W LED High Bay)") event.value = "100";
    else if (v=="HBZ-150 (150W LED High Bay)") event.value = "150";
    else if (v=="HBZ-200 (200W LED High Bay)") event.value = "200";
    else if (v=="ZSL-48W (48W LED Shop Light)") event.value = "48";

    Are you sure the code you posted here is EXACTLY the same as the code in
    your file? Did you copy&paste it?
    If so, can you share the file in question?

  • Drop Down Menu Help

    Hi,
    I am new here and try my best to struggle though to find an answer. After several day of trying I give up and am turning to the forum for help.
    I Have a Spry Horizontal Menu.
    When viewing the meno in Live view (F12) my sub-menu buttons appear opaque (you can see the contents of the page behind it). Also when placing the curser on the menu it seem confused if it is on the botton or the page underneath it. The contentson the page is simple text. I read that there may be a problem with Flash but this is not the case.
    I have tried and adjusted the Z-Indexes but it does not seem to help.
    Any ideas?
    Thanks in advance for your help.
    PS. If the answer to this was answered before I am sorry. I did try and find it.

    Here is the Spry Menu CSS Paul
    @charset "UTF-8"; /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */ /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */ /******************************************************************************* LAYOUT INFORMATION: describes box model, positioning, z-order *******************************************************************************/ /* The outermost container of the Menu Bar, an auto width box with no margin or padding
    */ ul.MenuBarHorizontal { padding: 0; list-style-type: none; font-size: 90%; cursor: default; width: 590px; position: absolute; top: 311px; font-weight: bold; left: 307px; height: 39px; margin: 0; z-index: 10; }
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html
    */ ul.MenuBarActive { z-index: 1000; } /* Menu item containers, position children relative to this container and are a fixed width
    */ ul.MenuBarHorizontal li { padding: 0; list-style-type: none; font-size: 100%; position: relative; text-align: left; cursor: pointer; width: 118px; float: left; margin-left: 0px; margin-top: 0; margin-right: 0; margin-bottom: 0; } /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em)
    */ ul.MenuBarHorizontal ul { margin: 0; padding: 0; list-style-type: none; font-size: 100%; z-index: 2000; cursor: default; width: 118px; position: absolute; left: -1000em; } /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item
    */ ul.MenuBarHorizontal ul.MenuBarSubmenuVisible { left: auto; } /* Menu item containers are same fixed width as parent
    */ ul.MenuBarHorizontal ul li { width: 125px; } /* Submenus should appear slightly overlapping to the right (95%) and up (-5%)
    */ ul.MenuBarHorizontal ul ul { position: absolute; margin: -5% 0 0 95%; } /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen
    */ ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible { left: auto; top: 0; }
    /******************************************************************************* DESIGN INFORMATION: describes color scheme, borders, fonts *******************************************************************************/ /* Submenu containers have borders on all sides
    */ ul.MenuBarHorizontal ul { border: 1px solid #CCC; } /* Menu items are a light gray block with padding and no text decoration
    */ ul.MenuBarHorizontal a { display: block; cursor: pointer; background-color: #0E2C8E; color: #FFF; text-decoration: none; font-family: Tahoma, Geneva, sans-serif; font-size: 15px; font-weight: bold; text-transform: uppercase; text-align: center; background-image: none; background-repeat: no-repeat; background-position: center center; padding-top: 10px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; border-left-color: #C4C9DB; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #c4c9db; border-right-color: #565968; border-bottom-color: #565968; } /* Menu items that have mouse over or focus have a blue background and white text
    */ ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus { background-color: #57C1DB; color: #333; } /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text
    */ ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible { background-color: #57c1db; color: #FFF; } /******************************************************************************* SUBMENU INDICATION: styles if there is a submenu under a given menu item *******************************************************************************/ /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%)
    */ ul.MenuBarHorizontal a.MenuBarItemSubmenu { background-image: url(SpryMenuBarDown.gif); background-repeat: no-repeat; background-position: 95% 50%; position: fixed; } /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%)
    */ ul.MenuBarHorizontal ul a.MenuBarItemSubmenu { background-image: url(SpryMenuBarRight.gif); background-repeat: no-repeat; background-position: 95% 50%; } /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%)
    */ ul.MenuBarHorizontal a.MenuBarItemSubmenuHover { background-image: url(SpryMenuBarDownHover.gif); background-repeat: no-repeat; background-position: 95% 50%; } /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%)
    */ ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover { background-image: url(SpryMenuBarRightHover.gif); background-repeat: no-repeat; background-position: 95% 50%; } /******************************************************************************* BROWSER HACKS: the hacks below should not be changed unless you are an expert *******************************************************************************/ /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe
    */ ul.MenuBarHorizontal iframe { position: absolute; z-index: 1010; filter:alpha(opacity:0.1); } /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */ @media screen, projection { ul.MenuBarHorizontal li.MenuBarItemIE { display: inline; f\loat: left; background: #FFF; } }

Maybe you are looking for