Old skins with animated seekers may crash Winamp if you switch to them while listening to an online stream.
The culprits are the maki scripts that calculate the position of the seeker by dividing the time left since the beginning of the track by the length of the track. Unfortunately, Winamp does not retrieve those data from online streams, which causes a division by zero error.
The solution is to replace each occurrence of this string:
code:
System.getPlayItemLength()
with this in the maki scripts:
code:
(System.getPlayItemLength()+0.001)
Pay attention to the parentheses.
The attached dominator-seekbyregion.zip contains the fixed scripts for the
Dominator skin.