Flash :: URLRequest - Send A Delete Method From Player (Flex)

Jan 14, 2010

Need to find a way to send a delete method from Flash Player (Flex). Currently it's not done by default (except for from AIR), but I am sure someone has augmented the URLRequestHeader to get it to work properly. I've tried this, it isn't working:

[Code]...

View 2 Replies


Similar Posts:


Flex :: Url - Send Array In URLRequest?

Jun 24, 2011

In efforts to allow users to save their progress in my application, I've decided to allow them to save. In order to do this, I'd like to create an array with all the necessary information, and send that information to a coldfusion (.cfm) file and process the information from that page. Is it possible to send an array instead of a bunch of url variables? It is possible (and quite probable) that users would exceed the query string length of most browsers.

View 1 Replies

Flash :: Send Xml Flex To Php Via Post Method In <mx:httpservice >?

Jul 9, 2009

i created xml in flex after that creation i post to php via http service but when i add like xml in http service flex throws error msg like Error #1096: XML parser failure: Unterminated element." What did i worng ? How to send xml data flex to php ?

<mx:HTTPService id="createxml" method="POST" url="http://####/admin/?do=storebettingdetails" useProxy="false"></mx:HTTPService>var xm:XML = new XML("**********"); ------ adding child node -- Thend attached xml to service like createxml.request=xm;
createxml.send();

View 1 Replies

Flash - Send Custom Headers With URLRequest?

Jun 1, 2011

I want to add Authorization header to my requests.I added the following line in crossdomain.xml of the server:

<allow-http-request-headers-from domain="*" headers="Authorization"/>

And still, the header is not sent (checked with Wireshark).

EDIT:the code of the urlRequest:

var request:URLRequest = new URLRequest();
request.method = URLRequestMethod.POST;
request.url = this.uploadURL;
request.data = post;

[code]....

View 2 Replies

Media Server :: Shareobject.send() - Send Method Does Not Work

Mar 18, 2010

I have a problem with shareobject. the Send method does not work. I work with AS3 My code

[Code]....

View 4 Replies

Actionscript 3 :: Send Multiple Addresses To URLRequest?

May 17, 2011

I'm using the weather.com XML service to retrieve forecast data. I created an instance of UrlLoader and passed the entire HTTP address including credentials, location and other parameters to it. This works very well in tandem with the XML(urlLoader.data) functionality in that I get the result for the specified location ID. I then use E4X to trace just the nodes needed.

The tricky part is that I have to do this for 19 additional cities. I've done the initial work in the Main class, Main function, private function onXmlLoaded. I tried creating a new public function getCityName making the new URLRequest, tracing XML and adding values to my components. However, when I attempt this, I receive

Error 5006: An ActionScript file cannot have more than one externally visible definition.

How can I easily setup the URLRequest to request data for all 20 cities, and parse the results thereafter? Do I pass an array of location IDs to URLRequest, because that's the only part of the HTTP request that's different. Do I create separate ActionScript files with their own class and functions for each of the 20 queries?[code]...

View 2 Replies

ActionScript 3.0 :: Adobe Flash Player Has Stopped A Potentially Unsafe Operation URLloader URLrequest

Oct 29, 2011

I am working on a flash website that loads live inventory data from a public csv file publish by google docs.  the csv file is located at a public address on google docs server:[URL].. I am using a URLloader and URLrequest within my flash movie to grab this data and assign it to different variables.

It works great when I preview the movie in flash. However, when I go to publish the movie and preview the html file its loaded into in dreamweaver, I get a security warning from adobe flash player: Adobe Flash Player has stopped a potentially unsafe operation

I went ahead and published the html file that contains the swf file to the web, and when I go to my site, I don't even get the flash player warning; it just sits there like its trying to load the URLrequest and never completes.

I understand that flash player has a security measures that prevents flash files from accessing files outside of the server directory that the swf file is published to.  I know you can create policy xml files to tell flash it's okay to load the data, but those policy files have to be located on the public server from which the data is being grabbed. But it's not like I can waltz on to google's servers a stick a policy file in there!

Is there any way to tell the flash player it's okay to load this data without getting that security error?  I can't have the end user having to go into their flash settings and adding the location manually.  I just need it to work without the security warning.

Is there another method of loading data from an external server without tripping up flash player security? aka, something other than URLloader and URLrequest?

[Code]...

View 25 Replies

ActionScript 3.0 :: Create / Send Dynamic Variables With URLRequest?

May 9, 2009

I'm trying to send variables to a payment gateway (dibs) and need to post variables to the likes of[code]...

In creating a dynamic variable I'm doing this, which works. But it's not posting the values to the php-page. (The "normal" variables are being posted just fine, so the error isn't there) [code]...

View 1 Replies

ActionScript 2.0 :: URLRequest - Send The Xml Data To PHP / PERL Script (server)

Dec 13, 2006

I have XML object formed and data ready to write to the server by means of server-side script. The code used on the server-side script is testing code available from the ActionScript 3.0 cookbook examples (by Joey Lott). It basically takes the XML object, parses it and writes some of the text node values into a textfile. What i want to achieve send the xml data from AS3.0 to PHP/PERL script, parse these data, write some variables from the xml object into a textfile on the server.

[Code]...

View 1 Replies

Professional :: When Delete The The Last Image (5) Only The First 2 Images Show When Run In Flash Player?

Mar 1, 2011

My client has purchased a Flash template which I'm in the process of editing. The XML file has 5 images linked to the Flash file, I've replaced the first 3 images, all works when uploaded to the remote server but when I delete the the last image (5) only the first 2 images show when run in Flash Player. If I view it in live view Dreamweaver (CS5) it runs with no problems ie it runs through the 4 images as expected.Can't figure it out checked the usual things, deleted the files on the server, cleared the cache in Firefox, I'm quite rattled spent the whole day on this, still can't get it to work.

View 8 Replies

Php :: Send More Than One 'stream' Of Jpeg ByteArray Data In A Single URLRequest And Output 2 Images?

Jan 25, 2011

I have an AS3 swf which users can upload jpg images to my EC2 instances which sit behind and Elastic Load Balancer. The jpg images are converted into bytearray data and sent using URLLoader.load(URLRequest)I make 2 calls when uploading, one to upload a large version, then another to upload a thumbnail version. A PHP script to which the bytearray data is uploaded converts this to a file using file_put_contents($destination,$GLOBALS["HTTP_RAW_POST_DATA"])Is it possible to combine these two requests into a single request which contains both the bytearray data for the large and thumbnail images and 'split' the HTTP_RAW_POST_DATA to create 2 files at the server. This would be better than uploading the bytearray for the large version then using something like ImageMagick to resize the resulting image into a thumbnail which I realise is another option.

View 1 Replies

ActionScript 3.0 :: Process For Feeding XMLList Values To URLRequest Method?

Dec 18, 2009

What is the process for feeding XMLList values to a URLRequest method?

Say I have an array:

ActionScript Code:
var imageURLS:Array = ["images/image1.png", "images/image2.png", "images/img3.png"];

[Code].....

Way I see it is the traces above are the same, where am I wrong?

View 3 Replies

Flex :: Combobox Backspace Or Delete Key Does Not Delete Highlighted Text

Mar 26, 2010

I am implementing a flex auto-suggest combobox - as the user types in each character: Consider the string 'Stackoverflow' and user input = 'st'

1) the data provider is filtered to show all items starting with 'st'
2) text is set to auto-suggest string such that the un-typed part is highlighted.

So for instance, the combobox text may contain st'ackoverflow', where 'ackoverflow' is highlighted using setSelectedIndex()When I hit back-space or delete, and check the 'this.text' value, I expect that the last un-highlighted character ('t' in the above case) gets deleted and the data provider is filtered to show all items starting with 's'. However the text property contains 'st', as before

View 2 Replies

Flex :: Determine When A Method Or Property Was Added To A Player Or SDK Class?

Sep 11, 2009

I recently found a method (ByteArray.clear()) that FlexBuilder complains is possibly undefined; however, the method is in fact documented in the Flex LiveDocs. It must have been added in a later version of the SDK than I have installed. I'm not asking about this particular method, but I'm giving it as an example of the documentation issue that I'm trying to resolve. My questions are:

How can I determine what version of the SDK or Flash player that a method or property was added in? How can I tell which versions of the SDK are supported on which Flash player versions?

I want to be able to determine from the documentation, instead of compiler or runtime errors, what SDK and Flash player versions are needed to support newly added methods.

With Java I look for the @since javadoc tag when I need to know this, but I can't find an equivalent feature in the Flex docs.

View 3 Replies

Xml :: Flex - HTTPService Event Listener So It Triggers Something When ".send" Method Gets Data From XML?

Sep 23, 2009

I've doing a bit of "training" at working with Flex and Remote Data from XML files.This is my HTTPService

<mx:HTTPService id="loginData" url="com-handler/basic.xml" showBusyCursor="true">
</mx:HTTPService>

I have a button and when its clicked its call a function, that calls loginData.send and does a little IF condition, that IF condition relies on the data returned by loginData.The condition doesn't work because its called right next to the loginData.send, and .send method still didn't returned the values from the XML file. But if you click it a second time a second after the first click the IF condition works.So to deal with i wanted to do a eventListener so that when loginData.send returned the data from the XML it fires up the IF condition. But i don't know how to do it.

View 1 Replies

ActionScript 2.0 :: Usage Of The Delete Method?

Jan 3, 2007

usage of the delete method?

In all my years of flash programming I've never come used it .

View 7 Replies

ActionScript 3.0 :: Send The Number Of Points A Player Is Awarding To Another Player To A MySQL?

Jul 11, 2010

I have a game that needs to send the number of points a player is awarding to another player to a MySQL database on the same server. This game is part of my psych MSc dissertation, and I've gotten a lot of help on this bit from my department techie who knows php and MySQL well. However, he has absolutely no experience with Flash or Actionscript. He's gotten the php bit working so that it does send data to the right table in the database when it's supposed to using dummy variables, but when we try to test it with the actual .swf thats supposed to be doing the sending, nothing happens. We're pretty sure this means theres something wrong with the actionscript, but we don't know where.

[Code]...

View 1 Replies

Flash :: JW Player - Send User To A Certain Url When They Click On The Video?

May 14, 2011

When the user clicks on the video once its ended id like it to pop up a window with a new url in it - how can i do this in jw player?

View 1 Replies

ActionScript 3.0 :: Send Information From Swf Inside A Flash Player?

Nov 23, 2009

Is it possible to embed a flv into a swf and then run it thru an arbitrary flash player and be able to send information from the swf to a destination of my choice?The information could be some variable that is sent when the movie starts playing etc

View 0 Replies

ActionScript 2.0 :: Send Information From Swf Inside A Flash Player?

Nov 24, 2009

Is it possible to embed a flv into a swf and then run it thru an arbitrary flash player and be able to send information from the swf to a destination of my choice?

The information could be some variable that is sent when the movie starts playing etc

View 2 Replies

Javascript :: Send A JSON Command To The Company's Flash Player?

Aug 5, 2011

I've ran into a weird problem while trying to send a JSON command to my company's flash player. Basically, i am unable to pass a playlist to this player - nothing happens - using the following command:

player.sendEvent("LOAD_PLAYLIST", json_str);

but the weirdest part is that if I print the entire command using Firebug's console.log, copy it and paste it into the code (thus hardcoding the playlist), everything works like a charm.

For instance, the following code:

player.sendEvent("LOAD_PLAYLIST", "{"streams": [{"src": "rtmp://xxx.xxx.xx:80/redirectvodxxx/nas2.share/h264/512x384/progname1/prog_1_20110804.mp4"},{"src": "rtmp://xxx.xxx.xx:80/redirectvodxxx/nas2.share/h264/512x384/progname2/prog_2_20110804.mp4"},{"src": "rtmp://xxx.xxx.xx:80/redirectvodxxx/nas2.share/h264/512x384/progname3/prog_3_20110804.mp4"}]}");

was obtained using

console.log('[loadNewListofContents] playing the following content list: player.sendEvent("LOAD_PLAYLIST", ' + json_str.toString() + ');');

and if i hardcode it, it works!I've tried all the toString() tricks I can think of (ex: json_str.toString(), '"' + json_str.toString() + '"', etc...) but so far no such luck.

View 2 Replies

Php :: Use HTTPService Rather Than URLRequest To Send Data. Content Type Is Messing With The Data?

Jul 28, 2011

I need to send a byte array of data (its an image source) along with a bunch of other vars to a service.If I send the byte array using something like the following

var request:URLRequest = new URLRequest ( 'http://www.mydomain.com/upload.php' );
var loader: URLLoader = new URLLoader();
request.contentType = 'application/octet-stream';

[code].....

View 1 Replies

Actionscript 3 :: Send Data From Flash Player Into An External Executable Through A Pipe?

Nov 11, 2011

I want to send data generated by a flash module into an external executable in windows. From what I've learnt about interprocess communication, I think it is appropriate to use pipes in this case. I am using Flash professional CS5 and when a 'trace' command is used inactionscript the ouput will be displayed in the output window in flash professional. I think Flash pipes the data into the output window and if so is it possible to obtain the handle to that pipe. Is there a way by which I can write the output from flash player itself when the trace commands are executed or the data generated on an event directly into the buffer of a pipe.

View 1 Replies

Actionscript 3 - Flash Player Passing Values From Url As GET Method?

Sep 20, 2011

I am making a audio flash player which will play a sound passed to it.How can i pass the values from a browser url?like i have to write

[URL]

in browser and swf will parse it to play the file from the location passed as GET parameter 'file'. How i can do it in as i am using Adobe Flash CS4 Professional with actionscript 3.0

View 2 Replies

Professional :: URLRequest Lost - Error 1046: Type Was Not Found Or Was Not A Compile-time Constant: URLRequest

Aug 12, 2009

In my movie i have a link button with following, simple, function creating a link:

[Code]...

lately i've associated a class file (.as) to my movie and immediately after, when publishing the movie i got the following error message: 1046: Type was not found or was not a compile-time constant: URLRequest. as well as a couple of other related error messages: 1180: Call to a possibly undefined method URLRequest. 1180: Call to a possibly undefined method navigateToURL. when i remove the link to the class file, the problem goes away. also, i have checked the class file for mentioning of "URLRequest" and nothing is there.

View 9 Replies

Actionscript 3 :: HTTPService: What Is Its Send Method Doing

Aug 12, 2011

I've got a JSON string:

[Code]...

I don't know what I am doing wrong but on my HTTP server I get: {["object","Object"]}

View 2 Replies

ActionScript 3.0 :: Facebook API - Method To Send Gift?

Oct 7, 2009

I need to know wich method from the AS3/Facebook API I must use to allow users to send a gift. I have all my system developed, at the point the user selects his friends from a datagrid, obtaining their UIDs. I explored the SendEmail and SendNotification methods, but those aren't what I'm looking for...

View 4 Replies

ActionScript 2.0 :: Special Chars And Xml Send Method?

Aug 8, 2006

I'm sending an xml file from flash to php, so php can save it to the servers filesystem.It works great, except when there's a node with a special char like a quote in it.My actionscript code is like this:

Code:
xmlExport.xmlDecl = "xml=";
xmlExport.sendAndLoad("xmlexport.php", xmlExportStatus);

And my php code is like this:

PHP Code:

fwrite($handle, stripslashes(urldecode($_POST['xml']))); 

Both somewhat simplified, but this is what matters I think.I'm not sure about the urldecode part, but I've got this problem always, no matter if I use it or not.I've traced the xml object, and I see that the quote is converted to ' then. That's great, but when php writes it, it stops there, so I end with only half of an xml file.

View 1 Replies

IDE :: How To Get And Send Values In AICC - HACP Method

Dec 11, 2007

I am new to AICC. Is anybody know how to get and send values in AICC - HACP method ?

View 3 Replies

ActionScript 2.0 :: Send Email Over ASP (POST Method)?

May 11, 2009

I have a problem with sending email from a flash contact form using ASP. I'm trying to send data to ASP with the POST method, and then send an e-mail using ASP code, but it doesn't work. In fact, when pressing the submit button in a Flash contact form, in IExplorer nothing happens, and in Mozilla I get a message Waiting for[code]...

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved