Hi all,

I'm fighting an movieclip which contains a mailform. For a change, the mailform gave no problem. However, is seems impossible to get movieclip / mailform combination to do what is supposed to do, because of a loop in the movieclip. Let me explain a bit more detailed:

In the movie I call through buttons movieclips, with a simple:

on (release) {
test = 1;
}

This action is given on the button. On the next button it is 2.

In the movieclips I have
on frame one:

if (Number (_root.test) == 1) {
gotoAndPlay ("goclip1");
}

on frame two:
gotoAndPlay(1);

frame 3 is called goclip1

At the end:
frame 10 is called loopframe1

frame 11:
if (Number(_root.test) == 1) {
gotoAndPlay("loopframe1");
}

Very simple and done according to an tut I found here somewhere.

But because of the loop on the end, my form goes on strike. It is impossible to type anything in the input-type fields.

When I insert a stop-action, it works again, but then the movieclip does not close anymore.

I hope someone can help me with this? If necessary I can provide a .fla.

TIA
Morticia