Send Value From Php To Flash?
Good Day! How to pass a value in php to flash? Scenario: I have menu in php file.. then when i ckick one of the menu it will pass a Value in flash. the value is the name of the xml file.How to do that?Thanks
KirupaForum > Flash > Flash 8 (and earlier) > Flash MX 2004
Posted on: 09-01-2006, 12:39 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Send Real Fax/send Pdf In Mail, Using Flash
Hi, I am a moderate flash designer and mostly make animations. I don't work with actionscript too much so I really need your guys' help. I need 2 things.
First: I am making an internet fax demo where I want someone to enter their email in a simple text box, click send, and it will email a pdf document to the email address (a sample fax).
Second: In the same demo, there will be another text box, where a user would enter a fax number, hit send, and it will fax them the pdf (or the stuff in the pdf in any other format) to their fax machine.
is this doable using flash? I don't even mind if i have to use a php or a xml file. but in that case, i also want to know what to write in the actionscript to call those files.
I would really appreciate if someone could please help me out with this. I had been searching all night, i found some actionscripts but have no clue what they mean.
Send "net Send" Messages By Clicking A Flash Button
Is it possible to send "net send" messages by clicking a flash button?
I want to send a message to another computer on the intranet to register that a certain button has been clicked.
I think the easiest way to do this is to create a batch file and run that on mouse release of the button, does that mean i need to have the flash file as an exe? Or is there an easier way to net send via a flash button.
Thanks.
MJ
Send "net Send" Messages By Clicking A Flash Button
Is it possible to send "net send" messages by clicking a flash button?
I want to send a message to another computer on the intranet to register that a certain button has been clicked.
I think the easiest way to do this is to create a batch file and run that on mouse release of the button, does that mean i need to have the flash file as an exe? Or is there an easier way to net send via a flash button.
Thanks.
MJ
Usig Buttons To: Send Me An E-mail / Send Data From A Feedback Form?
As the title may suggest, i need some way of making an email button, and also feedback form buttons; both submit and reset. i thought this would be fairly standard stuff but didnt get any answers in the general help forum... its all for the last page of my site at www.geocities.com/jamesmbrannan if you would like to take a look
thx for any help/ advice
lev
How To Send To Send An Action Between Browser Frames
my doubt may look silly. but pls help me.
I have a left frame with a swf movie containing buttons. And when when I click the buttons I want the movie in the right frame to go and play a particular frame.
how do I do this?
LoadVars.send Doesn't Send..
Hi people, It's a LONG time since my last Flash application, I'm just catching up.
I'm trying to build a Flash "driver" for a serverless chat client (this means I'm making it work with a database and a php script, but no socket server, as I don't have the money to have such a hosting that let's me use one).
Anyway, what I'm trying to do is to get Flash to query the php script, sending some data (like channel id, user id etc..) and retrieve the new messages.
I have debugged the php script and I can assure the problem is not there.
The script prints whatever request arguments it recieves into comments in the response page.
What I'm doing in flash is:
code:
Request = new LoadVars();
Request.my_var = "foo";
Request.send("http://blablabla....php", "_blank", "POST");
The darn thing doesn't send anything to the php script.
I've already seen that it is possible to add variables to the url string, and they get passed to the script, but I don't want to get so dirty...plus I want to use POST, because of potentially long messages being passed.
Does anyone know anything about this?
Gosh I have it when Flash comes to such stupid problems.
Php rules!
If I don't get it right within a few hours, I'll just build the whole thing in Javascript. I just don't want to have to build it for each and every browser on the web...
Cheers!
Send Xml 2 Class >>> Send Result 2 Swf
Hello, I am actually discovering Classes.
I try to make a class that reads out an XML file and than converts it into arrays.
the array is well created in the class file, but I can't send it back to the swf correctly: it only duplicates the first item of the array in an infinite loop, but when I trace it into the class the output displays it right..
Can someone help me with this issue?
with this code I call the class:
Code:
var myProduct:Product = new Product("gallery.xml");
this.onEnterFrame = function() {
trace(myProduct.getArray());
if (myProduct.getArray() != undefined) {
delete this.onEnterFrame;
}
};
and this is the class I use:
Code:
class Product {
public var productsXml:XML;
public var catArray:Array = new Array();
public var myArr:Array = new Array();
function Product(targetXmlStr:String) {
var thisObj:Product = this;
var prodXml:XML = new XML();
prodXml.ignoreWhite = true;
prodXml.onLoad = function(success:Boolean) {
if (success) {
thisObj.productsXml = this;
thisObj.getArray();
} else {
trace("error loading XML");
}
};
prodXml.load(targetXmlStr);
}
function getArray() {
var i:Number;
var j:Number;
var fNnum:Number = this.productsXml.firstChild.childNodes.length;
var mItemArray:Array = new Array();
for (i=0; i<fNnum; i++) {
var itNum:Number = this.productsXml.firstChild.childNodes[i].childNodes.length;
catArray.push(this.productsXml.firstChild.childNodes[i].attributes.name);
mItemArray.push(this["itemArray"+i]=new Array());
for (j=0; j<itNum; j++) {
var titleName:String = this.productsXml.firstChild.childNodes[i].childNodes[j].attributes.title;
var picPathName:String = this.productsXml.firstChild.childNodes[i].childNodes[j].attributes.main;
var thumbPathName:String = this.productsXml.firstChild.childNodes[i].childNodes[j].attributes.thmb;
mItemArray[i].push({tit:titleName, pic:picPathName, thumb:thumbPathName});
if (j == itNum-1) {
return catArray.length
}
//if
}
//for
}
//for
}
}
Page 2 - LoadVars.send Won't Send
It occurs to me that 'send' is not as useful and rarely better to use than 'sendAndLoad'. Even if you do not intend to use any returned variables, the 'sendAndLoad' method will notify Flash that your server side script has processed the information correctly.
Just check this commented code out and I think you will agree this is much better...
Code:
// Success/Failure function sends user on to new frame when called
test = function (success){
if (success){
gotoAndPlay("loaded");}
else{
gotoAndPlay("failed");
}
};
update=new LoadVars(); // create new LoadVars object called 'update'
update.data="value"; // assign the variable 'data' to the new LoadVars object
update.onLoad=test; // call the test function when the transfer is complete
update.sendAndLoad("update.php", reply, "POST"); // begin the transfer
stop(); // stop the movie (continues on calling the 'test' function)
In my example above is the 'sendAndLoad' line:
update.sendAndLoad("update.php", reply, "POST");
1. 'update.sendAndLoad' sends our 'update' LoadVars object.
2. 'update.php' is our script.
3. 'reply' is the LoadVars object any results will be returned in.
4. 'POST' is our method.
...as you can see, if the script processes the data correctly it will return a successful operation to Flash, where you can then continue your movie. It will also return a non-successful operation and allow you to forward to a Flash frame with some form of error message (which I think should be a requirement of any data transfer).
That would be the best advice I could offer, but if you are adamant about using just a 'send' command... try using your LoadVars object instead of a window target, as I think its is very odd the same object is apparently using different methods...
data.send("save2.pl", data, "POST");
Yeah, btw surely its 'POST' not 'GET' ...some data send/load objects will not work with the 'GET' method, so its wise to stick to 'POST' unless its necessary not too.
Send Post Data From Flash To Php/mySQL And Display Results In Flash
Could someone explain to me simply how to connect flash with my server and vice versa?
My flash movie takes a var from the URL string:
<param name="movie" value="product_info.swf?products_id=918">
and
<embed src="product_info.swf?products_id=918"...>
Getting the value of products_id is easy but I want to send the var products_id to a php page, do some mySQL on it and return the results to my flash movie. I'm using loadVariables (or sendAndLoad) but nothing comes back. I know the scripts are ok as i've tried to send the vars by getURL("page.php","_blank","POST") and it works but loadVars() doesn't. Thanks in advance!
Can You Send SMS Via Flash?
Dear All,
Was on a mission doing something else. when A guy julian helped me load. We both were woundering how it would be possible if you can send sms via flash?
if so does anyone have any example? and how the hell do you implement it
any comments or suggestions or further help please post.
king regards
fred
How To Send A URL To A Flash
Hello
I would like to know how I can send to one flash a URL?
I want to give the URL as a parameter and to use this Url when I clic on the flash
Can you please help a flash beginner?
Thanks
cva57
Fax/send Pdf In Flash
Hi, I am a moderate flash designer and mostly make animations. I don't work with actionscript too much so I really need your guys' help. I need 2 things.
First: I am making an internet fax demo where I want someone to enter their email in a simple text box, click send, and it will email a pdf document to the email address (a sample fax).
Second: In the same demo, there will be another text box, where a user would enter a fax number, hit send, and it will fax them the pdf (or the stuff in the pdf in any other format) to their fax machine.
is this doable using flash? I don't even mind if i have to use a php or a xml file. but in that case, i also want to know what to write in the actionscript to call those files.
I would really appreciate if someone could please help me out with this. I had been searching all night, i found some actionscripts but have no clue what they mean.
Send XML From Flash To PHP
hi!
i create an xml in flash and want to save it on the server. i user my_xm.send("script.php"); to send the created xml, but don't know how to handle it in PHP in order to save the file on the disk. any suggestions?
thank you.
To Send Value From Asp.net To Flash
value from asp.net must send to flash without any firing event.
thru notification service value is fetch from database to asp.net from asp.net value must send to flash continuously.
Send A Value Out Of Flash?
Hello
If I made a quiz in flash and added a score tracker (basically increments score by 1 when correct) then how can I get this value and send it out of flash so it can be kepted and tracked by us?
Sandman9
Send Variables From Flash 5 To Servlet And Get It Back In Flash
Does anyone know how to send variables to servlet in Flash?
I think I should use the loadVariables () to pass all the variables, but I'm not sure how to type in the URL part so that servlet can get them. My swf and servlet file are in different folders ... Must they be put in the same folder? Or I should use some XML formatting in transmitting data between Flash and servlet??? Please give me some help, thx a lot!!!
Flash MX - Send Javascript Variable To Flash Application
I'm still pretty new to flash, and I haven't figured out the best (or any way) to accomplish this:
Get a variable from one application and call a function of another flash application using this variable value as a parameter - assume that both applications are embedded and loaded in an HTML page before the variable passing occurs. I'm using Flash 6 to develop this.
So far, I have been able to get the first half done using fscommand. I am able to use the passed variable in javascript. Now, I'd like to send it to my other application so it can update based on this variable.
There doesn't seem to be much recent information out there about this (or I really suck at google searching) - is there a preferred way to do this now that is compatible with flash 6? If anyone knows of any tutorials or anything, please let me know. Thanks!
Javascript And Flash - Send Info Into Flash Using The Gotolink
hi!
i just finished a flash website and would like to be able to find the different sites in google. as it is done in one flash file i heard that it is possible to add javascript to the html file like:
<param name="gotolink" value="home"/>
<param name="gotolink" value="menu1"/>
etc...
and then with a certain code in flash directly be able to link to the specific part (like menu1, home, etc.)
so for example the navigation i've got has about 7 sections plus some sub menues. as the one flash file can be found in google with meta tags i wanted to find out if it is possible to add meta tags to google regarding the sub content of the site. lets say now if i find the page in google i come to the home menu. but if i look for another name i would like to specifically be able to link to that part of the flash site. so i would need to tell flash that if i come to a specific value in google it has to link to submenue two for example.
it's just that i got told that what i have to do is add the param name in javascript with the gotolink function to a specific value and then let flash understand if that specific value is called then it has to jump to this specific part of the application - not using any buttons.
so summed up (and i know this thread is quite long already...) if i type in x in google and i've got x within my application as a submenu of the navigation and you click on the link of google you get to the wanted part within the flash application...
i hope any of these things make sense as i am absolutely clueless of what to do!
thanks lots!
Send A Flash Greeting
I would like to know if its possible to send a flash greeting from my website. It would be like an email greeting card from Blue Mountain or similar. I don't necessarly need it to be personalized at this point. I would just like to provide the end user with a way of forwarding a flash file to an email address. I just am not sure how to set that up on my site, any tutorial insight would be helpful. Thanks.
Send And Post In Flash Between 2 Swf;s
I'm sander working on a deaf page for the deaf community, and i like flash alot, but i'm still having troubel with sending variables,
what is supos to happen :
check : http://www.globaldc.nl/flash
--> the first gap in the bridge will load another swf ( not in a movie clip but in level 4
now if you trigger in that movie clip the woman the paper and the rose the stone at the back of the window will drop,
i want to communicatie with the main flash file so that the gap in the bridge is filled with a solid rock, ill have the movie clip made , but how to trigger from a level 4 loaded *.swf ?
hope someone could help me.
tnx
Help Trying To Send E-mail From Flash Using With CGI
What's wrong with this script?
on (release) {
if (txtname ne "" and txtcompany ne "" and txtproject ne "" and txtemail ne "" and txtdescription ne "") {
loadVariables (txtname and txtcompany and txtproject and txtemail and txtdescription, "http://www.theserver.com/cgi-bin/cgiemail/email.txt", "POST");
}
}
I can't seem to figure this out. Any help would be VERY cool.
How Do I Send Email From Flash?
i want to send email by openning the user mail box
something like in java script : "email:to@blabla.com"
how do i do it from flash?
thnaks
peleg
Can Flash Send An E-mail?
I'm building a site that includes a feedback form and a very simple order form (with no confidential information - security is not a concern). I know I can build various things to accept user input, such as checkboxes, radios, lists, blank boxes, etc. That's all good.
Once I have all that info on entered into a page, can I get Flash to email the the data to a specific address?
Thanks,
Frank
Send Flash To A Friend
I'm looking for a tutorial on how to send a SWF presentation to a friend and can't seem to find one.
Specifically what I mean is if someone views my Flash presentation on an HTML page and would like to send it to a friend, I want to ahve a simple form they can fill out and it will forward the presentation to the e-mail address they enter.
At the same time, I'd like to know who sent it and who they sent it to.
Thanks for any direction you can provide.
Send Messages Using Flash And ASP
Hi
I have one little community, made in Flash and ASP.
I have this thing, so the members can send short messages to each other.
But, it does'nt work proper:
The asp script to SEND:
Code:
Response.Expires = -1000
anv = Request.Querystring("anv")
Dim pm_fran
Dim pm_till
Dim pm
pm_fran = Request.Form("pm_fran")
pm_till = Request.Form("pm_till")
pm = Request.Form("pm")
pm_datum = now()
pm_last = "0"
Dim oConn
Dim oRec
Dim strSQL
Set oConn = Server.CreateObject("ADODB.Connection")
oConn.Open("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("../../hemsida_db/db_forum.mdb"))
strSQL = "SELECT Anv_Namn FROM anv_data WHERE Anv_Namn = '" & anv & "'"
Set oRec = oConn.Execute(strSQL)
If oRec.EOF Then
Response.Write("&finns=inte")
Else
strSQL= "INSERT INTO pm_data (Pm, Pm_Till, Pm_Fran, Pm_Datum, Pm_Last) VALUES ('" & Replace(Replace(pm, "'", "''"), "&", "och") & "', '" & Replace(Replace(pm_till, "'", "''"), "&", "och") & "', '" & Replace(Replace(pm_fran, "'", "''"), "&", "och") & "', '" & Replace(datum, "'", "''") & "', '" & Replace(pm_last, "'", "''") & "');"
Set oRec = oConn.Execute(strSQL)
Response.Write("&finns=ja")
End If
Set oConn = NOTHING
Set oRec = NOTHING
Set strSQL = NOTHING
Response.Write("&loaded=true")
And to RECIEVE:
Code:
Response.Expires = -1000
anv = Request.Querystring("anv")
Dim pm_fran
Dim pm_till
Dim pm
Dim oConn
Dim oRec
Dim strSQL
Set oConn = Server.CreateObject("ADODB.Connection")
oConn.Open("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("../../hemsida_db/db_forum.mdb"))
strSQL= "SELECT * FROM pm_data WHERE Pm_Last = 0 AND Pm_Till = '" & anv & "'"
Set oRec = oConn.Execute(strSQL)
If Not oRec.EOF Then
pm_fran = oRec("Pm_Fran")
pm_till = oRec("Pm_Till")
pm = oRec("Pm")
pm_datum = oRec("Pm_Datum")
Response.Write("&datum=" & pm_datum)
Response.Write("&pm_fran=<b>" & pm_fran & "</b> säger:")
Response.Write("&pm_svar_fran=" & pm_fran)
Response.Write("&pm=" & pm)
Response.Write("&stat=skickat")
strSQL = "UPDATE pm_data SET Pm_Last = 1 WHERE Pm_Last = 0 AND Pm_Till = '" & anv & "'"
Set oRec = oConn.Execute(strSQL)
Else
Response.Write("Inget Nytt PM")
End If
strSQL = ""
Set oConn = NOTHING
Set oRec = NOTHING
Set strSQL = NOTHING
Response.Write("&loaded=true")
In Flash I got a Frameloop, which check:
Code:
if (stat == "skickat" && loaded == "true") {
gotoAndStop(_currentframe+2);
}
BUT !!!
It' doesn't work, I am SO, SO, SO angry on this S***
Help, Please.
Send Function Help (flash/php/sql)
I am having problems using the send function in flash. I use the sendAndLoad function several times in the same program, but for some reason just send wont work. The variables sent to the server just show up blank after sending them.
here is my flash code, which is attached to a button on the main timeline.
on(release)
{
var connection = new LoadVars();
connection.count = 10;
connection.send("http://myserver/test.php", con, 'POST');
}
on the server i have the following php code:
<php
$myVar = $_POST['count'];
print $myVar;
?>
after clicking the button a new browser pops up with no content.
thanks for any help
spaace
Send Postcard...flash Mx
hello all, would like to add the option to send postcard (via email )... Type: choose a pic, enter ur text and receiver emails?
Any idea? Ty
To Send An Email With A Bmp From Flash
I have a program that let a user design there own window once it is done right now it allows them to print it, with this code
on (release) {
gotoAndStop(4)
printAsBitmapNum(all,"bmax");
}
I would like instead of them to print it for them to email it to us is there a way to set a button up to do this from flash?
How To Send Info Into Flash ?
hello !
i have 1 swf file runnig on 5 different html pages.
i want that on each different page the flash will send a specific mc to play a secific frame.
for example :
on page named "about.html" the mc named "rasta" will play frame 13 !
on page named "pay.html" the mc named "doodle" will play frame 9 !
HOW ?
Flash Refuse To Send Xml To Asp
Hello to all
I have an xml builder function that works really well on PHP but refuses to work n ASP can anyone please tell me what am I doing wrong here. the function is below:
function transmitData() {
sendXML = new XML("<moviemaker><email_data></email_data><timeline_data></timeline_data><movie_data></movie_data></moviemaker>");
email_data = sendXML.firstChild.firstChild;
timeline_data = sendXML.firstChild.firstChild.nextSibling;
movie_data = sendXML.firstChild.lastChild;
var i = 0;
for (var i = 0; i < 10; i ++) {
//sendInfo.email[i] ="havegil"+i+"@aol.com";
email_data.appendChild(sendXML.createElement("reci pient"));
addTextNode(sendXML, email_data.childNodes[i], "email", "havegil"+i+"@aol.com");
addTextNode(sendXML, email_data.childNodes[i], "name", sendInfo.name[i]);
}
addTextNode(sendXML, email_data, "submitContest", sendInfo.submitContest);
addTextNode(sendXML, email_data, "sendingFrom", sendInfo.sendingFrom);
addTextNode(sendXML, email_data, "sendingFromEmail", sendInfo.sendingFromEmail);
addTextNode(sendXML, movie_data, "title", credits.title);
addTextNode(sendXML, movie_data, "director", credits.director);
addTextNode(sendXML, movie_data, "writer", credits.writer);
addTextNode(sendXML, movie_data, "location", credits.location);
addTextNode(sendXML, movie_data, "whichSound", whichSound);
addTextNode(sendXML, movie_data, "foreground", selectedThumb["fore"]);
addTextNode(sendXML, movie_data, "background", selectedThumb["back"]);
addTextNode(sendXML, movie_data, "forecolor", colorScrollers["fore"]);
addTextNode(sendXML, movie_data, "backcolor", colorScrollers["back"]);
for (var i = 0; i < timeline.frames.length; i ++) {
addTextNode(sendXML, timeline_data, "frame");
for (var prop in timeline.frames[i]) {
addTextNode(sendXML, timeline_data.childNodes[i],prop, timeline.frames[i][prop]);
}
}
sendXML.contentType ="text/xml";
trace(sendXML);
serverResponse = new XML();
serverResponse.onLoad = function(success) {
if (success) {
trace("It did send properly!");
_root.gotoAndStop("send_complete");
load_timer.removeMovieClip();
_level0.post.text="send_complete";
}
}
timer = this.createEmptyMovieClip("load_timer", 1000);
timer.counter = 200;
timer.onEnterFrame = function () {
this.counter --;
//trace(this.counter);
if (this.counter < 0) {
trace("It didn't send properly!");
_root.gotoAndStop("send_failed");
_level0.post.text="send_failed";
this.removeMovieClip();
}
}
gotoAndStop("sending");
sendXML.sendAndLoad("mailHandler.asp", serverResponse);
}
function addTextNode(XMLparent, XMLtarget, nodeName, nodeContents) {
XMLtarget.appendChild(XMLparent.createElement(node Name));
if (nodeContents != undefined) {
XMLtarget.childNodes[XMLtarget.childNodes.length-1].appendChild(XMLparent.createTextNode(nodeContents ));
}
}
Again this works perfectly on PHP, but ASP does not receive any data via the POST.
Thanks, JD
How To Send Data From Flash To Php
I have tried some tutorials, but I dont seem to understand the concept.... since all the tutorials are in english... I need some help, like a very simple example...
Can anybody help me? Thank you...
Send Email From Flash Using Asp.net
Hi, I'm new to the programming world.Can someone please help.I'm trying to send an email from form made in flash.I gathered the following code from here and there but its not working, I don't get any error message or anything but it does not send the email.The code behind the SUBMIT button is
on (release) {
get_results_lv = new LoadVars();
get_results_lv.name = FName.text;
get_results_lv.subject = subj.text;
get_results_lv.email = Email.text;
get_results_lv.msg = msg.text;
get_results_lv.sendAndLoad("basicemail.aspx",get_r esults_lv,"POST");
ASP.NET code is:
<%@ Import NameSpace="System.Web.Mail" %>
<script language="C#" runat="server">
public MailMessage oMail;
protected void page_load(Object Sender, EventArgs e){
if (Request.HttpMethod == "POST"){
Response.Write(sendMail());
}
}
protected string sendMail(){
oMail = new MailMessage();
oMail.To = Request.Form["Email"];
oMail.From = Request.Form["FName"];
oMail.Subject = Request.Form["subj"];
oMail.Body = Request.Form["msg"];
SmtpMail.Send(oMail);
}
</script>
Thanks
Ho To Send Mail From Flash
I want to send mails from Flash to an email account. I got some samples from net... but that doesn't work... I'm using Flash MX. Tried with asp & Php. values are passing from flash. but its not sending to mail account.
Ho To Send Mail From Flash
I want to send mails from Flash to an email account. I got some samples from net... but that doesn't work... I'm using Flash MX. Tried with asp & Php. values are passing from flash. but its not sending to mail account. In flash, I've called the mail-page using LoadMovie function. The mail-page is an seperate swf file.
Send Variables From Flash To Php
Hi, I want to know ho to send a variable to php from AS.
I have this in AS:
var helLo = "hello";
and php:
<?php
$hi=$_POST['helLo'];
?>
How can I do it?
Thanks
Send To A Friend In FLASH
Hello all, im trying to incorporate a simple 'Send to a friend' button on my Flash site. Only really require a EMAIL field and a predefined URL and message. Can anyone help? Need to do this within the next hour or so. Hoping for a quick fix!! Cheers guys (and Gals)
Flash - Send To A Friend
Hello-
I'm making an ecard for a band I work with, and on the ecard there is a "send to friend" placeholder which I'm making the flash for.
I got a flashkit from this site, and I custmized it to fit my needs. Everything seems to work except... it never finishes processing, and never submits.
The flash movie is in Flash 6 and the ?backend script? is cgi.
I have the movie uploaded here:
http://www.lastlaugh.tv/sendtofriend-ecard.htm
If anyone has any idea what might be wrong, or if you'd like to look at the flash documents please contact me!!
I need help ASAP! Please and thank you!!!!
<3<3
~beth.
Send Email From Flash MX Using Php
I have created an email form in Flash that is meant to send email to my Pop3 mail account at my hosting. The form wasn't working properly so I contacted administration at hosting for help.
They told me to:
1. Download an email transport at the following site:
http://sourceforge.net/project/show...?group_id=26031
2. Create a php file using script from this site:
http://www.enom.com/help/hostinghelp.asp?hosthelp=16
I have done what they told me to do but my email form still isn't working. I'm not sure how to configure my Flash scripting to work with the coding and info my administrator gave me.
Is it really as complicated as it seems?
PHP Mail Send And FLASH
I have a Flash form that people put name and number and email address and comments and it gets sent to a dedicated email address via a PHP file called mailform.php everything works properly with all browser and platfomrs except IE on windows OS. all browsers on a MAC os is ok and all other browsers on windows as well. anyone knows what may cause IE not to transmit the inputs????
Flash Send Button
Hi...
I'm a new flash user and i'm in currently building a website for myself.
I'm having a problem making the 'send' button work on my contact/feedbak form. I have found out some tutorials to make the button work with the help of a PHP script but I have just found out that my upload server does not support PHP files.
Is it possible for me to get the button working with a HTML or flash command equivalent?
Thankyou in advance
Send A Flash Variable To Php
hi guys, i want to submit a number from a textbox to a php file with flash, but have know idea where to start!! i have searched this forum and looked at a few tutorials but i cant seem to get them to work!! sorry, this seems like a really simple thing but i am running out of time for my assignment!! thanks alot for any help!!!
How Can I Send 'eCards' From Within Flash?
how can i send 'eCards' from within flash?
i want the user to pick/select an image and put some text and the email adress the email goes to into an formular.
is there any tutorial on this?
i want to send an customized email with individuall text and (inline) attached image to a defined email adress.
what do i need to solve this?
Send A UTF Flash Form Via Asp
I have this piece of code in my flash movie:
function sendForm () {
var my_lv = new LoadVars ();
my_lv.nname = form.tf_name.text;
my_lv.email = form.tf_email.text;
my_lv.the_message = form.tf_comments.text;
my_lv.send ("email.asp", "blankframe", "GET");
}
btn_submit.onRelease = function ()
{
sendForm ();
}
and the asp file:
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Motonautica website feedback"
myMail.From=Request("email")
myMail.To="myemail@myemail.com"
Dim Body
Body = Body & "Name: " & Request("nname") & VbCrLf
Body = Body & "E-mail: " & Request("email") & VbCrLf
Body = Body & "-----" & VbCrLf
Body = Body & Request("the_message") & VbCrLf
myMail.TextBody=Body
myMail.Send
set myMail=nothing
---
anyway, it sends succesfully an email via a form in a flash movie.
But when I try to write other than latin characters (greek, spanish, chinese) the incoming email writes "??????".
How can I solve this problem?
How can I make it UTF-8??
Does anyone know? please?
thank you in advance!
Send Jpg Or Png From Flash App As An Attachment
I am developing an application that will allow users to take a snapshot of the drawing that they have created, and send the drawing image as an attachment to a friend using my Flash/PHP e-mail form.
What I have done so far:
1. My Flash/PHP e-mail form is working great, except that I don't know how to send an attachment.
2. I can take a snapshot of a movieclip in Flash using the new BitmapData class, but cannot convert it to jpg or any other image file.
I found this link:
This has an excellent, but somewhat complicated method to convert a Flash clip to an image file that can be sent to the server. Unfortunately, the developer want $300.00 from anyone interested in using his class.
http://www.quasimondo.com/archives/000572.php
What are my questions:
1. How to send an attachment directly from Flash, using PHP?
2. How to convert a movieclip to an image file (either jpg or png)?
Thanks very much.
Send Email Via Flash And PHP
Hello everyone,
Saw the tutorial about mail forms (link).
I just have one question... I really don't understand the evaluation on the actionscript code (see the link. Number 6 & 7).
So I have tried to download the working source, but without any help.
----------
Macromedia Flash says:
**Error** Scene=Scene 1, layer=Mail Form, frame=1:Line 7: Syntax error.
message_send = (substring(message_send, 1, msg_count-2)) add "
" add (substring(message_send, msg_count+2, (length(message_send))-msg_count+2));
Total ActionScript Errors: 1 Reported Errors: 1
---------
Is this because I use 2 buttons (one for my friend and me - see here)
I believe it has something to do with the equivalent value.
Well.. I hope you answer. It's a old tutorial though.
- Oscar Meyer
www.meyerandlewinsky.com
Send E-mail Through Flash
I have to make a form with some feilds and "Submin"-button.
I found some totorials, but they a too complicated and contain many things, which I don't need. That's why need some script, which sends e-mails.
|