Keep in mind that rotation begins with 0 so if you have 3 images than stop rotator @ 2
<
script type="text/javascript">
<%=RadRotator1.ClientID%>.attachEvent(
"OnClientFrameChanged","FrameChangedHandler");
function
FrameChangedHandler(sender, args)
{
//debugger;
var rotator = sender;
if (rotator.CurrentFrame == 2)
{
rotator.StopRotator();
rotator.Freeze();
}
}
</
script>