Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
17answers
5k views

Is using a widescreen monitor in portrait orientation more effective for coding?

In the very near future my development setup will be upgraded and part of the deal will be dual monitors (yay!) At least one of the monitors, possibly both, will be widescreen. I've heard of ...
1
vote
1answer
55 views

Android EditText pinned to bottom of RelativeLayout dissapears on WVGA

I have an EditText and a Button pinned to the bottom of a RelativeLayout. When you click on the EditText, the soft keyboard opens, BUT the EditText and the Button disspear, but in a VERY odd way. ...
1
vote
4answers
1k views

How to detect whether a monitor is widescreen in Windows

I need a way to programatically detect whether the monitor is wide or not, in Windows. GetSystemMetrics returns the size of the desktop, which sort of works, but if an user has a widescreen monitor ...
0
votes
1answer
38 views

Support 16:9 video on website (Adobe Flash Player & FMIS)

When implementing a video player using Adobe Flex to support 16:9 video, how do we know the video source is a 16:9 video? Because I want to adjust the UI layout according to the aspect of video ...
0
votes
0answers
10 views

how to write video player to support 16:9 video [closed]

We have implemented a video player software using Adobe Flash Builder and used in our video website (Our videos platform are Adobe FMIS & all videos are in flv format). Now we want to suppoer 16:9 ...
0
votes
2answers
142 views

android: playing widescreen video

I developed an application for playing video.. the code for playing video is here.. public void onCreate(Bundle icicle) { super.onCreate(icicle); WindowManager.LayoutParams.FLAG_FULLSCREEN); ...
0
votes
3answers
332 views

Setting up my webpages on a widescreen monitor may have caused me to create inaccurate div positions

I recently put together a website exclusively using a computer with a wide screen monitor. Later, When opening the same pages online using a computer with a smaller sized monitor, I suddenly noticed ...
0
votes
4answers
412 views

Widescreen check on normal screen

I work normal screen and I develop some web application. When the application goes on widescreen some of the pages looks weired. Is there any way I can view my web page as it looks in Widescreen on my ...
0
votes
4answers
2k views

Detecting browser client area size on wide screen using javascript

I've been using the following code to detect browser client area width for ages and it wokred 100% with all browsers, including FF, Safari and various versions of IE. However, now when I switched to a ...
0
votes
1answer
955 views

Allegro 5 game: How do I set a resolution that is appropriate for the aspect ratio of the screen?

Using Allegro 5, how do initialize a game in fullscreen mode so that it respects the format of the screen (widescreen 16:9 vs normal 3:4) al_create_display (w, h) Let's you select any ratio you ...