Until now, I had hard-coded the information about 3 songs in my Top100-application. It was time to make it dynamic, loading 100 songs from an XML-file. The file looks like this: <?xml version="1.0" encoding="utf-8" ?> <top100> <record> <number>1</number> <artist>Captain & Tennille</artist> <title>Do That To Me One More Time</title> </record> <record> <number>2</number> <artist>Irene Cara</artist> <title>Fame</title> </record> ... ...
Continue reading ‘Experimenting with Adobe AIR and jQuery – Part 6’ »