I am brand new to Actionscript and I have run into a unique bug where the scrubber intermittently shifts or cuts out when seeking back in a clip. I have researched other forums out there to see if there is an issue in the code with no luck.
The code is listed as the following:
function updateScrubber()
{
myControls._timer.text = (_convertPlaybackTime(my_ns.time) + "/" + _convertPlaybackTime(movieDuration));
if ((movieDuration - my_ns.time) < 1) {
myControls._scrubber._width = myControls._scrubBar._width;
}
else {
ratio = my_ns.time / movieDuration;
var curLength = Math.ceil(myControls._scrubBar._width * ratio);
myControls._scrubber._width = curLength;
}
}
Is there something that you see that stands out that could be causing this issue? Or does anyone know of any possible ways to debug such an issue in Flash or have any ways of tracking failures when running an emulator to narrow down what the cause could be?