добился только того что если текстовые компоненты не заполнены,
то тупо нечего не делает, тоже в принципе нормально, но хули не переходит на нужный фрейм?
а датефилду вобще пофиг, поэтому редко используют готовые компоненты, или у меня руки не от туда растут?

Код:
on (click)
{
// assemble the data from the fields into the new variables
username = this._parent.username.text;
tell = this._parent.tell.text;
Email = this._parent.email.text;
Dateer = this._parent.dateer.selectedDate;
Dateout = this._parent.dateout.selectedDate;
if (username == "")
{
nextFrame();
}
else
{
if (tell == "")
nextFrame();
else
{
if (Email == "")
{
clip.error = "Error";
}
else
{
if (Dateer == "undefined") {
nextFrame();
}
else
{
if (Dateout == "undefined") {
nextFrame();
}
getURL("sendmail.aspx", "_self", "POST");
}}
}
}
}