PDA

View Full Version : Please need help


NancyK
06-23-2008, 08:38 AM
:eek: hi i would that someone could help me in this and will give me the right answer

i have a contact forum or subscrption anyway
the file is in php and i want to add it to my flash web shite how should i

the form contain 3 file 2 dreamweaver and 1 notepad soo
i have a button i did and i need u to tell me what are the scripts that i sould put it to let me to be attach to the php file
that when i click the button with open for me the form so any could

please waiting an answer thank you :rolleyes:

Paul Ferrie
06-23-2008, 09:16 AM
Hi have a simple flash mail form (http://www.scotflash.co.uk/forum/viewtopic.php?t=65) that you can check out.
It should give you some understanding of what you need to do.

Hope it helps

NancyK
06-23-2008, 11:43 AM
hi coud u check this if its right ...


on(press){
play();
}
veri = new LoadVars();
veri.load("form1.php");
veri.onLoad = function(durum:Boolean) {
if (durum)
{
state.text=veri.variable1;
}

}

Paul Ferrie
06-23-2008, 11:57 AM
Not sure what the play() is all about?

Maybe something like below is what you looking for?

on(press){
veri = new LoadVars();
veri.load("form1.php");
veri.onLoad = function(durum:Boolean) {
if (durum){
state.text=veri.variable1;
}
}
}