My favorites | Sign in
Project Home Downloads Wiki Issues Source
Search
for
UserData  
Actionscript 3.0 package that contains all available services for retrieving information about a Last.fm user.
Phase-Implementation, userdata, package
Updated Feb 4, 2010 by manoftom...@gmail.com

UserData Package

The com.lfm.services.UserData package contains all available services for retrieving information about a Last.fm user. You can import all of these at once in Actionscript 3.0 or individually depending on your needs.

Examples

Importing all classes at once use:

import com.lfm.services.UserData.*;

var profileInfo:Profile = new Profile("RJ");
var friendsList:Friends = new Friends("RJ");

Importing individual classes:

import com.lfm.services.UserData.Profile;
import com.lfm.services.UserData.Friends;

var profileInfo:Profile= new Profile("RJ");
var friendsList:Friends = new Friends("RJ");

Sign in to add a comment
Powered by Google Project Hosting