Flash CS3:Comuniczione con un Web服务器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flash CS3:Comuniczione con un Web服务器相关的知识,希望对你有一定的参考价值。
var variables:URLVariables = new URLVariables(); variables.miavariabile = "Ciao"; var request:URLRequest = new URLRequest(); request.url = "http://www.miodominio.com/miapagina.php"; request.method = URLRequestMethod.POST; request.data = variables; var loader:URLLoader = new URLLoader(); loader.dataFormat = URLLoaderDataFormat.TEXT; loader.addEventListener(Event.COMPLETE, completeHandler); try { loader.load(request); } catch (error:Error) { trace("Errore nel caricamento dell' URL"); } function completeHandler(event:Event):void { var x_xml:XML = XML(event.target.data); trace(x_xml); }
以上是关于Flash CS3:Comuniczione con un Web服务器的主要内容,如果未能解决你的问题,请参考以下文章
单击按钮上的 Xamarin.Forms 动画(Flash 背景)