I wanted a input text box and a submit button inside a draggable movieclip.
Can anybody tell me how to do this.
I created a base MC which has the necessary graphic. Then I created an input text box and a button. Then made all these components into single MC(final) and associated the following code with the combined MC.
on (press)
{
startdrag (this.final)
}
on (release)
{
stopdrag();
}
The problem here is I am able to drag the MC (final) but unable to input text in the input text box associated with the MC. Any ideas?
sharvan