fullscreen

How do I get rid of the mouse cursor in full-screen exclusive mode?

為{幸葍}努か 提交于 2019-12-05 00:10:01
问题 I'm working on a simple 2D game engine in Java, and having no trouble with FSEM, buffer strategies, and so on; my issue is with the mouse cursor. In windowed mode, I can hide the mouse cursor, no problem, by using setCursor() from my JFrame to set a wholly-transparent cursor. However, after a call to device.setFullScreenWindow(this) to go into FSEM, the mouse cursor comes back, and subsequent calls to setCursor() to set it back to my blank cursor have no effect. Calling device

Embed youtube videos that play in fullscreen automatically

一笑奈何 提交于 2019-12-04 23:50:10
So what I'm trying to do is have fullscreen video across my website. But I would like to auto play a youtube video and automatically in fullscreen (The size of the browser window). My site navigation is left and right arrows that slide from page to page. Then up and down arrows that scroll up and down each page. But the only thing I'm trying to get done is autoplay a youtube video in fullscreen, again, the size of the browser window. Or am I going to have to host the video myself? Which may be easier, but will take up bandwidth that I'll have to pay for. Anyway thank you in advance for your

Windows / Chrome / ATI / Browser fullscreen across multiple monitors

半腔热情 提交于 2019-12-04 19:52:24
问题 I am using the following test setup (Latest meaning as of July 14th 2012): Core i7 with an ATI FirePro V9800 (Eyefinity) Windows 7 Pro 64 Bit (latest updates / patches) Latest Catalyst drivers Latest Google Chrome Stable / Canary. 6 x 1080p displays (in a row) resulting in a 11520px by 1080px desktop . I have tried the following to get a fullscreen web view across displays: Set the maximize to whole desktop setting in the Catalyst control panel. That works for maximizing normal windows

How to set up Kiosk Mode for Mac apps?

半腔热情 提交于 2019-12-04 19:21:57
I am trying to make the application startup in a presentation mode while disabling the Dock, Menubar, Processes Switching, etc. I have this code so far: let presOptions: NSApplicationPresentationOptions = .HideDock | // Dock is entirely unavailable. Spotlight menu is disabled. // .AutoHideMenuBar | // Menu Bar appears when moused to. // .DisableAppleMenu | // All Apple menu items are disabled. .DisableProcessSwitching | // Cmd+Tab UI is disabled. All Exposé functionality is also disabled. .DisableForceQuit | // Cmd+Opt+Esc panel is disabled. .DisableSessionTermination | // PowerKey panel and

Javascript window.navigator.standalone broken

隐身守侯 提交于 2019-12-04 18:52:28
问题 really annoying me now, I've stripped my code down to this $(function(){ if ( ("standalone" in window.navigator) && !window.navigator.standalone ) { alert('full screen'); } }); yet every time I run this on my ipad FROM safari it kicks out the alert. I've no idea why and its causing chaos to my whole uni project which is due monday! Any help would be amazing. 回答1: When/if the web page is in standard/usual Safari mode, the "window.navigator.standalone" value will be False. Only when the web

Disable full screen for youtube api

夙愿已清 提交于 2019-12-04 17:24:43
问题 I have an app with fragments and inside those fragments I have frame layout into which I add YouTubePlayerSupportFragment. But when I click full screen then this exception is thrown: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.xxx/com.example.xxx.MainActivity}: java.lang.IllegalArgumentException: No view found for id 0x7f040039 (com.example.xxx:id/frame_youtube) for fragment YouTubePlayerSupportFragment{4282a068 #11 id=0x7f040039} 回答1: I faced the same issue

Are there any example on how to write full-screen apps for Mac OS X in Objective-C with Cocoa?

不打扰是莪最后的温柔 提交于 2019-12-04 16:42:55
Could someone point me to any examples on how to write full-screen apps for Mac OS X in Ojective-C with Cocoa? Add the following code to the NSView you want to make fullscreen: [view enterFullScreenMode:[NSScreen mainScreen] withOptions:nil]; It's exactly the same, the only thing you need to watch for is if you have any NSWindow specific code... http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ApplicationKit/Classes/NSView_Class/Reference/NSView.html http://nehe.gamedev.net/data/lessons/lesson.asp?lesson=02 There is an OSX Cocoa example for many of the tutorials. Try this:

HTML5 video won't maximize beyond container dimensions in native full screen mode

空扰寡人 提交于 2019-12-04 16:05:31
I encountered a very interesting cross-browser HTML5/CSS issue: whenever there is an animation WITH -webkit-animation-fill-mode: both; attached to a DIV containing HTML5 video element, this video won't fill whole window in native HTML5 full-screen mode, i.e. the video size in full-screen will be limited to parent element dimensions. Description may be confusing, so I have created a simplified example: http://jsfiddle.net/7SsPa/3/embedded/result/ (note: jsFiddle does not allow full screen mode at all, but it gives understanding of what happens. To see same code with full-screen enabled, you can

Adobe AIR: Is it possible to create a full screen app to fill multiple monitors?

隐身守侯 提交于 2019-12-04 15:13:13
I am trying to build an Adobe AIR app that runs on two monitors with an extended desktop. Is that possible? I've read fullscreen is restricted to a single display and the only option is to maximize the app to both displays. Is that right? If so, how can I hide OSX top menu bar? Just for the record, OSX does not allow you to have more than one full screen applications (of any kind, not just AIR) open at the same time nor it let's you to expand a full screen app to more than one display. tsugua An application window can span multiple displays as long as the window is sized properly. Menubar and

ios wantsFullScreenLayout statusbar visible

纵饮孤独 提交于 2019-12-04 14:29:10
问题 I'm facing the following problem, I trying to present a modalViewController and make it cover the entire screen, for example: [controller setWantsFullScreenLayout:yes]; [myNavController presentModalViewController:controller animated:yes]; the result is that the controller does not cover the entire screen and the status bar is visible on top. I don't really understand why this happens. 回答1: The wantsFullScreenLayout property does not hide the status bar, it makes the view controller get layed