|
UserData
Actionscript 3.0 package that contains all available services for retrieving information about a Last.fm user.
Phase-Implementation, userdata, package UserData PackageThe 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. ExamplesImporting 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