Dynamic Movie

Hii All,

This is my first post as i m just beginner in Flash javascript. I want to prepare a FLash Movie in which all the images r dynamic and the images shud change after a time say every 30 secs the image changes. I know i have 2 use SetInterval but where to write SetInterval i m confused. Can u guys help me sort this out.

Thanks in Advance

Girish

Being not a SetInterval method fan myself, Im sure you can use the getTimer function; ie such a loop:


onClipEvent(load){
watchTime = getTimer;
}
onClipEvent(enterFrame){
 if(getTimer >= watchTime + 30000){
  watchTime = getTimer;
  //load your jpg action
 }
}