Flash CS3:Comuniczione con un Web服务器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flash CS3:Comuniczione con un Web服务器相关的知识,希望对你有一定的参考价值。

  1. var variables:URLVariables = new URLVariables();
  2. variables.miavariabile = "Ciao";
  3. var request:URLRequest = new URLRequest();
  4. request.url = "http://www.miodominio.com/miapagina.php";
  5. request.method = URLRequestMethod.POST;
  6. request.data = variables;
  7. var loader:URLLoader = new URLLoader();
  8. loader.dataFormat = URLLoaderDataFormat.TEXT;
  9. loader.addEventListener(Event.COMPLETE, completeHandler);
  10. try {
  11. loader.load(request);
  12. } catch (error:Error) {
  13. trace("Errore nel caricamento dell' URL");
  14. }
  15. function completeHandler(event:Event):void {
  16. var x_xml:XML = XML(event.target.data);
  17. trace(x_xml);
  18. }

以上是关于Flash CS3:Comuniczione con un Web服务器的主要内容,如果未能解决你的问题,请参考以下文章

Nand Flash 基础

腾达bcm5357换flash,如何编程

单击按钮上的 Xamarin.Forms 动画(Flash 背景)

浅谈cookie,sessionStorage和localStorage区别

swfupload组件上传文件

Actionscript 3 简单 Cookie