Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to parse and display multi item remote xml in flash 8?

Status
Not open for further replies.

DavidPlus

Programmer
Feb 20, 2007
38
NL
Hi all. there is a remote rss xml file that has 10 items inside it. I wonder how in flash
i can pars and display them on movie just like shown format:

flash movie display format:

-songname1 by artistname1
-songname2 by artistname2
-....
.....

Furthermore,i want to get new data every few seconds since it is dynamic rss xml.
I tried Loading Data from DB tutorial but could not achive my goal.
I be happy if some one show me how this can be done.Thanks

I also want each item to be clicable and it points to imageurl.


remote xml format:

Code:
  <playlist>
  <song>
  <artist>artistname1</artist> 
  <name>songname1</name> 
  <image>[URL unfurl="true"]http://www.somesite.com/song_images/pic1.jpg</image>[/URL] 
  <rating>3.26667</rating> 
  <songid>3043</songid> 
  <totalvotes>15</totalvotes> 
  </song>
  <song>
  <artist>artistname2</artist> 
  <name>songname2</name> 
  <image>[URL unfurl="true"]http://www.somesite.com/song_images/pic2.jpg</image>[/URL] 
  <rating>5</rating> 
  <songid>4935</songid> 
  <totalvotes>3</totalvotes> 
  </song>
   ....
   ....
  </playlist>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top