
I got it to work!!!
The download didnt help my situation, but I thought that I should post this info and maybe it will help save someone else's time.
In GuestBook.fla, I placed all the contents of the "EnterData" mc to the main Timeline.
So Basically, this will eliminate the need for unecessary movie clips.
On the submit button I placed this bit of code:
================================================================
on (release) {
if (Name eq "") {
Status = "Please enter your name";
} else if (Email eq "") {
Status = "Please enter email Address";
} else if (Website eq "") {
Status = "Please enter the URL to your website";
} else {
Submit = "Yes";
NumHigh = 10;
NumLow = 0;
GuestBook = "Processing.. Loading New... ";
loadVariablesNum ("GuestBook.php", 0, "POST");
Status = "Your entry has been submitted. You should see your comments appear immediatly";
gotoAndStop (2);
}
}
================================================================
Then I edited "GuestBook.php"
*Special Thanks to someone who posted this bit of info:
This is what my code looks like, "contents" is my container clip for all pages with in flash, replace contents with whatever name you are using.
=================================================================
look for line 79:
print "&_root.contents.TotalEntries=$NumEntries&_root.contents.NumLow=$NumLow&_root.contents.NumHigh=$NumHigh&_root.contents.GuestBook=";
=================================================================
Now my scrollbar doesnt work

but I can manage that one, I think.