ActionScript 2.0 :: Use LoadVars To Send POST Without Attached Variable Name?
Jan 12, 2009
Let's say I'd like to post some data to a server side script. If my data is
var data:String = "<data><tag1>hi</tag1></data>";
and I'd like to send it with LoadVars, I can do:
var lv:LoadVars = new LoadVars()
lv.data = data;
lv.sendAndLoad("http://thescript/", lv, "POST");
However, this results in the POST looking like this:
data=<data><tag1>hi</tag1></data>
if I want to send it without the variable name (no "data=", just the actual data), how is this possible? In AS3 I can just use the .data property of a URLRequest and it will work, however I can't find a way to do this in AS2.
View 1 Replies
Similar Posts:
Jun 19, 2011
I have a very simple form to send user data to a php file
when i run my form from FLASH PROFESSIONAL it send without problem
but when i run SWF or html with SWF no matter on lacal disc or website it doesn't work[code]...
View 1 Replies
Dec 29, 2006
There seems to be a problem with Firefox 2.x sending variables to PHP scripts with the LoadVars.send/POST method.
<br>
The same problem doesn't occur in IE or Opera. <br>See this url for example to try in both FF and IE/Opera: here. <br>The source files are here g.zelenka@iinet.net.au
View 4 Replies
Mar 24, 2008
For the life of me, I've tried everything: I've researched LoadVars on Adobe forum, used David Powers' books, googled 'flash to php', LoadVars, etc. and tried sendAndLoad, send, and using $_POST, $_GET, $_REQUEST. $HTTP_POSTVARS but I keep getting this same error.
I have a Unix server running Apache/PHP 4 - LoadVars worked to load name-value pairs into an array -see thread)
My goal with this simple app is to prototype being able to pass a variable from flash to a variable in php.
Parse error: syntax error, unexpected T_VARIABLE in flash_to_SQL.php on line 5
Actionscript 2.0 code:
var c :LoadVars = new LoadVars();
c.testing = "123FOUR";
c.send ("
[Code]....
View 3 Replies
Jun 23, 2009
I would like to send data from PHP to Flash however, it sends just fine but when displaying on Flash, it does not display the contents in the variable. Instead, it displays the name of the variable. This may be a simple answer but I'm quite new to this. Here is the code in Flash.
[Code]...
View 7 Replies
Dec 18, 2010
I would like to use Flash to send a ByteArray (of a PNG image) to a php file, in a facebook application. Is there a way to do this by sending the ByteArray as just one POST variable instead of as the entirety of the POST data?
There was a nearly identical question here: How can I send a ByteArray (from Flash) and some form data to php? but the problem is different; instead of smuggling other variables in other parts of the request, the image itself has to be sent as just a variable because Facebook commandeers the post data and puts in its own junk.
If not, can I send the image in some form other than a byteArray?
View 2 Replies
Jul 16, 2009
Im building a reservation form, using actionscript and php. I use sendAndLoad to send variables to php via POST, which returns a different HTTP POST response in case of sucess or not.
Is there anyway to "read" HTTP POST responses with actionscript?
View 4 Replies
Mar 18, 2009
I am attempting to post 3 variables to an e-commerce page that was written in ASP.NET 2.0, but it is not working. I have deployed a simple .aspx page that echos the Request.Form object to the page so that I can see what it is receiving.When flash calls the loadvars.send() in Firefox I see what I would expect which is a list of keys value pairs.
View 1 Replies
Sep 16, 2010
This code is being run from a frameset in IE8. When the new window is opened, the form data is not being recognized. It appears that the http header, "content-type: application/x-www-form-urlencoded", is not being passed into IE and this is causing the post data not to be processed. The data is there, IE is just doing nothing with it.
This code works fine in FF and Chrome, and in fact the correct headers are passed in FF and Chrome.
NOTE: The new page is on a different site, but i don't know why that would cause a problem with a POST and not a GET.
Flash code:
varSender = new LoadVars();
varSender.title = _parent.tCourseTitle;
varSender.notes = input_txt.text;
varSender.send("http://example.com/notes/print.cfm", "_blank", "POST");
I have tried adding the header to the send request, but that has no effect at all. The contenttype header is still missing and it still works everywhere but IE.
My current work around is to use a GET instead of a post, but that's ugly and it limits us in the size of data we can pass but for now at least it works.
View 1 Replies
Nov 21, 2008
I was just wondering if it is important to include POST as a method of sending loadVars to the php file. i was using POST before and i still ecountered some problems of receiving empty mails. Since i found an example which do not use POST or REQUEST method i dont have anymore prob. I just wanted to get another opinion about that as i wanna start using server side script with flash and i know that ill be using the POST method.
View 2 Replies
Apr 23, 2010
Make a POST request with parameters and an attached file
View 1 Replies
May 5, 2009
I wonder if this is doable. Let say if I have an object:
var car:Object = new Object();
car.color = 'red';
car.doors = ' 4';
car.make = 'Honda';
car.model = 'Accord';
Can I send this object via Loadvars like this:
var send_lv:LoadVars = new LoadVars();send_lv.carobj = car;
send_lv.sendAndLoad("script goes here", result_lv, "POST");
View 1 Replies
Jun 18, 2009
I am trying to make a simple POST using LoadVars. Since I am using an API there are some limitations though. The request must be send via POST with a JSON header. The body of the request should not contain name value pairs, but rather just a JSON object.
This last requirement has been troublesome for me because it seems like the only way to make a POST with LoadVars requires you to specify a variable name.
[Code]...
View 0 Replies
Apr 19, 2009
Flash file:
Code:
s.onSoundComplete = function(){
loadVars_out.songId = sa[cps].id;
loadVars_out.send("incPlayedNumber.php", "_self", "POST");
[code]....
View 5 Replies
Nov 28, 2003
I'm using very successfully the "loadVars.send()", using the POST method. BUT I did not expect to see a popup browser window!? I can shut it down using another javascript, but get a confirmation message (because I didn't open up that unwanted browser window using js)... Is there any way I can call a loadVars send without the popup browser window? I am using: myVars.send ("Aurora.php", "POST"); Using: myVars.send("Aurora.php", "_blank", "POST"); or myVars.send ("Aurora.php", "", "POST"); gets me the same pop up window.
View 9 Replies
Apr 21, 2007
I'm trying to send a negative value to a text file using loadvars().
so i did this:
send_lv.xPos = currObj._x;
but if the _x is negative, the minus is replaced by '%2D' How do i send the minus sign??
View 2 Replies
Dec 10, 2010
Example of code which would be used to send a bunch of variables to a PHP script via flashThis would require the PHP script to load when the data is sent.I want to use this for a Flash event calender which triggers more information about the event to appear in a HTML area of the page when an event is clicked on. The PHP file would be the same file that the SWF is embeded in so the FLASH file would reload the page with the variable sent to the PHP. The PHP would use this variable to select the right content from a MySQL database.
View 13 Replies
Mar 21, 2012
I am using FMS 4.5 and have a simple application which I want to use to send two strings to a php file. But I get a compilation error whenever I try to assign any value to these objects:
Here is main.asc:
<code>
var variables = new LoadVars();
variables.username = "uname";
variables.send(http://url.abc.com/test.php,POST)
</code>
I can't compile with the second line. FMS just says: Sending error message: Compilation error
How do I send variables to a HTTP URL?
View 2 Replies
Dec 6, 2006
Im wondering if the LoadVars.SendAndLoad()-function can target a particular frame in a webpage as can the LoadVars.send()-function?
View 2 Replies
Jul 19, 2009
I have made flash music player on http:[url]... - when the user has selected the songs to purchase and click's buy now, the user is redirected to paypal via a loadVars.send('https:url....') command.When I embed the flash player on MySpace or Soundclick for example,the redirect is blocked, and the player doesn't redirect.Is there a way around this, or an alternative to the lv.send method?
View 3 Replies
Mar 16, 2010
I am using the following code to send some values do a php file. The problem comes when i actually SEND them (values). A browser opens up. How could i avoid opening the browser when i send my variables to my php?
[Code]...
View 1 Replies
Jan 29, 2012
I am trying to get my flash application to send a request back to the webserver so that it can get some information. So far after reading on stackoverflow for a while and on the net I have some code written, but its not quite working right. I need just a little help tying it all together.
[Code]....
View 1 Replies
Mar 29, 2012
I am trying to send some variables from my actionscript 3.0 to PHP file.. but if i am using POST method I am getting an error instead if I use GET method it is working fine but then there comes the security issue. All my variables are displayed in URL which I dont want to happen. This is my code:
[Code]...
View 1 Replies
Mar 10, 2009
Is it possible to "POST" JSON data in the body of a request with LoadVars? I understand LoadVars sends data as name>value pairs. How can I send the data in the body instead?
View 1 Replies
Mar 5, 2009
What I need to do is have a button download a installer using Post with added values to download.What I have to mix is this:Peices needed frokm HTML form:
PHP Code:
<form action="http://website.com/dl.asp" method="POST">
<input type="hidden" name="name" value="CJE">
[code].....
View 3 Replies
Dec 27, 2010
I want to create a movie clip where the user can adjust it selecting various colors shapes characters etc etc...and add someones email address to sent! From that movie clip...a snapshot is taken and sent over to php (in binary code or not) and from there php will send it to that someone the user chose before in Flash... Is it just me or am i thinking the wrong way!?
View 4 Replies
Jan 15, 2010
I am having a little trouble sending an xml string to an HTTPService an Actionscript3 (see code below). Basically, I am trying to send a georss xml string for conversion into another format. I am getting an ioError and suspect the xml is causing havoc with the services parser. I know this approach is probably not the best, but this is where I am at.
[Code]...
View 1 Replies
Jun 2, 2010
I'm trying to send some data to PHP using HTTPService POST but for some reason it's not working. The same example works with GET but not with POST:
private function start():void{
var param:Object = {};
param.date = "2010-10-10";
[code]....
But when I change the method in HTTPService to GET and in PHP I get the result as expected - PHP sends back the date:
2010-10-10
View 1 Replies
Jul 31, 2011
I have developed a facebook application in which I am sending data from Flash to Php.Its actually a game based on Flash 8 and at the end I send data by using
loadVarsNum()
using POST method to flash but the problem is this data can be easily tampered so I want know that how can I secure my data from theft or any hack
View 2 Replies
Feb 21, 2009
question says all really =use POST to send data to a php script?
View 2 Replies