资 源 简 介
Update:
New class is added that tracks all properties of some class on time basis.
RegisterTimer
Simple example:
import com.actionscriptclass.RegisterTimer;//new RegisterTimer that will track class properties every 100 msekreg=new RegisterTimer(100);//add property to trackreg.addItem("trackerId",textArea,["text","x","y"])//start the trackerreg.start();//get text property at 1 sek (100msek*10)replayTextArea.text=reg.getValue("trackerId","text",10)
example of use of STM classes
http://actionscriptclass.com/stm/STMExample.html
Right click for code:
Click record and start typing in Text Area then click pause and replay.
SeqTimer:
Basic idea is if you need to play one function after another but on time basis then u can use simple time manager (stm).
Simple example:
```
import com.actionscriptclass.SeqTimer;
var test:SeqTimer =