Full Screen Windows Media

I'd like to be able to view some Windows Media files online in Safari in full screen but every time I try get streaming video to work, which it does, Quicktime opens it in a small screen. Barely enough to see. Granted the resolution will not be as good but I may as well not even watch it. Much of what I'm trying to watch is international online TV. Is there some setting in Flip for Mac that should be set to or is there a way to get Windows Media Player 9 activated, which I also have, so I can watch it in Full screen?

Hmmm … maximizing the application isn’t exactly
the same as full screen playback (ie: without all the interface
elements). If you want to maximize the application on a given
monitor the following might work:
Open media player in normal mode
Use baMoveWindow to place the player on the monitor of your
choice
Use baSetWindowState to maximize
You could use baMoveWindow to both move the window and make
it full screen although I don’t think the OS will recognize
the window as being maximized.
To use Buddy API’s window functions you’ll need
the WinHandle for your media player window … look closely at
baFindWindow and/or baWindowList … these functions I have
used. Make sure you use the window title to find the handle, using
the class is dangerous because there is no guarantee that media
player will be the default player for wmv on any given system.
If your projector is windowed and can be dragged by the user,
and if you want to identify which monitor shares the greatest area
with the projector stage I wrote the following function. Works fine
with single monitor systems. Note that if the user somehow manages
to push the projector off all screens the primary monitor is
returned. I’m not sure what will happen if you call the
function while the projector is minimized (not possible in my use).
I suspect the primary monitor would be returned but I’ve
never tested that, it all depends on what the value of
_movie.stage.rect is when the application is minimized. If
it’s rect(0,0,0,0) there’s no problem, if it’s
void the following code would need to be modified to check the
application state first.

Similar Messages

  • Full screen windows media player

    Greetings - I am having issues trying to open a .wmv file
    full-screen. I am simply using:
    on mouseUp
    baOpenFile( the moviePath & "01.wmv" , "maximized" )
    end
    I have made several attempts to at code to make sure it opens
    in full-screen, but found no simple solution. I am running dual
    monitors and this will open up in the second monitor within the WMP
    - full screen.
    Thanks all -
    bS

    Hmmm … maximizing the application isn’t exactly
    the same as full screen playback (ie: without all the interface
    elements). If you want to maximize the application on a given
    monitor the following might work:
    Open media player in normal mode
    Use baMoveWindow to place the player on the monitor of your
    choice
    Use baSetWindowState to maximize
    You could use baMoveWindow to both move the window and make
    it full screen although I don’t think the OS will recognize
    the window as being maximized.
    To use Buddy API’s window functions you’ll need
    the WinHandle for your media player window … look closely at
    baFindWindow and/or baWindowList … these functions I have
    used. Make sure you use the window title to find the handle, using
    the class is dangerous because there is no guarantee that media
    player will be the default player for wmv on any given system.
    If your projector is windowed and can be dragged by the user,
    and if you want to identify which monitor shares the greatest area
    with the projector stage I wrote the following function. Works fine
    with single monitor systems. Note that if the user somehow manages
    to push the projector off all screens the primary monitor is
    returned. I’m not sure what will happen if you call the
    function while the projector is minimized (not possible in my use).
    I suspect the primary monitor would be returned but I’ve
    never tested that, it all depends on what the value of
    _movie.stage.rect is when the application is minimized. If
    it’s rect(0,0,0,0) there’s no problem, if it’s
    void the following code would need to be modified to check the
    application state first.

  • Full Screen Window on second screen minimizes when windows explorer opens..

    I did implement a full screen window on my second screen (it's a feature needed by my application)
    When I open windows explorer (I'm on windows XP), or when I click in a windows explorer window, the second screen window is minimized, even if explorer pops in the first screen.
    Is there any way to overcome this problem?
    Any help would be appreciated...
    Laurent
    (sample code below)
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JWindow;
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.GraphicsDevice;
    import java.awt.GraphicsEnvironment;
    import java.awt.Window;
    import javax.swing.JButton;
    import javax.swing.JToggleButton;
    import java.awt.Rectangle;
    import java.awt.GridBagLayout;
    import javax.swing.JLabel;
    public class FullScreenTest {
         private JFrame jFrame = null;  //  @jve:decl-index=0:visual-constraint="94,35"
         private JPanel jContentPane = null;
         private JToggleButton jToggleButton = null;
         private JPanel jFSPanel = null;  //  @jve:decl-index=0:visual-constraint="392,37"
         private JLabel jLabel = null;
         private Window window;
          * This method initializes jFrame     
          * @return javax.swing.JFrame     
         private JFrame getJFrame() {
              if (jFrame == null) {
                   jFrame = new JFrame();
                   jFrame.setSize(new Dimension(474, 105));
                   jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                   jFrame.setContentPane(getJContentPane());
              return jFrame;
          * This method initializes jContentPane     
          * @return javax.swing.JPanel     
         private JPanel getJContentPane() {
              if (jContentPane == null) {
                   jContentPane = new JPanel();
                   jContentPane.setLayout(null);
                   jContentPane.add(getJToggleButton(), null);
              return jContentPane;
          * This method initializes jToggleButton     
          * @return javax.swing.JToggleButton     
         private JToggleButton getJToggleButton() {
              if (jToggleButton == null) {
                   jToggleButton = new JToggleButton();
                   jToggleButton.setBounds(new Rectangle(50, 23, 360, 28));
                   jToggleButton.setText("Show Full Screen Window on 2nd screen");
                   jToggleButton.addActionListener(new java.awt.event.ActionListener() {
                        public void actionPerformed(java.awt.event.ActionEvent e) {
                             showFullScreenWindow(jToggleButton.isSelected());
              return jToggleButton;
         protected void showFullScreenWindow(boolean b) {
              if(window==null){
                   window = initFullScreenWindow();
              window.setVisible(b);
         private Window initFullScreenWindow() {
              GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
              GraphicsDevice[] gds = ge.getScreenDevices();
              GraphicsDevice gd = gds[1];
              JWindow window = new JWindow(gd.getDefaultConfiguration());
              window.setContentPane(getJFSPanel());
              gd.setFullScreenWindow(window);
              return window;
          * This method initializes jFSPanel     
          * @return javax.swing.JPanel     
         private JPanel getJFSPanel() {
              if (jFSPanel == null) {
                   jLabel = new JLabel();
                   jLabel.setBounds(new Rectangle(18, 19, 500, 66));
                   jLabel.setText("Hello ! Now, juste open windows explorer and see what happens...");
                   jFSPanel = new JPanel();
                   jFSPanel.setLayout(null);
                   jFSPanel.setSize(new Dimension(500, 107));
                   jFSPanel.add(jLabel, null);
              return jFSPanel;
          * @param args
         public static void main(String[] args) {
              FullScreenTest me = new FullScreenTest();
              me.getJFrame().setVisible(true);
    }

    I suppose that you have this exception when the second window is initiated...
    Excuse my remark, it may be perfectly stupid : do you have two screens? The full screen window is supposed to show itself on the user's second screen.
    Or maybe the screens are not handled the same way on each computer? (I'm not used at developping applications working on two screens...)
    thanks for your help
    LK

  • Need Script to point to a FULL SCREEN Window

    Oh boy-
    I'm almost there!
    I just need a simple javascript that will point to the
    main.php file of my web site to open in full screen. I can place
    the script maybe called, "openfullscreen.js" within the root
    directory of the site so it will open full screen.
    I will attach the HTML that will show the "dead link", that I
    would like to replace. Unfortunately, for some of you this will be
    an easy task, but for me, I'm a newbie.
    Thanks so much
    Michael

    >>open in full screen
    All you will accomplish with this trick is to drive people
    away from your
    site to never return. Users generally do not want their UI
    manipulated.
    Today's web is user-centric, not designer-centric. Users want
    and expect
    control. They do not want to have control denied as with
    exploding browser
    windows and Flash presentations that start automatically.
    Good designers
    design for the user not for their own egos.
    Browser publishers recognize this and make it nearly
    impossible for the web
    site to manipulate the user's browser viewport. Thank
    goodness! So what you
    are asking is really fruitless.
    Also, you have wasted a lot of time entering meta keywords.
    The major search
    engines quit using them years ago. Again, if you want to
    build a successful
    website you really have a lot of homework and research to do
    first.
    Good luck.
    Walt
    Please re-think what you are trying to accomplish. Take some
    time to
    understand the web and its users.
    "majpix" <[email protected]> wrote in
    message
    news:[email protected]...
    > Oh boy-
    > I'm almost there!
    > I just need a simple javascript that will point to the
    main.php file of my
    > web
    > site to open in full screen. I can place the script
    maybe called,
    > "openfullscreen.js" within the root directory of the
    site so it will open
    > full
    > screen.
    >
    > I will attach the HTML that will show the "dead link",
    that I would like
    > to
    > replace. Unfortunately, for some of you this will be an
    easy task, but for
    > me,
    > I'm a newbie.
    >
    > Thanks so much
    > Michael
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html>
    > <head>
    > <meta http-equiv="Content-type" content="text/html;
    charset=utf-8" />
    > <META NAME="DESCRIPTION" CONTENT="Professional
    awarding winning Michigan
    > Wedding Photographer. Photographer Extraordinaire-
    Eastman Kodak Company.
    > Unique and
    > unobstrusive approach in wedding, Bar, Bat Mitzvah
    photography.">
    >
    > <META NAME="keywords" CONTENT="Professional wedding
    photography, Master
    > Photographer in Michigan, Michigan, ProSelect, Kodak,
    Lecturer, Bar
    > Mitzvah
    > Photographer, Bat Mitzvah Photographer, Wedding
    Photographer, Bloomfield
    > Hills,
    > Grosse Pointe,
    > Rochester, Dearborn, Detroit, Birmingham, West
    Bloomfield, Bar Mitzvahs,
    > Bat
    > Mitzvahs, unobstrusive,
    > creative, unique, fine art, social events, unusual,
    expensive, Kodak,
    > ProShots, exciting, portrait, photojournalism,
    > illustrative, Black and White, Color, leather bound
    albums, Art Leather,
    > Leather Craftsmen, Folios, Frames, photojournalistic,
    brides,
    > CPP,Certified
    > Professional Photographer, Master Photographer,
    Professional
    > Photographers of
    > America, Photographic Craftsman, Eastman Kodak Mentor,
    Location Weddings,
    > Location Bar Mitzvahs, Location, Bat Mitzvahs, Wedding
    and Portrait
    > Photographers International, grooms, engagement,
    children, families,
    > travel,
    > Michigan Professional Photographers Association,
    ProShots, Digital,
    > Candid,
    > Best, Detroit Professional Photographers Association,
    portraits,
    > Hasselblad,
    > Custom, wedding album, synagogue, churches, outdoor, the
    best,
    > experienced,">
    > <title>Michael A. Jonas Photography Unique Images
    That Reflect
    > YOU</title>
    > <link rel="stylesheet" href="entry.css"
    type="text/css" media="screen"
    > title="Stylesheet" charset="utf-8" />
    > <script src="extra/entry.js"
    type="text/javascript"></script>
    > <style type="text/css">
    > <!--
    > .style1 {font-size: 24px}
    > .style2 {font-size: 18px}
    > .style3 {font-size: 12px}
    > .style8 {color: #999999}
    > .style14 {font-size: 20px}
    > -->
    > </style>
    > </head>
    > <body id="main">
    > <div id="logo"><h1><img
    src="/Index_Images/logo.jpg" alt="Welcome to
    > Michael
    > A. Jonas Photography" /></h1></div>
    > <div id="container">
    > <div id="first">
    > <h1 id="aperture_photography_of_new_yor"><a
    href="javascript:;"
    > onclick="openWin('main.php')"> <img
    src="gallery/jonas1.jpg" border="0"
    > alt="Michael A. Jonas Photography"
    /></a></h1>
    > </div>
    >
    > <div class="info">
    > <h2><a href="javascript:;" class="style1"
    > onclick="openWin('main.php')">
    > <span class="style14">Open Site in New
    Window</span><br />
    > </a><a href="main.php" class="style2">Open
    site in this Window</a></h2>
    > <p class="style3"><span class="style8">This
    site requires the</span>
    > <a
    > href="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=Shock
    > waveFlash">Adobe Flash Player</a></p>
    > <p class="style8 style3"><span
    class="style8">You may also</span> <a
    > href="html_index.html">view our non-flash
    site</a></p>
    > </div>
    > </div>
    >
    > <div id="footer">
    > <p>&copy; 2007 Michael A Jonas Photography
    &bull; All rights reserved
    > &bull;
    > Site designed by <a href="
    http://bigfolio.com/">BIG
    Folio</a></p>
    > </div>
    > </body>
    > </html>
    >

  • ITunes Visualizer full screen/windowed

    I put my itunes visualizer into full screen mode now i cant get it back into windowed mode. can someone tell me how you put the visualizer into windowed from full screen please?

    when you enter itunes visualizer via T (command+T), press F (command +F)
    -poundfoolish

  • Stop full-screen windows in DW CS6 interface.

    My preference for using DW is to have code view, site files & that's it. I really dont need any other feature.
    I have turned off the Application frame in DW CS6 & saved my workspace preference as code & site only.
    However whenever I open a file, it always insists on making the code window full screen - thats rather annoying because the reason to turn off apllication frame is so you can see the desktop & other open files - but this just covers everything over again.
    Is there a way for DW to remember your prefered window size?

    I agree, this is incredibly annoying, the application frame is the only way to control the size of the window, but you cannot "see through the cracks" to other open windows. Some of us actually do real work with your programs, which usually involve keeping multiple windows open at the same time, your insistence on opening windows full screen with no work around (no scripting programs, such as Quickeys or Keyboard Maestro can control your window sizes, either). If you "play" at development you can focus only using only one program at a time, but I have to follow wireframes and insert Word copy hundreds of times a day, and everytime you force me into several unnecessary steps with your fantastic new interface philosophy. PLEASE fix this. Either open up your Window schema so scripting programs have access to changing your window sizes, allow the user to define what size windows open at (or make it Workspace preference), or make the application frames transparent and allow us to click through the frame to other programs. PLEASE.

  • Full screen windows 7 taskbar bug

    Since the recent install of Flash Player 11 (v11,1,102,55) there was irritating problem on the laptop of my wife. When YouTube flash video were put in full screen the Windows 7 taskbar would remain visible.
    The laptop screen is 1920 x 1200 so standard the DPI setting of the display is put to 150. If I would put the DPI to the standard setting the taskbar will disappear with full screen video but then everything is too small in windows. At first I did not release it could a problem with the Flash Player but when I did come to that conclusion I had to apply the following to the plugin-container program which is situated in the webbrowser install folder. In this case Mozilla Firefox.
    After selecting the properties of plugin-container I went to the compatibility tab and put a flag in the option "Disable display scaling on high DPI settings". This basically solved the annoying problem but frankly such a sloppy fault in a commonly used program like Flash Player should not be there. I advise Adobe to correct this in the next version. There are quite a lot people these days who have laptops with HD resolution so fix it!
    In the mean time I hope this will be of help to people who have a similar problem.

    Oh thank God. I've been struggling with this very issue for months with my task bar obscuring Flash video in full-screen, which really sucks since that's where the video controls are.
    I knew it was the DPI setting and I'm absolutely flabbergasted that Adobe hasn't accounted for this on a piece of software that is pretty much essential to using the internet and when most people are using HD displays.
    After reading this fix, I immediately browsed to C:\Program Files(x86)\Mozilla Firefox and right clicked Properties on the plugin-container application. Right there on the Compatibility tab is the option Disable scaling on high DPI settings. Checked the box and imediatly full-screened the first flash video I could find. Problem solved, didn't even have to reboot the browser.
    BarrieBar, I salute you. Never would have found this without your post.
    Thanks.

  • Full screen windows dissappears when activating guake

    I'm running Arch in i a VirtualBox, using Gnome 3.10.2. I also use guake. Whenever I summon guake, any fullscreen window in the background disappears, or is hidden. At least this happens with both Firefox and gvim. I can switch back to these windows with alt + tab, so they're not gone, just temporarily hidden. I find this quite annoying, as I like to have guake transparent, to be able to see what's underneath it when typing commands.
    Any ideas as to how I can change this behaviour? And is there any more information I should post? Being a Mac user I'm not quite used to the large number of options when setting up an installation.

    Oh thank God. I've been struggling with this very issue for months with my task bar obscuring Flash video in full-screen, which really sucks since that's where the video controls are.
    I knew it was the DPI setting and I'm absolutely flabbergasted that Adobe hasn't accounted for this on a piece of software that is pretty much essential to using the internet and when most people are using HD displays.
    After reading this fix, I immediately browsed to C:\Program Files(x86)\Mozilla Firefox and right clicked Properties on the plugin-container application. Right there on the Compatibility tab is the option Disable scaling on high DPI settings. Checked the box and imediatly full-screened the first flash video I could find. Problem solved, didn't even have to reboot the browser.
    BarrieBar, I salute you. Never would have found this without your post.
    Thanks.

  • Firefox mac osx version does not support mac-Lion os full screen window mode. When will you bring this?

    In macbook pro with lion os apple gives a full-screen-mode icon in the top right corner of the window, which will be used to open that view in different window. But firefox does not support this. Even chrome supports it.
    When will you bring this feature to firefox?. Currently I am in firefox 8.0.1

    No answers, but Mozilla is aware of the new release of Lion, and hopefully are working on solving some of the known issues. There are some rather formal technical discussions and reports, as mentioned in this contributors thread: [/forums/contributors/707160]

  • [SOLVED] Full Screen Windows All The Time?

    I am currently using Arch+Evilwm on both my desktop and netbook, and generally I am very happy with Evilwm, but on the netbook I find myself making windows full screen all the time (to maximize screen space). Does anyone know if Evilwm can be altered to make all windows full screen all of the time?
    Last edited by NilsKunnas (2010-03-25 20:13:45)

    [Someone else sought and found various answers] to your question.
    Last edited by Wintervenom (2010-03-25 19:58:21)

  • Make green button full screen window icon on Yosemite maximize windows

    Hello I just wanted to share this wonderful tool with every one.  I love OSX but sometimes its a pain.  I have a workstation Mac Pro, full screen slows me down so I used this tool to remap the green button to maximize like it sorta did in older OS or like our beloved windows OS. I have to admit, the got maximize right.  LOL 
    First download - BetterTouchTool - http://www.bettertouchtool.net/
    Move to app folder and open. Follow the fist pop up if you wish to use the snap window Feature. I have not tried it.
    Select Global icon on the left
    Click Triggers at the bottom left middle side of BetterTouchTool window
    Select Left click green window button, 3rd one down
    Click Predefined Action at the bottom right side of BetterTouchTool window
    Find and select Window interaction > Zoom Window Below Cursor
    Thats it your done !!
    I would recommend you click settings at the top and set to start the app at start up.
    If this thread already exist, apologizes; could not find this info for 10.10
    Don't forget to Share your BetterTouchTool mods here with every one !!!!

    Firefox. Safari glitches time to time.  Besides I vary much dislike full screen on my Workstation. Slows me down. Expose' is pretty qiuck with middle mouse button( using a Logitech mouse )This is a great tool as I mentioned, it has many features. I consider myself a Mac engineer, I have the Cert for it. I know all the in and outs and tweaks you can do to this system to make you go from a user to a power user; to make you machine operate like a 2030 Computer. I know your being helpful, thanks. 
    I would like people to find this and make use of it if it helps them. It did for me.

  • Keyboard shortcut to switch between full screen windows

    My only major contention with Full Screen mode for applications in Mac OS X Mavericks (and now Yosemite) has been that there is no easy way to switch between multiple windows that are full-screened as you could do without (using the command+` keyboard shortcut). It's actually the sole reason I opted to not use them with Mavericks. I know, I'm supposed to use the multitouch trackpad capabilities, but I don't have access to one at work.
    So my question, now that the default behavior of what was previously the maximize button is to full-screen a window (I am additionally aware that I can option-click on the full-screen/maximize button to maximize a window), is there an easy keyboard shortcut that I simply haven't located to switch between windows in a single application?
    If not, can we please see this added in soon?

    Assign a key to Expose and use it to switch between Parallels in full screen and your other apps.
    Merbil

  • Why do I get a full screen window of the "Text Edits" tool...?

    I got Acrobat 8 and when I mark some text with the Text Edits tool and afterwards types som replacements, I just get one big pop-up box filling the whole screen instead of the normal sized in the left margin as usual. And I am not able to see what I'am typing since this kinda lies outside the screen picture. Is this a matter of settings - or a bug, or anyone else tried the same?
    Memebers of my work group use the same version with the same updates without problems.

    If you can't boot in the usual way, try a safe boot. During startup, you’ll see a progress bar, and then the login screen, which appears even if you normally log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. If you have more than one user account, you must be logged in as an administrator to carry out these instructions. Safe mode is slower than normal, and some things won’t work at all. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the startup volume is on a software RAID, you can’t boot in safe mode. If you're able to boot, launch the Console application in any of the following ways: ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.) ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens. ☞ Open LaunchPad. Click Utilities, then Console in the icon grid. Select the most recent panic log under the heading System Diagnostic Reports on the left. If you don't see that heading, select   View ▹ Show Log List   from the menu bar. Post the entire contents of the panic report — the text, please, not a screenshot. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header and body of the report, if it’s present (it may not be.) Please don't post shutdownStall, spin, or hang reports.

  • JInternalFrame Full Screen Exclusive mode lag Windows 7?

    <font size=2>Hi everyone I'm not sure if i'm posting this question in the right category so feel free to move it. I recently have been playing around with full screen exclusive mode and JInternalFrames. Now what iv'e noticed is on every platform i've tried it works fine. When clicking and dragging the JInternalFrame to a new location it is quick and responsive. However when doing this same operation in Windows 7 the JInternalFrame lags significantly behind the mouse location as i'm dragging the internal frame. I haven't had a chance to test this on any other Windows platforms such as Vista or XP but I don't think it happens on those platforms, at least I don't remember this ever happening when I had Windows Vista and it doesn't occur in Mac OS 10.6.
    The following are the circumstances i've found that produce this problem:
    *1. The program is set to Full Screen Exclusive mode.*
    *2. You are using Windows 7 (possibly other Windows platforms)*
    *3. Click and drag a JInternalFrame to a new location.*
    I've tried several things to see if it fixes the problem such as setting the look and feel to cross platform but nothing helps. In fact when the LAF is set to cross platform it is even worse.
    Now i'm new to Full Screen Exclusive mode so i'm guessing (hoping) this is a problem caused by an error on my part. Here is the source code, i'd appreciate it if you give it a try. My question is how do I fix this lag so that the JInternalFrame is quick and responsive to the user dragging the window and i'm also wondering if this only happens on Windows 7 so if anyone could also tell me if they experience the problem I am describing and the OS you are using that would be great. Thank you guys :)
    Also any input about wether i'm setting up full screen exclusive mode correctly would be much appreciated too.</font>
    package lag;
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    public class InternalFrameLag
        public static void main(String[] args) {
            SwingUtilities.invokeLater( new Runnable() {
                public void run() {
                    new InternalFrameLag();
        GraphicsEnvironment env = GraphicsEnvironment.getLocalGraphicsEnvironment();
        GraphicsDevice[] devices = env.getScreenDevices();
        GraphicsDevice device;
        JFrame frame = new JFrame("Internal Frame Lag");
        JDesktopPane pane = new JDesktopPane();
        JInternalFrame internalFrame = new JInternalFrame("Internal Frame", true, true, true, true);
        JButton exit = new JButton("Exit");
        public InternalFrameLag() {
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setUndecorated(true);
            exit.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    System.exit(0);
            exit.setPreferredSize(new Dimension(250,23));
            internalFrame.setLayout(new FlowLayout());
            internalFrame.setBounds(100,100,500,300);
            internalFrame.add(exit);
            pane.add(internalFrame);
            frame.add(pane);
            // get device that supports full screen
            for(int i = 0; i<devices.length; i++) {
                if(devices.isFullScreenSupported()) {
    device = devices[i];
    break;
    if(device!=null) {
    device.setFullScreenWindow(frame);
    internalFrame.setVisible(true);
    } else {
    System.exit(0);
    Edit: Decided to make the font size bigger. Eyestrain is killing me.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Darryl Burke wrote:
    neptune692 wrote:
    <font size=2>
    Edit: Decided to make the font size bigger. Eyestrain is killing me.Hopefully that will carry over to my response and I won't have to edit to add it ;)
    I don't see the lag you describe. There's some flicker when moving the internal frame around rapidly (it looks as if the borders follow the content a split second later, but can't be caught in a screen capture) but that's no different when I show the internal frame in a normal (not full screen) window.
    <tt>Microsoft Windows [Version 6.1.7600]
    Copyright (c) 2009 Microsoft Corporation. All rights reserved.
    C:\Users\Darryl>java -version
    java version "1.6.0_17"
    Java(TM) SE Runtime Environment (build 1.6.0_17-b04)
    Java HotSpot(TM) Client VM (build 14.3-b01, mixed mode, sharing)</tt>
    db<font size=2>Thanks for your reply and thanks for testing out my code. Could this lag be something wrong with my VM on Windows 7, cause the lag is extremely bad as in it takes a couple seconds for the internal frame to catch up with the mouse. I also just noticed that any other components in full screen exclusive mode on Windows 7 lag as well. Such as scrolling though a large amount of text, the scroll bar will lag far behind the mouse location and take a couple of seconds to catch up even when the mouse is moving fairly slow. I was hoping it was something in the code I was doing wrong but I guess not? Any suggestions on how I could fix this problem? It really makes my applications appear sluggish. For example when you click on a normal window such as in Windows Explorer and drag it to a new location the mouse stays in a fixed position on the window while you are dragging it. However with this lag the mouse appears to be "detatched" from the window and does not stay in the same location on the window while dragging. Does anyone else experience this or is this normal? I'm using Windows 7 64bit but I don't think that would make any difference. I'd also like to point out that I'm using Java 6 update 21 I don't know if that would make a difference opposed to update 17.
    Thanks again.</Font>
    Edited by: neptune692 on Oct 2, 2010 10:23 AM

  • Open new Finder windows in full screen mode by default

    I'd like for new finder windows to open full-screen by default.
    I have found that, if I have no finder windows open, opening a new finder window always defaults to a non-full-screen window.
    Is there a way to fix this?

    System Preferences > General
    Uncheck the box beside “Close windows when quitting an application”.

Maybe you are looking for