Packageorg.paazio
Classpublic class XSPFlist

XSPF is the XML format for sharing playlists.

See also

http://xspf.org/specs/


Public Properties
 PropertyDefined by
  list : XML

XML data of the loaded playlist.

<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
  <trackList>
    <track><location>file:///music/song_1.ogg</location></track>
    <track><location>file:///music/song_2.flac</location></track>
    <track><location>file:///music/song_3.mp3</location></track>
 </trackList>
</playlist>
XSPFlist
  next : String
[read-only] Get the url for the next video in the playlist.
XSPFlist
  prev : String
[read-only] Get the url of the previous item in the list.
XSPFlist
Public Methods
 MethodDefined by
  
XSPFlist(listUrl:String)
Where is the playlist?
XSPFlist
  
value(key:String):String
Get a given attribute of the current item.
XSPFlist
Property detail
listproperty
public var list:XML

XML data of the loaded playlist.

<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
  <trackList>
    <track><location>file:///music/song_1.ogg</location></track>
    <track><location>file:///music/song_2.flac</location></track>
    <track><location>file:///music/song_3.mp3</location></track>
 </trackList>
</playlist>
nextproperty 
next:String  [read-only]

Get the url for the next video in the playlist.

Implementation
    public function get next():String
prevproperty 
prev:String  [read-only]

Get the url of the previous item in the list.

Implementation
    public function get prev():String
Constructor detail
XSPFlist()constructor
public function XSPFlist(listUrl:String)

Where is the playlist?

Parameters
listUrl:String
Method detail
value()method
public function value(key:String):String

Get a given attribute of the current item.

Parameters
key:String

Returns
String