У меня тоже часики под семеркой иногда замирают. Возможно, система решает, что надо перейти в режим экономии и перестает обрабатывать запросы от слишком назойливых приложений. Вот, кстати, из MSDN нового:
начало ссылки>>>>>
http://msdn.microsoft.com/en-us/library/windows/desktop/ee330740(v=vs.85).aspx <<<<<конец ссылки
Check the User Status
The system uses the SHQueryUserNotificationState function is used to check whether the user is in quiet time, away from the computer, or in an uninterruptable state such as Presentation mode. Whether the system displays your notification depends on this state.
Note If your application is using a custom notification method that does not use Shell_NotifyIcon, IUserNotification, or IUserNotification2, it should always explicitly call SHQueryUserNotificationState to determine whether it should display notification UI at that time.
Notifications sent when the user is away are queued for display, but because you cannot know when the user will return or whether the notification will still be valid at that time, you might consider resending the notification later.
Notifications sent during quiet time are discarded unshown. Design guidelines ask that all notifications be ignorable. They should not require immediate user action. Therefore, no notification is so important that it should override quiet time.
----------------
возможно, причина замирания анимации как раз в том, что мы игнорим это требование - анализировать отсутствие юзера у экрана и пытаемся обновляться, когда система залочена, например.