Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
$#!
 _parsePhotoXML, com. kelvinluck. flickr. Flickr
 _zeroPad, com. kelvinluck. util. DateFormat
A
 addConsolePublisher, com. kelvinluck. util. LogWrapper
 addFavorite, com. kelvinluck. flickr. Person
 addNote, com. kelvinluck. flickr. Photo
 addPhoto
 addPublicContact, com. kelvinluck. flickr. Person
 addPublicGroup, com. kelvinluck. flickr. Person
 addSize, com. kelvinluck. flickr. Photo
 addTag
 addTracePublisher, com. kelvinluck. util. LogWrapper
C
 callMethod, com. kelvinluck. flickr. Flickr
 contactsGetList, com. kelvinluck. flickr. Flickr
 contactsGetPublicList, com. kelvinluck. flickr. Flickr
D
 DateFormat, com. kelvinluck. util. DateFormat
 dateToIso, com. kelvinluck. util. DateFormat
E
 ExifData, com. kelvinluck. flickr. ExifData
F
 favoritesAdd, com. kelvinluck. flickr. Flickr
 favoritesGetList, com. kelvinluck. flickr. Flickr
 favoritesGetPublicList, com. kelvinluck. flickr. Flickr
 favoritesRemove, com. kelvinluck. flickr. Flickr
 Flickr, com. kelvinluck. flickr. Flickr
G
 getFavorites, com. kelvinluck. flickr. Person
 getFlickr, com. kelvinluck. flickr. Flickr
 getGroup, com. kelvinluck. flickr. Group
 getInstance, com. kelvinluck. util. LogWrapper
 getLog, com. kelvinluck. util. LogWrapper
 getNote, com. kelvinluck. flickr.Note
 getNotes, com. kelvinluck. flickr. Photo
 getPerson, com. kelvinluck. flickr. Person
 getPhoto, com. kelvinluck. flickr. Photo
 getPhotos, com. kelvinluck. flickr.Tag
 getPublicContacts, com. kelvinluck. flickr. Person
 getPublicGroups, com. kelvinluck. flickr. Person
 getTag, com. kelvinluck. flickr.Tag
 getTags
 Group, com. kelvinluck. flickr. Group
I
 isoToDate, com. kelvinluck. util. DateFormat
L
 Logger, com. kelvinluck. util. LogWrapper
N
 Note, com. kelvinluck. flickr.Note
private function _parsePhotoXML(px: XMLNode):Array
Private internal function used to avoid duplicate code to parse “the standard photo list xml”
private static function _zeroPad(value: Number):String
Simple function to make sure a number is the right amount of characters long - used internally by dateToIso.
public function addConsolePublisher()
Call this function if you want logged output to be displayed in the seperate “console” swf.
function addFavorite(photo: Photo):Void
Add’s a favourite Photo to this user.
function addNote(note: Note):Void
Adds a Note object to this Photo.
function addPhoto(photo: Photo):Void
Adds this Photo into this Person’s _photos Array if it isn’t already there
function addPhoto(id: String,
photo: Photo,
author: Person):Void
Add’s a reference to a Photo to this Tag.
function addPublicContact(contact: Person):Void
Add’s a public contact to this user
function addPublicGroup(group: Group,
isAdmin: Boolean):Void
Add’s a public group to this user and notes whether this user is an admin of that group.
function addSize(size: PhotoSize):Void
Adds a PhotoSize object to this Photo.
function addTag(tag: Tag,
count: Number):Void
Adds a Tag into this Person’s _tags Array if it isn’t already there
function addTag(id: Number,
tag: Tag,
author: Person):Void
Adds a Tag object to this Photo and associates it with a Person who is the Person who associated that Tag with this Photo.
public function addTracePublisher()
Call this function if you want logged output to be displayed in the trace window of the Flash IDE.
public function callMethod(method: String,
additionalArguments: Object,
requiresAuthentication: Boolean):Void
Used to call a method on the flickr API.
public function contactsGetList()
Calls flickr.contacts.getList to get a list of contacts for the calling user.
public function contactsGetPublicList(nsid: String)
Calls flickr.contacts.getPublicList to get a list of contacts a user.
private function DateFormat()
Private constructor to prevent you creating instances of this class
public static function dateToIso(date: Date):String
Static function which converts a given Date object into an ISO / MySQL Date Stamp format (e.g.
function ExifData()
Constructor function
public function favoritesAdd(photoId: Number,
email: String,
password: String)
Calls flickr.favorites.add to add a photo to a user’s favorites list.
public function favoritesGetList(userId: String,
perPage: Number,
page: Number,
email: String,
password: String)
Calls flickr.favorites.getList to get a list of the user’s favorite photos.
public function favoritesGetPublicList(userId: String,
perPage: Number,
page: Number)
Calls flickr.favorites.getPublicList to get a list of favorite public photos for the given user.
public function favoritesRemove(photoId: Number,
email: String,
password: String)
Calls flickr.favorites.remove to remove a photo from a user’s favorites list.
private function Flickr()
Constructor - as this class implements the Singleton pattern do not call directly but rather access through Flickr.getFlickr.
function getFavorites():Object
Gets a list of the favorite Photo’s that this user has.
public static function getFlickr():Flickr
Returns a reference to the Flickr instance - if none exists yet then creates one and returns a reference to that.
public static function getGroup(nsid: String):Group
Get’s a Group object for the given nsid.
public static function getInstance():LogWrapper
Returns a reference to the Single LogWrapper instance.
public static function getLog():Logger
Returns a reference to the LuminicBox.Log.Logger instance that is being wrapped.
public static function getNote(id: Number):Note
Get’s a Note object for the given id.
function getNotes():Object
Returns an object containing all the note’s that have been left on this Photo
public static function getPerson(nsid: String):Person
Get’s a Person object for the given nsid.
public static function getPhoto(photoId: Number):Photo
Get’s a Photo object for the given photo ID.
function getPhotos():Object
Get’s this tags _photos Object.
function getPublicContacts():Object
Gets a list of the public contacts that this user has (if addPublicContact has been called for this user.
function getPublicGroups():Array
Gets a list of the public groups that a user is a member of (if Flickr.peopleGetPublicGroups has been called for that user.
public static function getTag(raw: String):Tag
Get’s a Tag object for the given id.
public function getTags():Object
Get’s this persons _tags.
function getTags():Object
Returns an object containing all the tags’s that are associated with this Photo.
private function Group(nsid: String)
public static function isoToDate(dateStr: String):Date
Static function which converts a given ISO / MySQL Date Stamp Format String (e.g.
private function Note(id: Number)