Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Issue: Flash Radio Buttons & Php Form



I have a flash form which all of the fields are sending correctlythrough the php code. The flash radio buttons I added with thegroupname == topic, doesnt send with the rest of theinformation that is being sent to the email. My question is how do I getthe flash radio button info to submit with the rest of the form.The code for the send button on my flash file:on (release) {// send variables in form movieclip (the textfields)// to email PHP page which will send the mailform.loadVariables("form.php", "POST");}==============================================================================================Form.php:<?php$to = "Contactus@test.com";$subject = "Contact Page Information for Today";$headers = "From: " . $_POST["name"];$headers .= "<" . $_POST["email"] . ">
";$headers .= "Reply-To: " . $_POST["email"] . "
";$headers .= "Return-Path: " . $_POST["email"];$message .= "";$message .= "Subject: " . $_POST["topic"] . "
";$message .= "Email: " . $_POST["email"] . "
";$message .= "Name: " . $_POST["name"] . "
";$message .= "Address: " . $_POST["address"] . "
";$message .= "City: " . $_POST["city"] . "
";$message .= "State: " . $_POST["state"] . "
";$message .= "Zip Code: " . $_POST["zip"] . "
";$message .= "Phone: " . $_POST["phone"] . "
";$message .= "Message: " . $_POST["message"] . "
";mail($to, $subject, $message, $headers);?>Text



Adobe > Flash Data Integration
Posted on: 03/16/2007 07:28:03 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Radio Buttons On Flash Form?
I have crated a form which works no worries i also have check boxes. i have done thes as movie clips ie. yes/no states. i just cant get this information to send with the form. can any one offer help, i know im close!

many thanks

Radio Buttons In Flash Php Form
Hi pple,

referring to http://tutorials.flashvacuum.com/ind...?show=Email102, how do i go about replacing the radio buttons with graphics symbol? And where do i change so as to allow the AS to work. Been trying for ages but still can't figure out.

Thanks!

Help With Radio Buttons In Flash And Form
hello i have aproblem

with flash,, I want to make my form being sent to an email script
my input boxes are recognized fine, with there variables,

but for some reason i can't get my radio buttons to work fine,
if anyone has a sulotion to this here is my fla
http://members.rogers.com/lastdon00/help.zip

Please Help witha solutoin if possible wit hthe radio buttons to give themm a variable to be sent to email script

thanks

LD

Flash To Php Form With Tick Boxes Or Radio Buttons?
any one have a flash to php form with tick boxes or radio buttons??

i need a tutorial for this desperatly!!!

PLEASE HELP!!

Flash To Php Form With Tick Boxes Or Radio Buttons?
any one have a flash to php form with tick boxes or radio buttons??

i need a tutorial for this desperatly!!!

PLEASE HELP!!

Flash To Php Form With Tick Boxes Or Radio Buttons?
any one have a flash to php form with tick boxes or radio buttons??

i need a tutorial for this desperatly!!!

PLEASE HELP!!

Mac/PC Issue With Radio Buttons
Ok I got a very simple form which basically is three radio buttons, and a submit button.

When tested on PC with IE, NN, OP I had no problems, as I do not have access to a mac it was never tested on one.

Ok form went live on web and now I got a user saying that they can not select any of the options on the form???

He is on a mac with NN.

I just wondered if anyone else has come across a similar issue, this confuses me as he can view the flash but not interact with the radio button?

any ideas

Thanx in advance

Help Me For Radio Buttons In My Form
Hey guys,
i've great a online application form, i put some text fields and radio buttons, when i click send and i receive the e-mail, i can see clearly what it's in the text filed, but nothing from the radio buttons, it's marked like this in the e-mail:

FUIComponentClass: [type Function]

FRadioButtonClass: [type Function]

FRadioButtonGroupClass: [type Function]

Program: [object Object]

how can i make it work........

Help me please

Radio Buttons Form Help
I have a simple need that I just can't find help on.

I have a small survey (5 radio buttons) only 1 question can be selected and when the submit button is pressed the results are sent to a php file. I need help with the radio button code to php action script. Anyone know where i can get help? Thanks in advance.

Help With Form Radio Buttons
I have already made a form and it is working, except the radio button data isn't being sent because I really have no idea on how to do it. Could you teach me how to get data with radio buttons. Here is my coding which is on a frame...

comments_txt.onSetFocus = function()
{
status_txt.text = '';
}
email_txt.onSetFocus = name_txt.onSetFocus = phone_txt.onSetFocus = comments_txt.onSetFocus;

status_txt.text = 'All fields required';


submit_btn.onRelease = function()
{
var email = email_txt.text;
var name = name_txt.text;
var comment = comment_txt.text;
var phone = phone_txt.text;

// are all the fields filled?
if (name == '') {
status_txt.text = "You need to fill in your Name.";
return;
}
if (phone == '') {
status_txt.text = "You need to fill in your Phone Number.";
return;
}
if (email == '') {
status_txt.text = "You need to fill in your E-mail.";
return;
}
// you should also validate the email address

if (comment == '') {
status_txt.text = "Please, don't forget your Message!";
return;
}

// yes, all fields filled
sendEmail(name, email, comment, phone);

// sending data...
status_txt.text = "Processing mail form...";

// prevent submitting again by disabling the button
this.enabled = false;
};


function sendEmail(name, email, comment)
{
var myData = new LoadVars();

myData.name = name;
myData.email = email;
myData.comment = comment;
myData.phone = phone;

myData.onLoad = function(ok) {
if (ok) {
status_txt.text = this.message;
} else {
status_txt.text = "There was an error. Try again later.";
}
submit_btn.enabled = true;
};

myData.sendAndLoad('contactform.php', myData, 'POST');
}

Here is my PHP coding...

<?php

$name = $_POST['name'];
$email = $_POST['email'];
$comment = $_POST['comment'];
$phone = $_POST['phone'];

if (!isset ($name) || $name == '')
{
exit ('&message=Error! Name missing.&');
}

if (!isset ($phone) || $phone == '')
{
exit ('&message=Error! Phone missing.&');
}

if (!isset ($email) || $email == '')
{
exit ('&message=Error! Email missing.&');
}

if (!isset ($comment) || $comment == '')
{
exit ('&message=Error! Comment missing.&');
}


$comment = str_replace ("
", "
", $comment);


$to = 'myemail'; // replace with your email address
$subject = 'New message!';

$message = '';
$message .= "
";
$message .= "Name: $name";
$message .= "

";
$message .= "E-mail: $email";
$message .= "

";
$message .= "Phone: $phone";
$message .= "

";
$message .= "Comment:

$comment";

$sent = mail ($to, $subject, $message, "From: $email");


if ($sent)
{
exit ('&message=Success! Email sent. Thank you very much for your message.&');
}
else
{
exit ('&message=Error! Sorry... Try again later please.&');
}

?>

I have three radio buttons with the instance name of phonebtn, emailbtn, nonebtn. Parameters: Labels are phonecontact, emailcontact, nonecontact. Group name is contact.

Radio Buttons Form
Hello friends,
I need a flash form script to post, by php, in sql database. The php all right exists and it works very well but I need the flash form. The form must have 3 radio buttons . The radio buttons form is a part of pool system. I create aalso a form in html (to check the system pool) and it works. Now I need the simple form in flash yo poste the values (A, B or C) in aby php in sql . Some one could to help me?
Thanks !!

Use Radio Buttons To Change Form?
i have a form that i want to have change depending on what radio button the user clicks on...

i have the main form on frame 1 and if the user chooses for example the first radio button, i want the form to jump to another frame.

how do i do this???

there are a total of 5 radio buttons, each jumping to a different frame.

THANKS!

Feedback Form Via Php, With Radio Buttons?
Hi all

I am in desperate need of a quick solution. I used to do flash a few years ago, but havent done much of it in the last 12months+, and i need a feedback form that will have a text field for the user to put name, telephone and a few more, like address, sex, etc. Then i need to have 8 questions, that the user will be able to click a radio button to answer each one, so will be a) or b) answers for each of the questions. When they press submit, it will say thanks for your input, and the answers will be emailed back to me via a php file.
Can anyone help, otherwise I think I might get fired.

Rustler

How I Refer In AS RADIO BUTTONS In A Form ?
Please tell me how I refer in AS RADIO BUTTONS in a form ?
This is correct for a radio button group ?
senderLoad.budget_ch = budget_ch.text;

please tell me: above the "text" is ok ? If not what to insert ?

How I Refer In AS RADIO BUTTONS In A Form ?
Please tell me how I refer in AS RADIO BUTTONS in a form ?
This is correct for a radio button group ?
senderLoad.budget_ch = budget_ch.text;

please tell me: above the "text" is ok ? If not what to insert ?

Radio Buttons In Contact Form
Hi all,

I was wondering if someone could shed some light on this issue I am having. I have a contact form with 5 radio buttons labelled:
mr_rb
mrs_rb
ms_rb
dr_rb
other_rb

Next to the other radio button I have a textInput fields labelled other_txt. I am trying to write some ActionScript when the form loads the the other_txt is either hidden from view or disabled. When the user click the other_rb radio button the other_txt will then appear or become enabled with the focus in it so the user can start typing straight away.

I would be very grateful if anyone could help with this code as it really is starting to bug me.

Thanks in advanced

Email Form Using Radio Buttons
Hello! I hope someone can help me out with this one!! I will start off by saying that I don't know too much about action script, but i have created a Flash email form with just text fields that has worked. Now I need to create a form with three sets of radio button groups. I need to pass the variables to a php email script. Can anyone guide me through this?

HELP With RADIO BUTTONS NOT SENding Value To Form,
hello
i have made an email form with flash
but all the values BUT the radio buttons are not being send to the form

all the input text ones seem to work fine
but i can't figure out why the radio button groups are not
i have a whole bunch

please help

Passing Radio Buttons Variables (asp Form)
Hi Girls,Guys,Gurus!,

My problem:
I'm trying to create an ASP form with 3 radio buttons(10,20,30 km)
using Flash 5.
First I don't know how to assign a variable to a radio button,and the other thing is how the asp form should
look like(mtext04 = "number of kilometers: " & Request.Form("check") & vbcrlf ?).
All I have seen so far is how to put a dot in a radio button
but nothing else.


Any help will be really appreciate!


Einstein:Only 15% of our intelligence used,and 85% for Flash!

Adding Checkbox And Radio Buttons To Form
Hello all:

I am working with the attached form mailer (php), and would love to know how to add checkboxes, list boxes and radio buttons and such that will work with this form mailer.

Please review, and I would appreciate any feedback.

Kevin,

Adding Checkbox And Radio Buttons To Form
Hello all:

I am working with the attached form mailer (php), and would love to know how to add checkboxes, list boxes and radio buttons and such that will work with this form mailer.

Please review, and I would appreciate any feedback.

Kevin,

Radio Buttons / Variables/ Email Form Values
Hi,

I am not very proficient in actionscript at all. I just managed to find a perl script i was able to configure to get the results of a little (test) form i made back to me (this took me a week 24/7 !!!)

anyway, there are four input text boxes with variables named name, email, zip, colour. They return the expected values. (yay)

However i have two radio buttons whch i called them both memberGroup (which had labels and data values of yes and no) and i dont jknow whats going on there???This is what my form emails me:
__________________________________________________



name: celia

zip: 12778

colour: blueish green

FRadioButtonGroupClass: [type Function]

memberGroup: [object Object]

FRadioButtonClass: [type Function]

email: niinn@nanna.com

FUIComponentClass: [type Function]

__________________________________________________

Ive searched and searched forums and read MM tutorials but cant understand what is happening.

Is anyone able to explain the following:
2)what is the variable names of components? is it memberGroup (for my above example)?
1)getValue & getData? How do i use these. Can anyone give me examples.

Basically, the above is all my form consists of.



Thanks in advance for anyones patience in explaining this to me and helping me here

Francesca

Sending Email Form Data With Radio Buttons
Hey,
I have a a group of two radio buttons on an email form.

group name: system

label: Mac

label: Win

When a user clicks one of the two radio buttons, the label is assigned to a variable which will be transferred to an email. How do I go about this.

Also same kind of situation, except instead of radio button it is a combo box.
Thanks

POST Variables - Contact Form With Radio Buttons
Greetings,

I found this same querry in an archived post but the solution was not provided so I will make my own post.

I have a basic contact form. It contains the standard name, email, subject, and comments boxes. When you click submit it POST variables to a PHP form and then forwards info to email address with the PHP form. Pretty basic stuff.

Now heres my problem. I have been asked to include selections within the contact form. I have determined that the use of labled radio buttons will do the job. Each button will have its own label and the user can simply check which button he likes and then fill out the rest of the form and hit submit.

Forever Indebted,

Contact Form With Radio Buttons And 1 Drop Down Menu?
how the heck do i do this??

I need a simple form to send info via php, this i have done before, but have never included radio buttons and a drop down menu!!

someone please help!!

thnx
sean

Contact Form With Radio Buttons And 1 Drop Down Menu?
how the heck do i do this??

I need a simple form to send info via php, this i have done before, but have never included radio buttons and a drop down menu!!

someone please help!!

thnx
sean

Flash Form With Radio Button
Someone send my an Flash Form in action Script and a PHP file with it. First it worked but lately it doesn't. I don't know what could be the problem, I post both codes.

If someone please can help me. I'll thanks a lot.










Attach Code

___________________
Action Script:

stop();

var senderLoad:LoadVars = new LoadVars();
var receiveLoad:LoadVars = new LoadVars();

volver.onRelease = function() {
pooldeck_txt.text="";
copinglin_txt.text="";
patiosq_txt.text = "";
walkway_txt.text="";
outdoor_txt.text="";
name_txt.text="";
lastname_txt.text="";
company_txt.text="";
street_txt.text="";
mailing_txt.text="";
inca_txt.text="";
patio_txt.text="";
london_txt.text="";
sara_txt.text="";
manchester_txt.text="";
yorkshire_txt.text="";
devonshire_txt.text="";
cambridge_txt.text="";
winchester_txt.text="";
bristol_txt.text="";
city_txt.text="";
state_txt.text="";
zip_txt.text="";
phone_txt.text="";
fax_txt.text="";
cell_txt.text="";
email_txt.text="";
web_txt.text="";
where_txt.text="";
message_txt.text="";


gotoAndStop(31);

}


borrar_btn.onRelease = function() {
pooldeck_txt.text="";
copinglin_txt.text="";
patiosq_txt.text = "";
walkway_txt.text="";
outdoor_txt.text="";
name_txt.text="";
lastname_txt.text="";
company_txt.text="";
street_txt.text="";
mailing_txt.text="";
inca_txt.text="";
patio_txt.text="";
london_txt.text="";
sara_txt.text="";
manchester_txt.text="";
yorkshire_txt.text="";
devonshire_txt.text="";
cambridge_txt.text="";
winchester_txt.text="";
bristol_txt.text="";
city_txt.text="";
state_txt.text="";
zip_txt.text="";
phone_txt.text="";
fax_txt.text="";
cell_txt.text="";
email_txt.text="";
web_txt.text="";
where_txt.text="";
message_txt.text="";


}


enviar_btn.onRelease = function() {
senderLoad.pooldeck_txt = pooldeck_txt.text;
senderLoad.copinglin_txt = copinglin_txt.text;
senderLoad.patiosq_txt = patiosq_txt.text;
senderLoad.walkway_txt = walkway_txt.text;
senderLoad.outdoor_txt = outdoor_txt.text;
senderLoad.name_txt = name_txt.text;
senderLoad.lastname_txt = lastname_txt.text;
senderLoad.company_txt = company_txt.text;
senderLoad.street_txt = street_txt.text;
senderLoad.mailing_txt = mailing_txt.text;
senderLoad.inca_txt = inca_txt.text;
senderLoad.patio_txt = patio_txt.text;
senderLoad.london_txt = london_txt.text;
senderLoad.sara_txt = sara_txt.text;
senderLoad.manchester_txt = manchester_txt.text;
senderLoad.yorkshire_txt = yorkshire_txt.text;
senderLoad.devonshire_txt = devonshire_txt.text;
senderLoad.cambridge_txt = cambridge_txt.text;
senderLoad.winchester_txt = winchester_txt.text;
senderLoad.bristol_txt = bristol_txt.text;
senderLoad.city_txt = city_txt.text;
senderLoad.state_txt = state_txt.text;
senderLoad.zip_txt = zip_txt.text;
senderLoad.phone_txt = phone_txt.text;
senderLoad.fax_txt = fax_txt.text;
senderLoad.cell_txt = cell_txt.text;
senderLoad.email_txt = email_txt.text;
senderLoad.web_txt = web_txt.text;
senderLoad.where_txt = where_txt.text;
senderLoad.message_txt = message_txt.text;
//radioGroup.selectedData;
var mensn:String="";
senderLoad.mensn =radioGroup.selectedData;
/*if (rbsi.selected=true); {
var mensn:String="si";

senderLoad.mensn = mensn;}

if (rbno.selected=true); {
var mensn:String="no";
senderLoad.mensn = mensn;}*/

senderLoad.sendAndLoad("http://www.coimagen.com.pe/andes/find.php",receiveLoad);
}
//docident
receiveLoad.onLoad = function() {
if (this.sentOk) {
_root.gotoAndStop("mal");

pooldeck_txt.text="";
copinglin_txt.text="";
patiosq_txt.text = "";
walkway_txt.text="";
outdoor_txt.text="";
name_txt.text="";
lastname_txt.text="";
company_txt.text="";
street_txt.text="";
mailing_txt.text="";
inca_txt.text="";
patio_txt.text="";
london_txt.text="";
sara_txt.text="";
manchester_txt.text="";
yorkshire_txt.text="";
devonshire_txt.text="";
cambridge_txt.text="";
winchester_txt.text="";
bristol_txt.text="";
city_txt.text="";
state_txt.text="";
zip_txt.text="";
phone_txt.text="";
fax_txt.text="";
cell_txt.text="";
email_txt.text="";
web_txt.text="";
where_txt.text="";
message_txt.text="";
}
else {
_root.gotoAndStop("bien");

pooldeck_txt.text="";
copinglin_txt.text="";
patiosq_txt.text = "";
walkway_txt.text="";
outdoor_txt.text="";
name_txt.text="";
lastname_txt.text="";
company_txt.text="";
street_txt.text="";
mailing_txt.text="";
inca_txt.text="";
patio_txt.text="";
london_txt.text="";
sara_txt.text="";
manchester_txt.text="";
yorkshire_txt.text="";
devonshire_txt.text="";
cambridge_txt.text="";
winchester_txt.text="";
bristol_txt.text="";
city_txt.text="";
state_txt.text="";
zip_txt.text="";
phone_txt.text="";
fax_txt.text="";
cell_txt.text="";
email_txt.text="";
web_txt.text="";
where_txt.text="";
message_txt.text="";
};
};

_____________________
PHP:

<?
ob_start();

$destinatario="anibal@coimagen.com.pe";

$asunto="Find a Distributor - Andes Collection Site";
$cuerpo='<html>
<head>
<title>consulta</title>
</head>
<body>
<table width="600" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<tr></tr>
<tr>
<td height="25" align="center" bgcolor="3f0c02"><span class="Estilo26"><strong><font color="#FFFFFF" size="2" face="Verdana, Arial, Helvetica, sans-serif">FIND A DISTRIBUTOR</font></strong></span></td>
</tr>

<tr>
<td>
<table width="100%" border="0" cellspacing="1" cellpadding="0" align="center">
<tr>
<td height="25" align="right" bgcolor="84532c"><span class="Estilo26"><strong><font color="#FFFFFF" size="2" face="Verdana, Arial, Helvetica, sans-serif">Tell us about your project</font></strong></span></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#CCA067"> <strong><span class="Estilo26"><font color="#FFFFFF" size="2" face="Verdana, Arial, Helvetica, sans-serif">Pool Deck Sq Ft:&nbsp;&nbsp;</font></span></strong></td>
<td width="49%" height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$pooldeck_txt.'</font></td>
</tr>


<tr>
<td width="51%" align="right" bgcolor="#C08E57"> <strong><span class="Estilo26"><font color="#FFFFFF" size="2" face="Verdana, Arial, Helvetica, sans-serif">Coping Lin Ft:&nbsp;&nbsp;</font></span></strong></td>
<td width="49%" height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$copinglin_txt.'</font></td>
</tr>



<tr>
<td width="51%" align="right" bgcolor="#CCA067"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Patio Sq Ft:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$patiosq_txt.'</font></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#C08E57"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Walkway Sq Ft:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$walkway_txt.'</font></td>


<tr>
<td width="51%" align="right" bgcolor="#CCA067"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Outdoor Kitchen:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$outdoor_txt.'</font></td>

<tr>
<tr>
<td height="25" align="right" bgcolor="84532c"><span class="Estilo26"><strong><font color="#FFFFFF" size="2" face="Verdana, Arial, Helvetica, sans-serif">Which pattern do you like?</font></strong></span></td>
</tr>
<tr>
<td width="51%" align="right" bgcolor="#C08E57"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Inca Pattern:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$inca_txt.'</font></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#CCA067"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Patio Pattern:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$patio_txt.'</font></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#C08E57"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">London Pattern:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$london_txt.'</font></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#CCA067"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Sara Pattern:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$sara_txt.'</font></td>
</tr>

<tr>
<td height="25" align="right" bgcolor="84532c"><span class="Estilo26"><strong><font color="#FFFFFF" size="2" face="Verdana, Arial, Helvetica, sans-serif">Which color do you like?</font></strong></span></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#C08E57"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Manchester:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$manchester_txt.'</font></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#CCA067"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Yorkshire:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$yorkshire_txt.'</font></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#C08E57"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Devonshire:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$devonshire_txt.'</font></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#CCA067"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Cambridge:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$cambridge_txt.'</font></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#C08E57"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Winchester:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$winchester_txt.'</font></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#CCA067"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Bristol:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$bristol_txt.'</font></td>
</tr>
<tr>
<td height="25" align="right" bgcolor="84532c"><span class="Estilo26"><strong><font color="#FFFFFF" size="2" face="Verdana, Arial, Helvetica, sans-serif">Information</font></strong></span></td>
</tr>

</tr>
<td width="51%" align="right" bgcolor="#C08E57"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">First Name:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$name_txt.'</font></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#CCA067"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Last Name:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$lastname_txt.'</font></td>
</tr>


<tr>
<td width="51%" align="right" bgcolor="#C08E57"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Company:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$company_txt.'</font></td>
</tr>



<tr>
<td width="51%" align="right" bgcolor="#CCA067"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Street Address:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$street_txt.'</font></td>



<tr>
<td width="51%" align="right" bgcolor="#C08E57"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Mailing Address:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$mailing_txt.'</font></td>
</tr>
<tr>
<td width="51%" align="right" bgcolor="#CCA067"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">City:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$city_txt.'</font></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#C08E57"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">State:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$state_txt.'</font></td>
</tr>


<tr>
<td width="51%" align="right" bgcolor="#CCA067"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Zip Code:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$zip_txt.'</font></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#C08E57"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Phone:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$phone_txt.'</font></td>
</tr>
<tr>
<td width="51%" align="right" bgcolor="#CCA067"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Fax:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$fax_txt.'</font></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#C08E57"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Cell Phone:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$cell_txt.'</font></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#CCA067"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">E-mail:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$email_txt.'</font></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#C08E57"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Web Site:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$web_txt.'</font></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#CCA067"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Where did you hear about us?:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=25 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$where_txt.'</font></td>
</tr>

<tr>
<td width="51%" align="right" bgcolor="#C08E57"> <span class="Estilo26"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#FFFFFF">Message:</font></strong>&nbsp;&nbsp;</font></span></td>
<td height=75 bgcolor="#F2F2F2" align="left"><font size="2" color="#000000" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;'.$message_txt.'</font></td>
</tr>
</table>
</td>
</tr>
</table>
</body>

</html>';

//para el envio en formato HTML
$headers="MIME-Version:1.0
";
$headers.="Content-type: text/html; charset=iso-8859-1
";
//direccion del remitente
$headers.="From:".$nombre_txt."<".$email_txt.">
";
//direccion de respuesta, si queremos que sea distinta que la del remitente
$headers.="Reply-To: ".$email_txt."
";
//direcciones que recibiran copia
//$headers.="Cc: ssears@enter.net
";
//$respuesta = "http://www.coimagen.com.pe";
//derecciones que recibiran copia oculta
//$headers.="Bcc:
";
//////////////////////////////////

echo "sentOk=" . $sentOk;

///////////////////
if (mail($destinatario,$asunto,$cuerpo,$headers))
{
echo "<p><br><center><font face='verdana' size=+1 color='#990000'>Su consulta o pedido se envió con éxito... Gracias</font></center>";
echo "<meta HTTP-EQUIV='refresh' content='1;url=$respuesta'>";
}
else
{
echo "<p><br><center><font face='verdana' size=+1 color='#990000'>Error al enviar su comentario...</font></center>";
}
?>
<!--<script LANGUAGE="JavaScript">

setTimeout ("document.location.href='p_reservas.php';", 2000);
</script> -->
<?
ob_end_flush();
?>

Dynamic Creation Of Radio Buttons In A Radio Button Group
Is there a way to dynamically add new radio buttons to a radioButtonGroup say from an xml file? I am looking for a similar functionality to what I would receive if I were to use a dataprovider for a comboBox (except I need to use radio buttons). Code samples are appreciated. Thanks

Deselect All Radio Buttons In A Radio Button Group
how do you do it? --like if you want to reset all the fields in a form.

thanks.

Form In Flash... ´problem With Radio Button´?
Hi people...

I´m trying to use on a form a radio button in flash...
Everything works well, but when I click on this radio, it set a variable that i need to load to a PHP script, but this don´t happens. I realized that this variable is inside of a MovieClip, of course =), and I understand that this variable only ´stays´ inside this MovieClip, so, i tryed the with or telltarget functions to transfer this variable to the main timeline to finally post it to the PHP script... but the f.. variable don´t transfer to the main timeline... someone knows how to do that???

[]´s

Assign Value To Radio Button In A Flash Form?
Hello All, I am writing a form in flash and want to pass to PHP. However, the radio button is not passing the value to the PHP. Only "[object Object]" is displayed. Here's the same question I found in the forum: http://board.flashkit.com/board/showthread.php?t=718946

Anyone by any chance has any idea about it?

Flash Radio Form To PHP Shopping Cart
Right, What I am trying to do is send a value from a radio form in a piece of flash, to be received and processed by a different page (a PHP page, which is a shopping cart),

I have written the actionscript function to take the values from the radio form using formData.sendAndLoad to the PHP, problem is, I need this to also act as a getURL so that the PHP page opens as well, to display the shopping cart. However when I do this, Internet Explorer just wants to Download and save the PHP page the Flash is pointing to.

Any Ideas?

URGENT Help With Radio Button/dynamic Text Form In Flash
Hiya!

its me again, the codeless wonder...

i have been asked by a client to mimic an html form routing to ASP in Flash... It will have 5 dynamic text questions to answer, and 5 radio button choices to answer.

Can anyone point me in the direction of resources for this? i have searched Flashkit and can't find the right thing... I have no idea how to send all the data to the right place, etc...

thanks,
j

Radio Buttons In Flash MX
I'm quite new to flashso this might be quite a simple question (i hope so!)

I have two radio buttons called distortOn and distortOff, the group name is distortGroup. I have another button which plays a sound when clicked (which works!)

I want to be able to play one sound if one radio button is checked and a different sound if the other button is checked.

so far i have:

strumSound = new sound();

value=distortOn.getValue()
if(value==true){
strumSound.attachSound("strum");
}
else {
strumSound.attachSound("clean");
}

but it only seems to be doing the else part of the loop. can anyone tell me what's wrong with this?

[F8] Flash Radio Buttons Help
Hi,
I recently downloaded a game from FK's movies called Jiggy, it's a puzzle game with animated pieces. I wanted to created my own version with static images.

The games has radio buttons which give the opions of choosing how many pieces make up the puzzle (2x2, 4x4, 6x4, 8x6), the default is 4x4, I want to set it so that either the default is 8x6 or that it automatically goes to 8x6.

but I don't understand the code at all, I've never used radio buttons and they aren't like normal buttons so I'm lost! Could anyone please help? I have contacted the maker of the game but they haven't got back to me, the link is here:
http://www.flashkit.com/movies/Games...7411/index.php

Thanks!
-Olly

Flash Cgi With Radio Buttons
hi, you guys can help me with this.

i have a subscribe form made in cgi and my client want me to integrate it into flash. i am not a flash programmer so i don't know how to do it.

-----------------------------------------------------------
this is what my client provided me.

<form action="http://www.yourwebsite.com/cgi-bin/dada/mail.cgi" method="get">
<input type="hidden" name="list" value="Green_Apple" />
<input type="radio" name="f" value="subscribe" checked="checked" /> Subscribe
<input type="radio" name="f" value="unsubscribe" /> Unsubscribe
<br />
<input type="text" name="email" value="email address" size="16" onfocus="this.value='';" maxlength="1024" />
<input type="submit" value="Submit" />
</form>

------------------------------
basically i made two radio buttons in flash, one text box for email subscription and submit button, but i don't know how to code it since i am not a cgi or php programmer.

any help would be appreciate it.
if anyone can do it for me and send me the files would be great.

thanks
ak

XML/flash Radio Buttons
Arrg...I need a guru.

I am pretty confused on how to get actionscript to create radio buttons on the fly based off of a loaded XML..

any help would be greatly appreciated!

Radio Buttons In Flash Urgent
hi flashers
i've made a form in flash and this talks to php and sends it fine... but what i want to add is two radio buttons, so the user can click either yes or no to a question and this result gets sent to me... does anyone know how to do this pls... i've been searching through forums for ages but to no luck

tas

Adding Radio Buttons In Flash And Having Php Use Them..?
hey guys.. i got my php script and form fields working good, but now i cant figure out how to get radio buttons information to display once the php send to the email... it leaves it blank... can anyone point me in the right direction on how to add radio buttons in flash that will display the correct information in the email


example

name: test
phone: test
would you like this:
fax: 777-7777

it leaves the would you like this blank even if you clicked on the radio button. can anyone help out and provide the right direction or the code in php to insert radio buttons correctly... thanks!

Integratign Radio Buttons With Flash
I want to have the customer be able to click the radio button under the product they want to buy, and then when they click the submit button they would be fowarded to paypal.The problem is that the flash radio componet is too small, and how can i tell in action script if the radio button is clicked?


here is an example

Full Functional Flash UI Radio Under Buttons ?
hello,

I've got a ton of flash UI all linked togather but need a way over mouse overing them, so right now i have my radio button under an invisable button with handcursor turned off...

Problem is when the user clicks the radio text the radio button doesnt activate, only if you actualy click the radio graphic..

Any way to get a mouseover with full radio functions ?

Multiple Custom Radio Buttons In Flash
Hey all, I'm in the process of evaluating if this will be possible in flash for me to do.

The requirement is to create a survey type user interaction.

The user will have 7 pages of 5 items each page. Each can be answered by Yes or No (therefore the requirement of the radio buttons).

The user is not required to select a item so i don't need a check to see if it's selected or not but i need to tally up the items which have been selected 'yes' for each page and then have a total tally at the end.

I would like the custom radio button to have 3 graphic events / up (not selected) / over (light grey in the radio box) / selected (darker grey in radio box).

So thats pretty much it! Is this a major job and does it require some advanced coding? Any response will be appreciated.

thanks!

Flash Forms - Dropdown Menu And Radio Buttons
there are plenty of tutorials out there for flash email forms with input text fields, but does anybody know how to create a form including dopdown menus and radio buttons that you can actually submit through php?

Flash Forms - Dropdown Menu And Radio Buttons
there are plenty of tutorials out there for flash email forms with input text fields, but does anybody know how to create a form including dopdown menus and radio buttons that you can actually submit through php?

Flash Combobox, Check Box, Radio Buttons To Wok With Php For Email
Hi i'm a newbee in flash web designing can you help me out???? I'm making a reply form consist of text field, check buttons, combo box. think my acton script and php code has a problem. Can somebody help me out??? Thank you very much

Flash/php Form Issue
man...i'm starting to get really pissed of with this.
2days loking at this and still dont know whats wrong...
i've got a regiser area, wich is a movie clip inside a mask, so i can scroll it up and down....could that be it?


the flash version is fine i think (on clip event it goes to next frame)
...so does anuone find any errors in this code?


<?php

$sendTo = "pantasss@hotmail.com";
$subject = "Contacto através do site Hidrogeologia";
$headers = "From: " . $_POST["firstName"] ." ". $_POST["lastname"] . "<" . $_POST["email"] .">
";
$headers .= "Reply-To: " . $_POST["email"] . "
";
$headers .= "Return-path: " . $_POST["email"];

$message = "Name: ".$_POST['name']."
Surname: ".$_POST['surname']."
Title: ".$_POST['title']."
Position: ".$_POST['position']."
Company: ".$_POST['company']."
Adress: ".$_POST['adress']."
City: ".$_POST['city']."
Country: ".$_POST['country']."
Zip-Code: ".$_POST['zip']."
Phone: ".$_POST['phone']."
Mobile Phone: ".$_POST['mobile']."
Fax: ".$_POST['fax']."
Email: ".$_POST['email']."
Provisory Title: ".$_POST['provisory']."
Date: ".$_POST['date'];


mail($sendTo, $subject, $message, $headers);
?>



thanks in advance guys!

Flash Form Issue
Hey guys,

I have a problem with the form I am creating in Flash MX. I need the results of the form to be displayed at the end (so the user can see what choices they made via the various combo boxes and text input fields).

For example, the user firstly inputs their

a) name (via text input field)
b) email (via text input field)
c) phone (via text input field)
d) company (via text input field)
e) Quantity of product (via text input field)
f) Turnaround (via listbox)
g) Media Type (via combobox)

etc etc - you get the idea!! This needs to be displayed on the final screen as a kind of summary.

I guess this should be done with variables somehow but I am not a Flash expert by any means (I am a 3D designer having to do web projects in work) and would so grateful if someone could lend me their expertise. If anyone could point me to a tutorial or anything.....

CHeers,

Rich

RADIO BUTTON Issue
Hi,

This is a little advanced for me, so I hope someone can help me out!!

What I need to do:

XML is fed into my movie. From that, I have to DYNAMICALLY place a list of radio buttons on the stage. (they work as regular radio buttons). Essentially DRAW the correct number of buttons depending on the XML.

DRAWING THEM IS NO PROBLEM.
ASSIGING VALUES TO THEM IS NO PROBLEM.

The problem is this....

I have to draw them one at a time (I never know how many until the XML is read).

Therefore, the radio button MC's are not aware of each other, and radio buttons have to work as a group, or one big clip.

Is there a way to dynamically place MC's and THEN group them? OR force them all to OBEY the same timeline etc...???

Thanks in advance!!! Appreciate any feed back!!!

Copyright © 2005-08 www.BigResource.com, All rights reserved