combo box: detect if its open...

  • Started
  • Last post
  • 1 Response
  • jgjh151

    I have a Flash UI Combo box on stage. I want to be able to know when it is
    open and when it is closed. I was in debugger mode trying to see if I could
    find any properties, hidden to me, and I see that it showed one called
    "open". As I opened and closed the combo box in debugger mode, the "opened"
    value would read true when open, and false when closed.

    So I try:

    this.onEnterFrame = function(){
    if (menu1_cb.opened = true) {
    trace("opened!");
    }
    };

    I get nothing. I kinda expected this. I couldn't find any documentation on
    this type of property for the combo box.

    Know if this is do-able?
    How?
    Where can I find some documentation?

    Thanks all!
    -Jon

  • jgjh1510

    NOTE:

    Also tried:

    ._opened

    Didn't make a diff.