Using swing in Full screen sxclusive mode

Hi!
I have created a game which uses swing components.... I have decieded (because it is much cool, and looks nicer) to convert the game to Full screen mode....
Mycurrent GUI consists of two JPanel s. One of which I use the paintComponent method to draw the game board to the JPanel. The other JPanel is split into several other parts which contain the details about each player.
Now, what I want to do is to be able to update the graphics using a BufferStrategy. My question is how would I do this? I tried to create a eperate BufferStrategy for the "Board" JPanel, but I can't as JPanel doesn't support getBufferStrategy(). Then I tried to convert the whole "Board" into Canvas. This I could implemnt but as I rendered the image it was drawn over the second JPanel which is to the right of the "Board"
I was thinking that maybe I could create a FlipBufferStrategy but it's protected and cannot be instantiated in a JPanel.
So what I'm basically asking is how do you use swing components in Full Screen Exclusive mode and using active rendering?
For dukes go to http://forum.java.sun.com/thread.jsp?forum=57&thread=394856&tstart=15&trange=15

Hi,
in case you don't already know it, here's Suns very own tutorial on that topic:
http://java.sun.com/docs/books/tutorial/extra/fullscreen/index.html
JPanel does not support getBufferStrategy() but JFrame (or any other subclass of Window) does. So you could put your JPanel into a JFrame and gain access to the BufferStrategy that way.
Keep in mind that there is still a serious bug in createBufferStrategy() that can result in a deadlock. Browse the Bug Database for a workaround, I can't find it now, but I know that it is there.
Last but not least you could post in the Swing Forum, which would be a more suitable place for a Swing question than the Java3D Forum :)
Regards
Fleischer

Similar Messages

  • How to use the set full screen mode ?

    hai...i' a newbie ..i hav one question ...how to use the set full screen mode for my application..
    i found.
    public void setfullscreenmode (boolean mode)
    but when try in my application it error and other
    canvas.setfullscreenmode(true);
    actually i don't know where i should put this code

    i also found the coding it use like
    setFullScreenMode (true);
    but when i apply it ..it error because cannot resolve the symbol.
    my question is which one i should use; declare the
    public void setFullScreenMode (boolean mode);
    first or use
    setFullScreenMode (true) ;
    or other way ..what i need to do to use setFullScreenMode

  • 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

  • How come full screen exclusive mode is so slow?

    Hi. I am currently working on customer facing point-of-sale application. This application has a lot of animation going on and so needs quite speedy graphics performance. When I first investigated this it looked like I could do it in pure Java 2D which would be a lot easier than resorting to DirectX or OpenGL and mixing languages.
    Unfortunately as the app has moved closer to functional complete the graphics performance appears to have deteriorated to the point where it is unusable. So I have gone back to the beginning and written a test program to identify the problem .
    The tests I have done indicate that full screen exclusive mode runs about ten times slower than windowed mode. Which is mind boggling. Normally - say in DirectX - you would expect a full screen exclusive version of a games/graphics app to run a little bit quicker than a windowed version since it doesn't have to mess around with clip regions and moving vram pointers.
    My test program creates a 32 bit image and blits it to the screen a variable number of times in both windowed and full screen mode. Edited results look like this:
    iter wndw fscrn performance
         10 16.0 298.0 1862% slower
         20 47.0 610.0 1297% slower
         30 94.0 923.0 981% slower
         40 141.0 1205.0 854% slower
         50 157.0 1486.0 946% slower
         60 204.0 1877.0 920% slower
         70 234.0 2127.0 908% slower
         80 266.0 2425.0 911% slower
         90 297.0 2722.0 916% slower
         100 344.0 3253.0 945% slower
    The results are substantially the same with the openGL hint turned on (although I don't have that option on the release hardware). I am assuming that the images end up as managed since they are created through BufferedImage and the system is running under 1.5.
    Is there a way to get the full screen version running as fast as the windowed version?
    Here's the test prog:
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import javax.swing.JFrame;
    public class BlittingTest extends JFrame {
         BufferedImage     blankImage;
         BufferedImage     testImage;
         boolean               fullscreen;
         int                    frameNum;
         public BlittingTest( boolean fullscreen ) throws HeadlessException {
              super();
              // window setup. Escape to exit!
              addKeyListener ( new KeyAdapter() {
                   public void keyPressed( KeyEvent ke ) {
                        if (ke.getKeyCode() == KeyEvent.VK_ESCAPE ) {
                             System.exit(0);
              this.fullscreen=fullscreen;
              if ( fullscreen ) {
                   setUndecorated ( true );
              } else {
                   setTitle( "BlittingTest - <esc> to exit)");
                   setSize( 800, 600 );
              setVisible(true);
              setIgnoreRepaint(true);
              // strategy setup
              if ( fullscreen ) {
                   GraphicsDevice gdev =
                        GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
                   DisplayMode newDisplayMode = new DisplayMode (800, 600, 32,
                                                 DisplayMode.REFRESH_RATE_UNKNOWN);
                   DisplayMode oldDisplayMode = gdev.getDisplayMode();               
                   gdev.setFullScreenWindow(this);
                   gdev.setDisplayMode(newDisplayMode);
                   createBufferStrategy(2);
              // create assets
              testImage = new BufferedImage ( 50, 50, BufferedImage.TYPE_INT_ARGB );
              Graphics2D g = testImage.createGraphics();
              for ( int i = 0; i < 50; i ++ ) {
                   g.setColor( new Color ( 0, (50 - i) * 3, 0, i * 3 ));
                   g.drawLine( i, 0, i, 49 );
              g.dispose();
              blankImage = new BufferedImage ( 50, 50, BufferedImage.TYPE_INT_ARGB );
              g = blankImage.createGraphics();
              g.setColor ( Color.WHITE );
              g.fillRect( 0, 0, 50, 50 );
              g.dispose();
              frameNum = -1;
         public void init() {
              // blank both screen buffers
              for ( int i = 0; i < 2; i++ ) {
                   Graphics g2 = getBufferStrategy().getDrawGraphics();
                   g2.setColor ( Color.WHITE );
                   g2.fillRect( 0, 0, 800, 600 );
                   g2.dispose();
                   getBufferStrategy().show();
         public long testFrame ( int numBlits ) {
              int          x, y;
              long     timeIn, timeOut;
              frameNum++;
              Graphics g = getBufferStrategy().getDrawGraphics();
              g.drawImage( testImage, 0, 0, null );
              // blank previous draw
              if ( fullscreen ) {
                   if ( frameNum > 1 ) {
                        x = frameNum - 2;
                        y = frameNum - 2;
                        g.drawImage ( blankImage, x, y, null);
              } else {
                   if ( frameNum > 0 ) {
                        x = frameNum - 1;
                        y = frameNum - 1;
                        g.drawImage ( blankImage, x, y, null);                    
              x = (int) frameNum;
              y = (int) frameNum;
              timeIn = System.currentTimeMillis();
              for ( int i = 0; i < numBlits; i++ ) {
                   g.drawImage ( blankImage, x, y, null);
                   g.drawImage ( testImage, x, y, null);
              timeOut = System.currentTimeMillis();
              g.dispose();
              getBufferStrategy().show();
              return     timeOut - timeIn;
         public static void main(String[] args) {
              boolean error = false;
              BlittingTest window = null;
              double []     windowedTest = new double [101];
              double []     fullscreenTest = new double [101];
              window = new BlittingTest ( false );     
              window.init();
              for ( int f = 1; f <= 100; f++ ) {
                   windowedTest[f] = window.testFrame( f * 10 );
              window.setVisible(false);
              window.dispose();
              window = new BlittingTest ( true );     
              window.init();
              for ( int f = 1; f <= 100; f++ ) {
                   fullscreenTest[f] = window.testFrame( f * 10 );
              window.setVisible(false);
              window.dispose();
              for ( int f = 10; f <= 100; f++ ) {
                   System.out.println ( "\t" + f + "\t" + windowedTest[f] +
                             "\t" + fullscreenTest[f] +
                             "\t" + (int) ( (fullscreenTest[f]/windowedTest[f])*100.0) + "% slower");
    }

    Well I could do...
    The problem is that I am compositing multiple layers of alpha transparent images. If I just render straight to the screen I get nasty flicker where I see glimpses of the background before the top layer(s) get rendered. So I would have to render to an offscreen buffer and then blit the assembled image into the screen. Even then there will be some tearing as you can never sync to the screen refresh in windowed mode.
    And the thing is - there ought to be a 'proper' solution, g*dd*mm*t. Surely the core team didn't put together a solution that is ten times slower than it should be and then say 'What the heck, we'll release it anyway'.
    I mean, if you can't believe in Sun engineering what can you believe in?

  • Chrome, Mountain Lion and Full Screen Interactive Mode

    I'm running into an issue when entering Full Screen (Interactive) Mode-- long story short, the Message and "Allow" button are over-magnified and don't appear on the screen for me to click, thereby making it impossible to use other keystrokes (and see certain things in the interactive game window t'boot).
    This issue does not exist in Snow Leapord on an older machine, though the same updated versions of Chrome (and assumedly Flash Player) are at work there.
    Any suggestions on something I can tweak-- or even a work-around/hotkey for Allowing FSI Mode?
    The actual game screen itself is fine, albeit slightly cut off around the edges.

    Man, do you have Sophos antivirus? If that so, you need to uninstall it the right way:
    For Sophos Anti-Virus for Mac OS X version 7.x , go to Macintosh HD|Library|Sophos Anti-Virus.
    Select 'Remove Sophos Anti-Virus.pkg'.
    Follow the instructions on the screen.
    NOTE, if you are running Sophos Anti-Virus for Mac OS X version 4.x, the path in step 1 is Macintosh HD|Library|Application Support|Sophos Anti-Virus.
    It seems that Sophos antivirus is crashing ML. They have an update but I'll wait some time becuase I've really had a painful time these days.

  • Edit keywords whilst in full screen edit mode

    Hi all
    I want to edit the keywords assigned to an image in full screen edit mode.
    I have searched about a bit and have found links to Keyword Assistant which is all well and nice. It's not particularly quick to asign keywords though - my touch typing isn't all that hot. And it has a few 'quirks' which make it a little cumbersome to use.
    Ideally I'd love to see a palette with keywords that can be toggled on or off for each image - brought up much like the adjust and effects palettes. I have over 15k images in this library and I'm intending to go through them all adjusting the keywords. Is there anything out there that will do something like this, within iPhoto full-screen?
    Thanks
    Flea

    http://www.apple.com/feedback/iphoto.html

  • Retouch brush in Full Screen Editing Mode

    Has anyone else noticed that the retouching brush is way too big when you're editing in full-screen mode? Is this a bug? Is there anyway to adjust the diameter of the brush?
    Thanks,
    Matt

    Well, at least I'm not alone. I didn't notice a place to file a bug about this.
    Thanks,
    Matt
    Yeah...I have the same issue. Posted on the other
    forum about this. This size of the pixel is about 25
    across and when you use the tool, it obliterates the
    face or whatever you're trying to retouch. When you
    revert to the regular screen it doesn't fix the
    problem either.
    I did notice that when I first used the tool in the
    regular, non-full screen mode, it was fine. Once I
    switched to the full screen editing mode, the problem
    started and now it won't go away.

  • I selected full screen how do i undo it the tab that i used to make full screen isnt there now

    i selected full screen how do i undo it the tab that i used to make full screen isnt there now

    The F11 key will toggle Full Screen Mode on or off
    *See --> http://kb.mozillazine.org/Netbooks#Full_screen
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • When i open entourage mail my view used to be full screen now its half screen and i have to maximize now how do i fix this

    when i open entourage mail it use to be full screen and now its half screen so now i have to hit the maximize button how do i fix this

    Click on the green button.  Or you adjust from the bottom right to fill the window.   With Mac OS X 10.7 or later, you can adjust from any of the window edges.  Only upgrade to 10.7 or later if you have read this tip:
    https://discussions.apple.com/docs/DOC-6271

  • Flash crashes using Firefox in full screen mode

    When trying to view videos full screen I get a message that Adobe has crashed. I have uninstalled and reinstalled Adobe and Firefox using the current versions. This problem does not seem to appear with IE.

    The problem in my case appears self imposed. I had previously changed my visual effects settings to best performance. After changing the visual effects settings back to "Let Windows choose..." all my problems with the adobe crashing in full screen mode were resolved. Thanks to jscher2000 for your input.

  • Lots of hang ups when using iPhoto in full screen mode

    Has anyone else got this problem or a solution? I find that iPhoto hangs up or give strange action when in ful screen mode. The other day, for example, I had two iPhoto windows showing, one in full screen and one normal window on the desk top! Another day the system became unresposive and I had to force quit iPhoto to get it back. Another day I had to re-boot the machine entirely. All other full screen apps work fine.
    I am on MacBook black, 2GB memory. OS X Lion fully updated.

    Try trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder.
    (On 10.7: Hold the option (or alt) key while clicking on the Go menu in Finder to access the User Library)
    (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    What's the plist file?
    For new users: Every application on your Mac has an accompanying plist file. It records certain User choices. For instance, in your favourite Word Processor it remembers your choice of Default Font, on your Web Browser is remembers things like your choice of Home Page. It even recalls what windows you had open last if your app allows you to pick up from where you left off last. The iPhoto plist file remembers things like the location of the Library, your choice of background colour, whether you are running a Referenced or Managed Library, what preferences you have for autosplitting events and so on. Trashing the plist file forces the app to generate a new one on the next launch, and this restores things to the Factory Defaults. Hence, if you've changed any of these things you'll need to reset them. If you haven't, then no bother. Trashing the plist file is Mac troubleshooting 101.

  • Black screen when I use WMP in full screen mode

    Hi.
    When i watch TV on the windows media player so i have problem. If I switch on full screen so there is just black screen but i can hear sounds.
    I've got my laptop for 4 months but everything was ok.
    This problem started just now maybe 2 days ago. I think i've done something but i don't know what and i can't fix it.
    Could you help me please?
    Thanks

    > When i watch TV on the windows media player so i have problem. If I switch on full screen so there is just black screen but i can hear sounds.
    Hi,
    It may be an obvious suggestion but, have you checked the "video settings". If you have changed the brightness and/or contrast playback to min values (ie no contrast and no brightness), the screen will play black.
    To check the video settings, click the little arrow under the "Now Playing" tab and mouse over "Enhancements" then select "Video Settings" and select reset.
    OR
    1. Press ctrl + m
    2. Open the "View Menu"
    3. Select Enhancements
    4. Select Video Settings
    5. Select Reset
    OR
    [Follow this image|http://img132.imageshack.us/img132/5344/99578800dd2.jpg]
    Hope it helps

  • 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]

  • Is it possible to change the size of the 'Close' button in Full Screen viewing mode?

    I am currently using Firefox for a kiosk type scenario. We require that the browser run full screen. The issue is that the 'Close' button is not large enough for users to consistently see, so they're having issues figuring out how to close an active browser window.
    Can anyone tell me if it's possible to change this icon? I've tried using themes, but they tend to theme everything but the close button.
    Custom configuration details are below.
    Firefox version: firefox-3.0.4-1.el5.centos
    Customisations:
    Access to local drives disabled:
    Modified the contents of /usr/lib/firefox-3.0.4/chrome/browser.jar, so that browser.js has the added stanza:
    <pre><nowiki>if (location.match(/^file:/) ||
    location.match(/^\//) ||
    location.match(/^resource:/) ||
    (!location.match(/^about:blank/) &&
    location.match(/^about:/))) {
    loadURI("about:blank");
    }</nowiki></pre>
    Various menus & bookmarks disabled in chrome/userChrome.css
    <pre><nowiki>/* Kill "normal" bookmark icons in the bookmarks menu */
    menuitem.bookmark-item > .menu-iconic-left {
    display: none;
    /* kill icons for bookmark folders in Bookmarks menu */
    menu.bookmark-item > .menu-iconic-left {
    display: none;
    /* kill icons for bookmark groups in Bookmarks menu */
    menuitem.bookmark-group > .menu-iconic-left {
    display: none;
    /* Remove the Edit and Help menus
    Id's for all toplevel menus:
    file-menu, edit-menu, view-menu, go-menu, bookmarks-menu, tools-menu, helpMenu */
    helpMenu { display: none !important; }
    tools-menu { display: none !important; }
    file-menu { display: none !important; }
    edit-menu { display: none !important; }
    view-menu { display: none !important; }
    go-menu { display: none !important; }
    bookmarks-menu { display: none !important; }
    #autohide-context { display: none !important;}
    #bookmarksToolbarFolderMenu { display: none !important;}
    #organizeBookmarksSeparator { display: none !important;}
    .tabbrowser-tabs .tab-icon {
    display: none;
    #urlbar {
    font-family: Arial !important;
    color: Black !important;
    font-size: 26 !important; }</nowiki></pre>

    Try code like this:
    <pre><nowiki>#window-controls .toolbarbutton-icon {
    width: 25px !important;
    height: 25px !important;
    </nowiki></pre>
    The three buttons have these IDs:
    <pre><nowiki>#minimize-button
    #restore-button
    #close-button</nowiki></pre>

  • Need to use iSight as full-screen 'webcam' for play - Quickly!

    We're doing a production on Internet safety for children, and we need an actor to be shown on large monitors, speaking and interacting with the cast in real time. Is there any way of using the iSight camera for this? iChat needs an account (and shows the OTHER person!) iMovie shows all the clips areas while the camera is on. We need, basically to have just the actor's face showing, so the MacBook is working as a camera. Oh - photobooth also doesn't show full screen till after the camera is off.
    Any ideas from you illustrious folk?
    I'll try the video forum too.
    Thanks, in panicked advance.

    Hi again,
    I have found this:
    http://chrisp.de/monitormode/
    Which is fantastic, and does what it says on the tin.
    Cheers,
    d

Maybe you are looking for

  • Can't open some web pages... DOES ANYONE HAVE A FIX THAT WORKS?

    I'm unable to open certain web pages. The pages will start to open and than the application will just stall. This seems to have coincided with downloading a security update a while back. I've tried downloading firefox and it too will not open these s

  • How Do I Convert iTunes Songs to .wav files

    Is there any way to convert iTunes downloaded music to .wav format so they can be used in Adobe Photoshop?

  • Publications and Internet Explorer

    Hi Experts, Versión: BOBJ 4.0 SP7 Internet Explorer 10 or 11 This is my doubt, we have a publication that runs a webintelligence report and send by email the link (%SI_VIEWER%) to open the report. The problem comes when the user clicks on the link to

  • Can I create a mirror image of a 3D object without flattening it?

    I'd like an exact copy of a 3D object I made to be looking back across my image at the other one. I feel retaining the 3D functionality of the second object enhances the authenticity of the image and keeps more options open if I decide I need to repo

  • Water leaked on my macbook pro

    I don't know what happened, I just came back and water has spilled on my MacBook, it won't turn back on. Is it done, what do I do?