ActionScript 2.0 :: SendAndLoad XML?
Nov 4, 2009i am trying to get my serverside URL link from XML file to be able to POST in flash using sendAndLoad method.
[Code]...
i am trying to get my serverside URL link from XML file to be able to POST in flash using sendAndLoad method.
[Code]...
I have a little flash application(cs4) to read xml files and to display the contents. xml files are being read using LoadVars::sendAndLoad() over http. It works fine unless I have an accented characater in the url.
[Code]...
I was googling all the evening trying to find a safe way to send data to MySQL db.
The method that I was using in past projects is like this (AS2 > PHP > MySQL):
[Code]...
This method is unsafe since it sends data to PHP with a GET method, the URL string insertDB.php?Name=Jonh&Age=18&Country=USA&Points=123 So anyone can just type in the address bar [URL]..and insert this record (for example with 999 points) into database.
I am having an issue getting sendandload to work with IE. It is working great with Firefox. I am not using https for anything, so I dont think it would have anything to do with what I have been reading.
View 0 RepliesI have a flash form with input text fields. I am sending the data to a 3rd party server. I can send the information via getURL but I want to send the data without opening a browser window so I am utilizing sendAndLoad. It works great locally but not through a browser (tested in IE and Firefox). I have verified that all the variables and urls are in the correct case, I have tried both Post and Get, I have tried network and local
[Code]...
Just wondering if you can use the sendAndLoad method of the Loadvars object to send "POST" data to a server then recieve the response in an XML object.
[Code]...
Theres a great tutorial for sending and loading XML here: http:[url]...However, its written in AS2 and Id like to have an equivalent in AS3. Ive attached my attempt, but it doesnt work? even though it doesnt throw any errors.
View 2 RepliesI'm attaching an MC to the timeline and within that attached MC is a LoadVars.sendAndLoad command. This works flawlessly when I have a few variables but becomes horribly bogged down when I have to send (and receive) lots of data. It actually freezes my swf until all the data is loaded, then switches windows <minimizes itself in Win XP> after it's all done loading.So I figure I need a way for the original attach movie to finish loading, before I send the PHP commands...
View 1 RepliesI'm using sendAndLoad to send data from a Flash form to a PHP script. The PHP script will search an SQL database and return the results, in XML, to Flash for parsing. The problem is I'm completely stuck on how to extract the sent Flash information with PHP. It's a single tag with attributes.
View 1 RepliesI'm having trouble with a sendAndLoad-script:
Actionscript Code:
listener.onComplete = function(file:FileReference):Void{filename = file.name;var sender_lv:LoadVars = new LoadVars();sender_lv.filename = filename;var reciever_lv:LoadVars = new LoadVars();reciever_lv.onLoad =
[Code]......
It uploads a text file to my server (I'm running the .swf file locally) and it works. But I need to load the contents of the file into my program, and when I do the special norwegian characters "� � �" turns into jibberish. So I wrote a script to change the encoding, but when I send the filename to the .php file, I don't get a response.
I am using the sendAndLoad class to perform a script through PHP and load the variables back into the swf. Using Firefox Firebug, I am able to tell that everything is executing correctly, including the PHP script returning the following variables:
&mySubscriberID=36&firstName=Bill
But the variables are not making it back into the swf file. Here is the code for the first frame of my flash file:
[Code]....
I also have dynamic text fields with the above variables assigned to them.
the sendAndLoad class to perform a script through PHP and load the variables back into the swf. Using Firefox Firebug, I am able to tell that everything is executing correctly,including the PHP script returning the followingvariables:&mySubscriberID=36&firstName=BillBut the variables are not making it back into the swf file. Here is the code for the first frame of my flash file:
stop(); var sendLV = new LoadVars();var recLV = new LoadVars();
recLV.onLoad = function(success:Boolean){trace("recLV back from php");}
sendLV.onLoad = function(success:Boolean){ nextFrame(); trace("sendLV back
[code].....
How do I add a preloader for the sendAndLoad function.
View 11 RepliesIn the code below - fRequest_activate initiates a sendAndLoad - all fine and dandy. Thing is - I want to be able to return a value from this function that indicates whether the server response was satisfactory - and I can't work out how to to it.Because the onLoad function is nested within my fRequest_activate function it has all got a bit messy - and just doesn't work - how do I pass the status from an asynchronous server call - which at the moment is picked up by the onLoad callback, back to my original function? - or should I just approach this problem in a different way? All I want to do is call one function - and know if it has been successful or not in talking to my server.
Code:
function fRequest_activate():String {
var lvEmail_send:LoadVars = new LoadVars();
var lvEmail_response:LoadVars = new LoadVars();[code]...............
I am using sendAndLoad to query a database that returns over 30,000 records. While the query itself is executed in 0.43 seconds (says phpmyadmin) the sendAndLoad takes some 15 seconds to be executed in AS2. I am wondering if there is a faster alternative to this method.
View 2 RepliesI try make work a simple sendAndLoad but I got a strange answer from server!
AS3-PHP.fla :
ActionScript Code:
var var_put:URLVariables=new URLVariables();
var_put.name1="John";[code].........
First var1 is undefined, second it's strange to see a part of the html page.I read other examples which looks like to mine, I don't know what write more to make it works.
I'd like to double check that sendAndLoad is sending the correct string to a jsp. I don't have any control over the jsp so I'm reliant on seeing the url string. Here's the code use to sendAndLoad
ActionScript Code:
function doSubmit() {
formData = new LoadVars();
formData.loginName = "test";
[code]....
I'm creating a login in Flash that connects to a MySql database through PHP.I'm using sendAndLoad() and the variables are being send to PHP without any prolems, however it does not seem to be returning any info resulting in a "invalid username/pass" message.I'm fairly sure the problem lies in the PHP but not too sure where! Do I have to declare the result_lv variable in the PHP somewhere? How and where?
[code].....
I have one questio: How can i sendAndLoad variables that are on another domain.I have a mail form in flash...and i'm using sendAndLoad property, here it's my script:
Code:
sender.onRelease = function () {
//senderLoad.theName = nume.text;
senderLoad.kind_txt = Kind;
[code]....
But i don't get the variables back and no mail was send!
I have a problem with the code below. It sends the vars to the submit.php but it doesnt load them. All files are in the same folder. Get the .fla --> here
Code:
var oListener:Object = new Object();
this.onEnterFrame = function() {
ratio.text = score;
lvData.scored = score;
[Code]...
I have an issue trying to send out a url with value name pairs in different languages. Does anyone know if there is a function in flash to convert the characters to html entities before hand?
View 1 RepliesI'm sending an array of 20 items to a PHP script. Here's the sendAndLoad call:
Code:
rankedSubmitBtn.onRelease = rankedSubmitBtn.onReleaseOutside = function():Void
{
[code].....
From what I understand, LoadVars.sendAndLoad( ) is generally used to request variable data form a server. I am trying to download an image (which can be returned to me as a bitmap, jpeg, or png depending on my a variable i pass to the server in the sendAndLoad command.
Is this possible? If so, what object do I specify as the target object in the sndAndLoad( ) command?[code]...
I have a RESTful resource that gets looked up from a flash widget client. If the resource is not found, the ActionScript will create the resource by posting to a URL like /articles.xml with the appropriate data. If this is successful, the backend returns a 201 status and sets the HTTP Location header with the address of the newly-created resource. My understanding was that ActionScript, upon seeing the location header set, would essentially grab the document at that URL like a redirect and make it available to me in the XML object. Here's some code:
Code:
var create_params:String = "<article><foo>abc</foo><bar>xyz</bar></article>";
var create_xml:XML = new XML(create_params);
var reply_xml:XML = new XML();
reply_xml.ignoreWhite = true;
create_xml.ignoreWhite = true;
[Code] .....
The resource gets created as expected, which means the 'send' part works fine. And if I examine the results returned in a sniffer, or test using Curl, the Location header is indeed set by the server side. However, the Flash never makes a request to my server for the new resource and therefore when I examine the XML object, there isn't any data there. Is this not how sendAndLoad is supposed to react to the location header? I can't seem to find any documentation on it or other people with similar issues, so I'm kind of puzzled. If it doesn't auto-redirect to grab the new resource, is there a way I can pull the value of the location header into a variable so I can at least manually fetch it?
If I send a request with NO xml, it works just fine. But as soon as I add xml to the flash XML object it fails. To illustrate this I made to simple scenarios, both of them hitting the following C# code:
Save.aspx (C#)
Code:
public partial class Save: System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
[code]...
I have absolutely NO IDEA what could be causing this. I've checked my IIS logs and I can see that it's returning 500 errors.
Most curiously is I can't get it to hit a breakpoint in the ASP.Net code when it fails. Even after reboots.
[code]...
But it doesn't work, and yes I tried it in the browser.
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 success or not. Is there anyway to "read" HTTP POST responses with actionscript?
View 1 RepliesI am using the sendAndLoad class to perform a script through PHP and load the variables back into the swf. Using Firefox Firebug, I am able to tell that everything is executing correctly, including the PHP script returning the following variables:
&mySubscriberID=36&firstName=Bill
But the variables are not making it back into the swf file in a usable fashion. The variables sent back look like this:
}
Variable _level0.recLV = [object #3, class 'LoadVars'] {
onLoad:[function 'onLoad'],
mySubscriberID:"36",
firstName:"Bill"
}
Using a colon instead of an equal sign?
Here is the code for the first frame of my flash file:
Code:
stop();
var sendLV = new LoadVars();
var recLV = new LoadVars();
[Code].....
I also have dynamic text fields with the above variables assigned to them. why the swf is not receiving the data correctly?
I am trying to modify this tutorial on exporting the flash movie to a jpg. On the completion of the flash file, using AS2, there is this method:
Code:
// copy is complete, send the result LoadVars to PHP
listener.onComplete = function(target:MovieClip, load_var:LoadVars){
loader.label = "sending to php..."
[code]....
so i mean...I am using sendAndLoad as appropriately right? then why does my flash movie STILL open a new window (pixels.php) after the script gets to this point? I am also open to new methods of redirecting, assume i cant stop pixels.php from opening, how do I close the current window, so at least only 1 window will be open to the user?
I'm using the following code to create a sendandLoad loadVars Object but it suddenly quit returning data and no matter what i do i cannot return a value.i'm useing aspx to return the value the response code looks like this. Response.write("success = success"); Ive also tried Response.write("&success = success"); but neither works and i also don't send data here is my code.
PHP Code:
sv0=new LoadVars();
sv0.filename = str1+cntrl0+".flv";
sv0.identifier=str5;
[code]....