LoveToCode
MIS
- Jan 11, 2007
- 51
Hello,
I have a page I built that a FLASH movie that loads and XML data file with a bunch of songs in it. It loads very quickly. The problem I'm seeing is that the Images for the songs are loading each time there is a request. I want to cache them (obviously) or load them all at once. I'm not too familair with caching so I'm looking for some guidance.
The images are pulled through from a image processor that resizes them and stuff. Here is the page:
Here is what one "Song" looks like (an xml node)
The image proc script is prolly the place to cache the images right? I'd like to load them all... what is the best solution to my problem??
Thank you!!
-- Jenni
I have a page I built that a FLASH movie that loads and XML data file with a bunch of songs in it. It loads very quickly. The problem I'm seeing is that the Images for the songs are loading each time there is a request. I want to cache them (obviously) or load them all at once. I'm not too familair with caching so I'm looking for some guidance.
The images are pulled through from a image processor that resizes them and stuff. Here is the page:
Here is what one "Song" looks like (an xml node)
Code:
<song>
<title>Happy Valentines Day!</title> <image>/ImageProc.ashx?Image=albm_16_633069117976359969.jpg&width=75&cropHeight=30</image>
<mp3Src>SomeMp3.mp3</mp3Src>
<songId>102</songId>
<artist>Jenni Quick</artist>
<fileSize>5895402</fileSize>
<playTime>4:05</playTime>
</song>
The image proc script is prolly the place to cache the images right? I'd like to load them all... what is the best solution to my problem??
Thank you!!
-- Jenni