fullscreen

iPhone - iOS4 - Movie Player - Fullscreen does not work

Hello, I have implemented MPMoviePlayer functionality to play in landscape mode in iOS4- by reading information on other posts - thanks stackoverflow! Basically I have a list of videos in tabular view and from that I can navigate to each video. Problem I am facing is the video does play in fullscreen (landscape) however the top title...

How to check if an other program is running in fullscreen mode, eg. a media player..

Hi, How can I check if an other app is running in full screen mode & topmost in c++ MFC? I just want to disable all of my auto dialogs (warnings) if media player or other players are running. (Like silent/gamer mode in Avast.) How could I do that? Thank you. ...

SDL - (Hardware) Pixel Scaling

In my SDL game, I'd like to retain a fixed resolution of the game area, both for gameplay and performance reasons. What I wanted to do was to have a small resolution (e.g. 320 * 240), and when resizing the window / switching to fullscreen mode letting SDL / the graphics card scale each pixel. However the problems that occur are: The ...

MPMoviePlayerController view disappearing when next/previous button is pressed

Hi all, I have this very strange problem. I create an MPMoviePlayerController in my view controller with the following code: player = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"vid96" ofType:@"mov"]]]; player.fullscreen = YES; player.controlStyle = MPMovieControl...

How to know when Youtube player/plugin on iPad goes fullscreen?

Is there any way to know when the Youtube player/plugin on iPad goes fullscreen? I have a UIWebview being displayed inside a Modal view controller that contains a Youtube video. If the user choose to view the Youtube video in fullscreen mode, it's displayed in fullscreen (naturally), but behind the UIWebview's modal view. I'd like to k...

Changing Resolution in OpenTK

I've been searching around for this, I've managed to find out out to change the size of our window, and how to change the resolution of the monitor. But I can't seem to find how to tell OpenGL where and how big my viewport is. Example: the game starts up in 400x300, and I expand the window to 800x600. I now have a 800x600 window, but o...

jQuery script to scale up or down thumbnails on window resize

Hi I have a site with width 100% and height 100% and overflow hidden on the body. So its a fullscreen website using a jquery full screen background image plugin. On one page I have a list of thumbnails, each thumb is set to float left so it fills the entire window with thumb images. With overflow set to hidden, when too many thumbnail...

How to make flash video stay in fullscreen on dual monitor setup?

Cant figure this out, got it to work in firefox a while ago but after upgrading to mac and chrome, I had no luck finding an solution. ...

iPad website fullscreen in Safari

I am trying to get a website that runs fullscreen for all pages, I have looked over here: http://stackoverflow.com/questions/3024434/ipad-webapp-full-screen-in-safari and followed that and my index page fills the screen just nicely, but whenever I click a link to another page even though that page is all setup with the meta tags it pulls...

Fullscreen mode loaded when opening Flash Player

Is it possible to make a flash player go full screen (not in browser)? Would there be any bug / error on different version of Flash player? ...

Is there a jQuery library that can display an image up front and full screen?

I know there are ways to view an image full screen in Flash, but I was wondering if there's a way to do it in Javascript. It would be really great if anyone knew of a jQuery library that could handle it for me. UPDATE: Since its impossible to do true full screen w/out Flash let's just say to fill up the browser window. Thanks for look...

workaround: fullscreen over multiple monitors in windows 7

python 3: from ctypes import windll windowName = 'Adobe Flash Player 10' width = 2560 height = 1024 menuHeight = 20 GWL_STYLE = -16 WS_CAPTION = 0x00C00000 WS_THICKFRAME = 0x00040000 HWND_TOP = 0 SWP_FRAMECHANGED = 0x0020 hwnd = windll.user32.FindWindowW(None, windowName) ws = windll.user32.GetWindowLongW(hwnd, GWL_STYLE) & ~(WS_CAPT...

Virtualbox fullscreen mode problem

hi all I have a slightly weird issue with virtualbox. My host OS is Win7 (64-bit) and guest OS is Ubuntu 10.10(64-bit). When I switch to fullscreen mode in virtualbox, ubuntu display resizes to fit my screen size. however, after that the display is not updated. So if i click a menu or something I don't see it appear. but it seems to wor...

How do you get vid controls to show up in fullscreen video flash as3?

I have been searching and searching for an answer for this. I am building a flash video player with a custom UI, and admittedly I'm not sure exactly what I'm doing. I tried altering a skin, but that always comes out wonky due to whatever coding they use. So I'm altering single video components and putting them in the mc what I want them....

JavaScript - detecting if user is browsing the internet using Fullscreen mode

Hello again, I don't want to open my site in fullscreen mode (as it's not possible without using Flash) or to open it in 'kiosk mode'. I want to ask the user to press F11 on his/her keyboard to turn the browser into fullscreen mode. And I want to know if he/she did it. Is there a way to determine if the current window is being browsed ...

Launch Webkit Nightly in fullscreen mode

Hey, I am using Webkit Nightly because i'm working on some new HTML5 features. I would like to look at the application full screen, without the window chrome. Other browsers have F11 and other buttons to go fullscreen, but webkit doesn't. Is there a way I can launch it in fullscreen mode? Dennis ...

Cover screen with window in cocoa

Hello- I am writing a Mac application, in Cocoa, that needs the ability to 'lock down' the computer. Basically, I am writing a small agent that will sit in the background and when prompted, throw up a window that covers the entire screen, including the status bar, and shows a message (something like "give me back my computer, thief!"). ...

transform:scale to fullscreen?

Good day all, A series of differently sized images are each individually wrapped in left floating differently sized divs on a horizontally scrolling web page. I want to be able to tap on a div to scale it to fullscreen, (by adding a css class containing the scale instruction, with toggleClass), and tap on the image (which is now fullscr...

How to fullscreen a QGLWidget?

I am new to OpenGL and Qt, and I am learning both simultaneously(3 days already:). I couple of years ago I did some exmerimenting with DirectX and I clearly remember that it was possible to make a full-screen window there. By full-screen I mean really full-screen, even without the top part where you have the close fullscreen and minimize...