Projects tagged ‘air’, ‘flex’, and ‘python’


Jump to tag:

Projects tagged ‘air’, ‘flex’, and ‘python’

Filtered by Project Tags air flex python

Refine results Project Tags django (1) adobe (1) xml-rpc (1) actionscript (1) pyamf (1) flash (1) remoting (1) as3 (1) rpc (1) gae (1) cross-platform (1) amf (1)

[5 total ]

1 Users
 

Pair is an Actionscript 3 implementation of the Python standard library.
Created over 2 years ago.

0 Users

AS3 Package: com.python.rpc.xmlrpcThe AS3 package com.python.rpc.xmlrpc contains classes for easy access of python services provided by python's SimpleXMLRPCServer implementation. The provided ... [More] example is based upon tutorial: "Put a Flex UI on your application" by Bruce Eckel (mindview.net) published at: http://www.adobe.com/devnet/flex/articles/flex_ui.html Requires:AS3 package com.ak33m.rpc.xmlrpc.XMLRPCObject (Google code project: as3-rpclib), see http://code.google.com/p/as3-rpclib/ Contains:AS3 class PYTHONXMLRPCServerinit(host:String,port:uint):void createService(name:String,...):PYTHONXMLRPCService AS3 class PYTHONXMLRPCServiceinit(server:PYTHONXMLRPCServer,name:String,...):void apply(args:Array=null):void call(...rest):void Ease of use: See the example! +++ ActionScript code block +++ var pyServer:PYTHONXMLRPCServer=new PYTHONXMLRPCServer(); pyServer.init("127.0.0.1",9000); var pyServiceName:String="toLowerCase"; var pyService:PYTHONXMLRPCService=pyServer.createService(pyServiceName,onFault,onResult); pyService.call("Hello World!"); +++ Python code block +++ import sys from SimpleXMLRPCServer import SimpleXMLRPCServer class MyPythonServices: def toLowerCase(self, str): print "toLowerCase()"; resultStr = str.lower(); return resultStr; server = SimpleXMLRPCServer(("localhost", 9000)); print "Local python server listening on localhost port 9000." print " -> Close console window to stop the server and exit."; server.register_instance(MyPythonServices()); server.serve_forever(); [Less]
Created 12 months ago.

0 Users

Done for the Tampy Bay Python users group.
Created 12 months ago.

0 Users

This is an example application that uses Adobe AIR with PyAMF and Google App Engine, showing how an AIR application can call web services through AMF to provide functionality for an AIR application. ... [More] The demo uses the more advanced Flex Object Remoting API which is cleaner and higher level than netconnect. [Less]
Created 12 months ago.

0 Users

PylexChat a based c/s chat system. It used Python/Flex/AIR tech. The Server will build in Googel App Engine. The Client will built in Flex(.swf) and AIR(.air). So it will work on the ... [More] Windows/Linux/Android/Web. It will be my first try on Python + Flex. I never used Flex befor, and a little Python basic knowledge, I will try my best to construct the project. [Less]
Created 11 days ago.