the following code will hide the mouse pointer once until the mouse is moved... the problem is that once it's moved, it doesn't disappear again if the view is the same... what method should i call to make it disappear again after say 2 seconds if the view hasn't changed?
Code:
-(void)hideMouseOnFullScreenView
{
if ([FullScreenView isVisible])
{
[NSCursor setHiddenUntilMouseMoves:YES];
}
}