Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Please help me create a combo box in swish max. I searched for ready-made components, but it's not there in swish.

How can I do this?

share|improve this question
did you have a look to Flash CS5 IDE? – Eugene Sep 11 '10 at 21:01

1 Answer

up vote 0 down vote accepted

I found a solution for it. follow these steps =>


1 -> Create a dynamic text box
2 -> draw an down arrow in front of it
3 -> for a click on arrow autoshape create an movieclip below the dynamic text box
4 -> This movieclip must contain the collection of buttons and each button must contain a value
5 -> for respective clicks on buttons inside a movie clip update the dynamic select textbox

 on (press) {
    select = "MBA";
    _root.dept1.text = "MBA";
}


on (release) { 
_root.gotoAndStop("home"); 
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.