comboBox -- flash

  • Started
  • Last post
  • 1 Response
  • pushme

    I'm trying to have the comboBox pop up a window which is populated by a url from the xml file. The index of the comboBox label is the same as the url in the xml file. I've tried many different tutorials w/ no luck. I'm pasting in partial code/partial explanation. Any light is appreciated.

    this.myPullDown._alpha = 10;
    this.goToMyUrlButton._alpha = 10;
    this.myPullDownXML.trigger();

    var cbListener:Object = new Object();
    cbListener.change = function(evt:Object) {
    getURL("selectedXmlNode", _blank);
    };

    // add the listener to the ComboBox.
    myPullDown.addEventListener("cha... cbListener);

    //the selected XML Node equals this in the bindings tab
    //results.galleryFeed.galleryIte...

  • pushme0

    bump