Hi,

I've got a Motorola V620 and have been trying to set up a WAP (.wml)
page to allow me to 'animate' 4 images. I've created the following .wml
page in which the first card 'loads' the 4 images.

Then when the user selects 'start' it causes the next card (and image-1)
to load, 10 seconds later the next card (and image-2) loads, etc.

However (and this is the problem) each image get loaded afresh each time
- thus you have to wait 5 seconds or so for each image to appear.

I had thought that by loading the images at the start they would be
cached - and then displayed instantly.

The images are 176x176 pngs - but I've tried reducing their size to
64x64 and the same problem (re-loading each time) still occurs.

Any suggestions as to how I can overcome this problem?

Is it a severe limit to the size of the cache on the V620?

Regards
Kirby





<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC
"-//WAPFORUM//DTD WML 1.1//EN"
"http://www.wapforum.org/DTD/wml_1.1.xml">

<wml>

<head>
<meta forua="true" http-equiv="Cache-Control" content="max-age=1800"/>
</head>

<card id="init">
<p>
<a href="radart.wml#x00">start</a><br/>
<a href="pictures.wml">pictures</a><br/>
<img src="radar0.png" alt="radar0" /><br/>
<img src="radar1.png" alt="radar1" /><br/>
<img src="radar2.png" alt="radar2" /><br/>
<img src="radar3.png" alt="radar3" />
</p>
</card>



<card id="x00" ontimer="#x01">
<timer value="100"/>
<p>
<img src="radar0.png" alt="radar0" />
<br/>0
<a href="pictures.wml">pictures</a><br/>
</p>
</card>

<card id="x01" ontimer="#x02">
<timer value="100"/>
<p>
<img src="radar1.png" alt="radar1" />
<br/>1
<a href="pictures.wml">pictures</a><br/>
</p>
</card>

<card id="x02" ontimer="#x03">
<timer value="100"/>
<p>
<img src="radar2.png" alt="radar2" />
<br/>2
<a href="pictures.wml">pictures</a><br/>
</p>
</card>

<card id="x03" ontimer="#x00">
<timer value="100"/>
<p>
<img src="radar3.png" alt="radar3" />
<br/>3
<a href="pictures.wml">pictures</a><br/>
</p>
</card>



</wml>





See More: V620 WAP, Animation, Cache?