ActionScript 3.0 :: URLLoader Post Data And Go To Page?
Feb 9, 2010
I am trying to use
Code:
var myData:URLRequest=new URLRequest("scrip.php");
myData.method=URLRequestMethod.POST;
var variables:URLVariables = new URLVariables();
[Code]......
to send data to a script and I want it to go to that page too. Kind of like a if you had a flash login screen that just took a id and it sent you to the next page with that. I can do it with get put I need the id hiden
View 1 Replies
Similar Posts:
Jul 13, 2011
I am making rest calls with a urlload.load(urlRquest).
also
urlRequest.method = URLRequestMethod.POST;
urlRequest.contentType = "application/xml";
When I make the calls within the Flash IDE, I get HTTPStatusEvent.status = 400 (or whatever) when an error occurs. And the IOErrorEvent.data contains xml (or sometimes a string).
However, when I run the swf in a browser (Firefox Mac or PC), the HTTPStatusEvent.status = 0, and the IOErrorEvent.data is empty. (Interestingly in Safari Mac, I do get the 400 status, but still no data.)
View 1 Replies
May 26, 2006
I have form in flash with input text fields with Var field set to t2_2 t3_2 t4_2... what i want to do when user enter values and press buton it should post data(values) to aspx page - how can i do that ? i saw what i did
[Code].....
then i can access t2_2 value on aspx page, so what shoul i put before getURL so it will set values from texboxes
View 2 Replies
Jul 23, 2009
How to retrieve xml data in an aspx page after sending it using URLLoader.load
This is the flash code i am using:
var urlLoader:URLLoader = new URLLoader();
urlLoader.dataFormat = URLLoaderDataFormat.TEXT; //tried by giving VARIABLES also urlLoader.addEventListener(Event.COMPLETE, handleComplete);
urlLoader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
[Code]....
I were able to accept data in above statement when i send a string in var1 say "test". But on sending xml above error is getting.I have tried to load the xml data in XMLDocument also.
In AS20 i used sendAndLoad method to send and reterive xml data.
View 2 Replies
Feb 8, 2009
I'm making a contact page in as3 and I need some help. How do I send post data to a php page on this web page http://parallels.fm. Basically I have three dynamic text fields and a submit button. If I can send post data from that page to a php page that would be great.
View 1 Replies
Apr 13, 2011
I'm trying to do a real simple POST HTTP request using URLLoader. I'm following the next steps:
[Code]...
But, actually It does a GET request instead of a POST request. Is it possible to do a POST request without anything in the body of the request??
View 2 Replies
Feb 18, 2010
Using localconnection i can send data from one swf to another.
[Swf 1] Send data to [SWF 2] - This works with LocalConnection
[SWF 2] Sends this data to [PHP script]
Is there a way to send data from SWF 2 to PHP script without post data? or what would be the secure way to do it?
View 4 Replies
Sep 17, 2009
I want to pull some HTML off of a page that I can only get to through typing in my username and password? Is there anyway to enable flash to get to that page? Instead it just loads the same page that would load if you WEREN'T logged in.
View 5 Replies
Jan 19, 2010
I need to open a new page from Flash, using navigateToURL(...)
I need to send a variable to this newly opened html page that does not appear within the url as a query string, so i'm using POST.
However each time I try it the variables appear within the query string... what am I doing wrong?
ActionScript Code:
var link:String = "test.html";
var urlVars:URLVariables = new URLVariables();
urlVars.username = "username";
var urlRequest:URLRequest = new URLRequest(link);
urlRequest.data = urlVars;
urlRequest.method = URLRequestMethod.POST;
urlRequest.contentType = "application/x-www-form-urlencoded";
navigateToURL(urlRequest, "_blank");
Cheers,
Matt / MSFX
View 2 Replies
Apr 21, 2008
I am just trying to send some variables from flash to an asp page. Using the below method the variables are sent to the page.
sendText.loadVariables("http://archive.mysite.com/livefeed/pages/login.asp", "POST");
My issue is that I want the page to open in a new window and then have the post method send the vars.
Presently it does not open a new window.
View 2 Replies
Jul 30, 2008
I am trying to set up a form in a flash movie that will post the users entry to a php page. I then need the php page to re-direct the user to a page to show a result.
I have the following AS in the flash form. It seems to post to the php page but from within the flash movie. Rather than taking them to the php page, as a non-flash form post would.
on (release) {
loadVariablesNum("search.php", 0, "POST");
}
Is there a way I can get the flash form to post to the php page in the same way a non-flash form would post.
Hope this makes sense! Basically, when the user clicks the submit button, I need the browser to load another php page that gets the user's input via post.
View 1 Replies
Sep 4, 2010
in AS3 I'm trying to load a URL (a Yahoo address) into the application so I can process the source code and pull things out of it.However, when I load it, or any other page, I get 0 bytes back.Here's my current code.
private function doSearch():void {
var req:URLRequest = new URLRequest("http://yahoo.com");
var loader:URLLoader = new URLLoader();
[code].....
View 1 Replies
Sep 14, 2010
All Im trying to do is post firstname, lastname and emailaddress from a form inside my swf to a php file and then get that php file to return a result back to my swf.
First of all i tried using external interface to handle this because the server its going to run on doesnt support PHP.
I had the SWFgrab the data from the text fields, pass the data to JS through external interface, then the JS would use jquery AJAX to execute the php file, then the JS would grab the results from the AJAXd div, then pass the data back through to the SWF. It was a bit of a circle jerk but it worked.
However, the PHP script that needs to be executed in a different domain as the SWF. I forgot that this would cause an issue. I then tried to setup AJAX crossdomain policies, but this is going to be a reasonably high traffic site and i felt that the proxy options that i found were kind of slow.
I realised that what id been doing so far was probably over complicated anyway. So, i went back to basics and thought id try using the URLLoader to load in the php file as a string. I setup a crossdomain.xml file on my server that will be hosting the PHP and used the loader to grab the PHP file.
This works fine, all the PHP does is echo out 3 comma separated values which i then split into an array and use in my SWF. I get the values no problem. However, my status bar in firefox keeps saying that its still transferring.
Ive tried telling the PHP script to 'exit();' after its echo'd out my results. Ive tried telling the URLoader to .close(); when its grabbed the data, neither of which stop it from transferring. Im also using the web debugging proxy 'Charles' and that says that the connection opened and closed successfully, but firefox still says that its transferring.[code]...
View 3 Replies
May 11, 2009
Having trouble get the URLLoader class to work.Unsure but I must be missing something basic.Just trying to send name/value pairs from asp to flash.AS3 Code:
Code:
var loader:URLLoader = new URLLoader();
loader.dataFormat = URLLoaderDataFormat.VARIABLES;
[code]....
View 3 Replies
Jul 22, 2009
Im working with this little sidescroller tile based game, im saving maps to xml file. But got this little problem. I would like to do something like this.
var currentLevel:int = 1;
var myMap:String = "map" + currentLevel;
var myMap = xmlData.myMap.tiles.text();
so i would like to put that variable to that getting data from xml so if my currentLevel changes its getting diffrent data from xml file. so is that possible to put variable to that xmlData.myMap.tiles.text();
View 1 Replies
Sep 22, 2009
I have a Flash Form, which sends Variables to a PHP page through getURL - Post method.
My requirement is that : i need to redisplay the Form variables (name, email and so on) back in Flash as a confirmation after the data has been entered into the database in the PHP page.
View 1 Replies
Mar 27, 2012
I'm using the FB API and it's working fine. I can post a photo just fine, and I can post to the users wall with me/feed but I need the post to include a link to another FB page. I learned yesterday that you can't post a link within a wall post - ie the users feed, so I'm trying to post a like, but not having any luck.
View 2 Replies
Oct 28, 2009
I'm working on a sample i found on this site:
[URL]
it captures the webcam & saves the image then posts it to a page.
but it seems that i couldn't catch the saved image
i'm capturing the response in a aspx page and save the image in a file. here's my asp.net code:
if (Request.Files.Count == 0)
{
Response.Write("ERROR: No files were uploaded");
return;
[Code].....
View 1 Replies
Oct 7, 2010
Can someone point me to a simple example of posting to a user's facebook pages using a query string? ie I'm not using facebook connect.
View 1 Replies
Jun 3, 2009
I have a rails app that embeds a swf. The swf takes user input and posts to the server. For testing purposes, the controller is just redirecting the browser back to another pagewithout processing the data. Interestingly, after the post, the server log and the firebug log shows what clearly looks like a successful redirect (200) showing the correct URL GET, but the browser does not actually move to the new page and is stuck on the same page with the flash app. Same behavior occurs in both Firefox and Safari.
View 1 Replies
Jan 27, 2011
I am currently using URLLoader to get the source code of a webpage, problem is, I need the source that is is created after its javascript runs (what you would actually see in a browser), not the true source code.
I can manually see this Post-Javascript source by loading the page in firefox and then putting "javaScript:" followed by my javascript function in the URL area. It shows me the CURRENT source of the page.
Any way in as3 to get the final html (post-javascript) of a page?
View 3 Replies
Mar 26, 2011
I'm working on a sample i found on this site:t captures the webcam & saves the image then posts it to a page.but it seems that i couldn't catch the saved image, im kinda rusty on'm capturing the response in a aspx page and save the image in a file. here's my asp.net code:
if (Request.Files.Count == 0)
{
Response.Write("ERROR: No files were uploaded");
[code].....
View 2 Replies
Oct 1, 2010
I have Flash website, and I load data from XML file with urlLoader. If I change data in XML-file, refresh doesn't update data in site. I need to publish it again! How can I make this automatic, that I only need to refresh when data is changed? I can't allways publish when I change somethin in XML-file.
View 3 Replies
Feb 7, 2012
In my app, I load multiple xml files. And to load those, I always create a new URLLoader. Nothing special. The first file works fine, the second one does, too. The third one, however, reports to have loaded fine, but the data it holds is actually the data of the second file. The current workaround is to load the third file twice, which somehow works... weird.
[Code]...
View 1 Replies
Mar 24, 2007
i've been setting up a high score table in my game, and everything is working, but i cant work out how to get variables from the URLLoader.data that im retrievingif i trace loadedScores.data, i get this&name1=matt&score1=323250&name2=1234567890123456.. . and so o've tried passing it to a URLVariables constructor, but it says the string doesnt contain the correct name/variable pairs or something, and loadedScores.data.name1 doesnt work.
View 8 Replies
Jun 1, 2009
I am loading data from php using the echo method into flash via the URL loader:URLLoader method. The data then gets assigned to an objectMy problem is that the loaded data is being imported in fine and I can trace it and even display it in a text box, but if I try and use this data in a conditional statement - the statement just won't recognize its value?
My PHP---v
$row = mysql_fetch_array($query);
echo "result=success";
[code].....
View 1 Replies
Jan 28, 2010
How can I parse my incoming string returned by server and get values?
Look at the code below, that is part of a class I am writing:
Code:
var PHPURLRequest:URLRequest = new URLRequest(MyServerURL+"myscript.php");
var PHPsendVars:URLVariables = new URLVariables();
var PHPLoader:URLLoader = new URLLoader();
[Code]...
View 1 Replies
Oct 22, 2010
Problem: How can I write a function so that it assigns the retrived data to a variable?
Setup:
data.txt contents: "This is my data."
Code:
// Simplest way to get String data from a txt/php file:
function queryData(_url:String):void {
var dataSource:URLRequest = new URLRequest(_url);
[Code]....
View 2 Replies
Feb 18, 2007
Is it possible that I go to an html page , (which contains a flash movie) and let the movie start playing in a certain behaviour according to a parameter passed in the URL?
View 3 Replies
Jun 1, 2009
I am loading data from php using the echo method into flash via the URL loader:URLLoader method. The data then gets assigned to an object.My problem is that the loaded data is being imported in fine and I can trace it and even display it in a text box, but if I try and use this data in a conditional statement - the statement just won't recognize its value?[code]My problem is in green above. The variable/data being imported in is indicating which measuring unit the user preferred - "inchs" for inch's or "cms" for centimeter's.The statement never seems to recognize this data and always proves false and 'else' is executed.However if I instruct the data to be displayed in a text box eg."display.text = n.unit;" The text box displays the correct result as if the data has came across fine?
View 3 Replies