First of all, Hello all

( i'm new here )
My first problem:
I have a preloader for my movie, works fine.
I have a dynamic textarea converted to a MC and added a code to that MC:
onClipEvent (enterFrame) {
var bytes = _root.getBytesTotal();
var bytes_loaded = _root.getBytesLoaded();
if (bytes_loaded == bytes) {
_root.gotoAndPlay(2);
this.preloader = "movie loaded";
} else {
_root.gotoAndStop(1);
this.preloader = "("+bytes+" / "+bytes_loaded+")";
}
}
- onClipEvent (enterFrame) {
- var bytes = _root.getBytesTotal();
- var bytes_loaded = _root.getBytesLoaded();
- if (bytes_loaded == bytes) {
- _root.gotoAndPlay(2);
- this.preloader = "movie loaded";
- } else {
- _root.gotoAndStop(1);
- this.preloader = "("+bytes+" / "+bytes_loaded+")";
- }
- }
After preloading it continues to frame 2
Here I have some buttons and a MC.
Every button loads a different externel SWF into the MC.
Every SWF has the same preloader as the main SWF.
Now comes the problem:
When the external SWF loads, the preloader starts, but then only shows:
Movie loaded
this.preloader = "movie loaded";
It doesn't continue to the second frame of the movie.
Why does it work for the main SWF, but not for the external SWF?
I hope i make any sense
OK second problem:
I downloaded a form for flash using PHP to send an email.
I only changed the email adress and nothing more.
These are the files:
http://www.kirupa.com/developer/actionscript/fla/Kirupa_flash_php_email.zip
But when I upload them to my site, it doesn't work.
It doesn't send an email to my adress.
help...
Thx a lot!!