Projects tagged ‘api’ and ‘as3’


[92 total ]

2 Users

The corelib project is an ActionScript 3 Library that contains a number of classes and utilities for working with ActionScript 3. These include classes for MD5 and SHA 1 hashing, Image encoders, and ... [More] JSON serialization as well as general String, Number and Date APIs. For the latest and greatest version of as3corelib, we recommend pulling the source using SVN. [Less]
Created about 1 year ago.

1 Users

This project is meant to extend the capabilities Adobe Flash Player 9 for HTTP/HTTPS related things. Following are the objectives:- Support for HTTP Basic Authentication through HTTP/GET Way to ... [More] get different HTTP status messages Add support for HTTPS Background:- One the classes is HTTPURLLoader, which was created to do HTTP Basic Authentication through HTTP/GET which is not doable with Adobe Flash Player 9 URLLoader API. For example, Bloglines API needs that kind of authentication. HTTPURLLoader also provides different HTTP status messages and can be used for different HTTP methods. [Less]
Created about 1 year ago.

0 Users

Piwik aims to be an open source alternative to Google Analytics. This is easy to use Piwik ActionScript 3 API. It enables you to get the data from Piwik really easy and use it in your ActionScript ... [More] projects - it's mainly focused on Flex framework. It also includes ready to use charts. This project will be published on 7.July 2008. [Less]
Created about 1 year ago.

0 Users

OOP library to interact with LastFM API. Born during the development of some prototypes at Tonic.co.uk, it is currently maintained by its staff. At the moment it covers all the methods which don't ... [More] require authentication but hopefully, especially if someone else wants to join the force, they will be covered soon. Some examples are hosted in the repository, for a complete reference you can have a look to the unit tests. Quick example: [Less]
Created 4 months ago.

0 Users

The Scribd library is an ActionScript 3.0 API for the online document sharing application, Scribd. It provides access to the entire Scribd API.
Created about 1 year ago.

0 Users

____ ____ __ __ ______ ______ ______ ______ ____ ______ /\ _`\ /\ _`\ /\ \/\ \ /\ _ \/\__ _\/\__ _\ /\ _ \/\ _`\ /\__ _\ \ \,\L\_\ \ \L\_\ \ \/'/'\ \ \L\ ... [More] \/_/\ \/\/_/\ \/ \ \ \L\ \ \ \L\ \/_/\ \/ \/_\__ \\ \ _\L\ \ , < \ \ __ \ \ \ \ \ \ \ \ \ __ \ \ ,__/ \ \ \ /\ \L\ \ \ \L\ \ \ \\`\ \ \ \/\ \ \ \ \ \_\ \__ \ \ \/\ \ \ \/ \_\ \__ \ `\____\ \____/\ \_\ \_\\ \_\ \_\ \ \_\ /\_____\ \ \_\ \_\ \_\ /\_____\ \/_____/\/___/ \/_/\/_/ \/_/\/_/ \/_/ \/_____/ \/_/\/_/\/_/ \/_____/ Sekati API is a multipurpose Actionscript 3.0 framework designed to bootstrap the development process of flash/flex sites and applications. It is [Less]
Created about 1 year ago.

0 Users

This is a very simple gallery which can be embedded into the website and is built in Flash using Actionscript 3.0. It makes use of Picasa Web Albums Data API to read a RSS file and then show photos ... [More] from a particular album into the flash file. Right now its in a very basic stage and needs only 2 data information i.e. your username and an albumid. Check out the details by downloading the examples files from the download section. Source is available from the svn. And please if you are using it somewhere, let me know on swapnilsarwe@gmail.com. And even if you are trying to extend it with more options or better options, please inform me, I would be glad to see this baby grow. [Less]
Created 12 months ago.

0 Users

Flex/ActionScript3 library of Last.fm's web services. API methods: album.*, artist.*, auth.getSession, event.*, geo.*, group.*, library.*, playlist.*, radio.*, tag.*, tasteometer.*, track.* ... [More] , user.*, venue.*. Other Similar Projects: http://code.google.com/p/lastfm-as3/ http://code.google.com/p/lastfm-as3-api/ News: May 03, 2009 You can download latest library and its document here. You can also checkout the source code (as a project in Flex Builder 3) with SVN. And as3-lastfm-web-services-test is its unit test (as a project in Flex Builder 3 as well). The important classes are fm.last.LastFmService and fm.last.RestAPI. Each Last.fm's API method is implemented in fm.last.api.*. Further reading: ImplementationIssue, UsageExample. Any feedback, comment, suggestion is absolutely always welcome!! Here is an example of desired usage. package { import fm.last.*; import fm.last.api.*; import fm.last.error.*; import flash.display.Sprite; import flash.events.*; import flash.net.*; public class LastFmServiceExample1 extends Sprite { public function LastFmServiceExample1() { // example for artist.getSimilar http://www.last.fm/api/show?service=119 var lastfm:LastFmService = new LastFmService("an_api_key"); // get similar artistes of Cher // the `onComplete` callback function will be called then lastfm.artist.getSimilar(onComplete, onError, "cher"); // this call will result in an error, // and the `onError` callback function will be called lastfm.artist.getSimilar(onComplete, onError, "No_Such_Artist"); } /** parameter is an XML document */ private function onComplete(response:XML):void { // an successful response could be... /* * * * Sonny & Cher * 3d6e4b6d-2700-458c-9722-9021965a8164 * 100 * www.last.fm/music/Sonny%2B%2526%2BCher * ..... * * * ... * * */ // we can trace the mbid `3d6e4b6d-2700-458c-9722-9021965a8164` trace(response. similarartists.artist[0].mbid); } /** parameter is an ErrorEvent */ private function onError(e:ErrorEvent):void { trace(e.toString()); } } }Here is an example of those APIs requiring authentication. package { import fm.last.*; import fm.last.api.*; import fm.last.error.*; import flash.display.Sprite; import flash.events.*; import flash.net.*; public class LastFmServiceExample2 extends Sprite { public function LastFmServiceExample2() { // example for auth.getSession http://www.last.fm/api/show?service=125 var lastfm:LastFmService = new LastFmService("an_api_key", "a_secret"); // how to get a "token" is outside the scope of this library // you may get it manually or with JavaScript, etc. lastfm.auth.getSession(onGetSession, onError, "a_token"); } private function onGetSession(response:XML):void { // a successful response could be... /* * * * a_name * a_session_key * 0 * * */ var sessionKey:String = response.session.key; // now new a last.fm service with acquired session var lastfmInSession:LastFmService = new LastFmService("an_api_key", "a_secret", sessionKey); // example for library.addArtist http://www.last.fm/api/show?service=371 // which requires authentication. lastfmInSession.library.addArtist(onComplete, onError, "Björk"); } private function onComplete(response:XML):void { // successful response is trace(response.attribute("status")); // ok } private function onError(e:ErrorEvent):void { trace(e.toString()); } } } [Less]
Created 7 months ago.

0 Users

Simple as3 implementation for bit.ly API.
Created 4 months ago.

0 Users

Description
Created 4 months ago.