iTunes 10: When choosing full screen in Visualizer, it displays a small window in the lower right or

 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X Support RSS iTunes 10: When choosing full screen in Visualizer, it displays a small window in the lower right or
# 1  
Old 09-09-2010
iTunes 10: When choosing full screen in Visualizer, it displays a small window in the lower right or

When you have "Display visualizer full screen" enabled in Advanced preferences for iTunes 10: Turning on the visualizer while your library view is set to Cover Flow may cause the visualizer to only appear in the lower-left corner of the screen. If iTunes DJ is selected and you choose the Visualizer, it displays a small window in the lower-right corner of the screen.

More from Apple OS X Support ...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Solaris

is anyone familiar w/an option for prstat that only displays the initial screen once?

prstat usage: prstat ] ] something equivalent to "top -d 1" ? thanks, manny (2 Replies)
Discussion started by: mr_manny
2 Replies

2. Linux

Why is linux console window in VMWare so small?

I install linux in VMWare, but Its console window is too small, Its size is 80*25, I can't change it even though I use full srceen mode in VMWare.How can I do? please help me! Thanks! (3 Replies)
Discussion started by: ChaoZhang
3 Replies
Login or Register to Ask a Question
glutFullScreen(3GLUT)						       GLUT						     glutFullScreen(3GLUT)

NAME
glutFullScreen - requests that the current window be made full screen. SYNTAX
void glutFullScreen(void); DESCRIPTION
glutFullScreen requests that the current window be made full screen. The exact semantics of what full screen means may vary by window sys- tem. The intent is to make the window as large as possible and disable any window decorations or borders added the window system. The win- dow width and height are not guaranteed to be the same as the screen width and height, but that is the intent of making a window full screen. glutFullScreen is defined to work only on top-level windows. The glutFullScreen requests are not processed immediately. The request is executed after returning to the main event loop. This allows mul- tiple glutReshapeWindow, glutPositionWindow, and glutFullScreen requests to the same window to be coalesced. Subsequent glutReshapeWindow and glutPositionWindow requests on the window will disable the full screen status of the window. X IMPLEMENTATION NOTES
In the X implementation of GLUT, full screen is implemented by sizing and positioning the window to cover the entire screen and posting the _MOTIF_WM_HINTS property on the window requesting absolutely no decorations. Non-Motif window managers may not respond to _MOTIF_WM_HINTS. SEE ALSO
glutReshapeWindow, glutPositionWindow AUTHOR
Mark J. Kilgard (mjk@nvidia.com) GLUT
3.7 glutFullScreen(3GLUT)