Im trying to do a mail form that is going to pop-up when i roll over the btn_3. So far so good, the movieClip shows, but the textArea, textInput and a button doesnt show. I can see it as it should be when im only trying out the movieClip, but when i try to import it all from the library nothing happens.
onClipEvent (enterFrame) {
if (_root.btn_3, hitTest(_root.head)) {
_root.attachMovie("mail", "mail_mc", 61);
_root.mail_mc._x=400;
_root.mail_mc._y=300;
} else {
unloadMovie(_root.mail_mc);
}
}