- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Yeah, I'd definitely extend the existing class, and add a timestamp variable (flash.utils.getTimer() can work) every time the _autoPutDownTimer is started or extended. Then you can add a public getter :
public function get timeOutTimeLeft():int
{
return (_autoPutDownTimer.delay - getTimer()-timestamp);
}
hope that helps
nigel