I just now got the same problem. I would have expected there to be a PauseOnMouseOver property but there isn't one.
You can force this behavior though:
<script type="text/javascript"> |
function ForceResume(sender, args) { |
sender.resume(); |
} |
</script> |
<telerik:RadRotator |
ID="rrrHeader" |
runat="server" |
Skin="Default" |
OnClientMouseOver="ForceResume"> |
<ItemTemplate></ItemTemplate> |
</telerik:RadRotator> |
But be aware that this method has an issue that when a frame is shown and the rotation is paused for the FrameDuration time before showing the next frame and the mouse moves over the rotator the pause is canceled and the next frame is shown.
Hope this helps
J-P