Can Flash Do This
Can Flash Do This
Out of context: Reply #2
- Started
- Last post
- 6 Responses
- Anarchitect0
yep.
use a setinterval to update content from time to time...
ie:
update= function (time){
delay=setInterval(function(){
myVars.load("vars.txt");
}, time*1000)
}//start update with a 60s delay
update(60);