Creating Server Side Flash Objects Using .NET

How to create an array of Flash objects (like buttons) on the server side using .NET and then transfer them as binary files?

In essence, I would like to reduce the time spent on the client creating objects from the basic primitives.

+5
source share
3 answers

This can be done using Flash Remoting. I used to use FluorineFX ( fluorinefx.com ), but it has not been updated for a long time.

WebORB for.NET(http://www.themidnightcoders.com/products/weborb-for-net/overview.html), Flash Remoting. FluorineFX, WebORB . WebORB , , , , .

+1

: AS3 ASP

, ASP.NET URLLoader. " e.target.data processASP. '

: URLLoader asp ().

var ldr:URLLoader = new URLLoader();
var data:URLVariables = new URLVariables();
data.something = "someData";
data.somethingElse = "moreData";
var request:URLRequest = new URLRequest("url.asp");
request.data = data;
request.method = URLRequestMethod.POST;//or GET
ldr.addEventListener(Event.COMPLETE, onLoad);
//listen for other events
ldr.load(request);

.

0

Flex Compiler SWF- .as, . SWF , .

- URL- SWF <embed> ExternalInterface. ...

. SWF, ( <embed>/ExternalInterface), gzipped JSON XML SWF , . Flash, Flex OpenSource (, MinimalComps) - , , .

0

All Articles