[DUPLICATE] Possibility to disable OSX Lion native full screen support?

The newly implemented (v14.0.1 as far as I can tell) support for native OSX Lion fullscreen supports makes it very useless in a multi monitor setup. The old full screen support let me use the fullscreen for Firefox (and not letting window widgets get in the way) and continue using other applications on the other screens.
Is it possible to disable the OSX Lion full screen support? Otherwise I think it would be a welcome addition to the next update.

Locking as duplicate. Replies should be posted in the original thread, here:
*https://support.mozilla.org/questions/932448 Possibility to disable OSX Lion native full screen support?

Similar Messages

  • Possibility to disable OSX Lion native full screen support?

    The newly implemented support (in v14.0.1 as far as I can tell)) for native OSX Lion full screen support makes fullscreen pretty useless in a multi monitor setup. With the previous version it was possible to continue using the other monitors for other tasks.
    Is it possible to disable the support in some way to actually have useful fullscreen support again, i.e. the way it worked before v14.0.1? Otherwise such an option is needed in my opinion.

    I've built a simple addon that does just that: reverts the old pre-14 Fullscreen behavior. It isn't yet reviewed, so wouldn't show in searches until approved.
    Here's the direct link: https://addons.mozilla.org/en-us/firefox/addon/old-lion-fullscreen/. Bugreports are welcome!

  • Is it possible to download OSX lion

    is it possible to download OSX lion when I have it already installed on my new Imac?
    I would like to have a backup in case I have to rebuild it.

    The only way to do so is to install Snow Leopard on another computer. However, there is a way to "snag" a reinstall download. See Downloading Hardware Specific Lion Installers. It's a little tricky but the process does work. Once you've snagged the download you can create a bootable USB flash drive. Ignore the download instructions. Focus on Steps 2 on following.
    Make Your Own Lion Installer
    1. After downloading Lion you must first save the Install Mac OS X Lion application. After Lion downloads DO NOT click on the Install button. Go to your Applications folder and make a copy of the Lion installer. Move the copy into your Downloads folder. Now you can click on the Install button. You must do this because the installer deletes itself automatically when it finishes installing Lion.
    2. Get a USB flash drive that is at least 8 GBs. Prep this flash drive as follows:
    Open Disk Utility in your Utilities folder.
    After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the partition scheme to GUID then click on the OK button. Click on the Partition button and wait until the process has completed.
    Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    Set the format type to Mac OS Extended (Journaled.) Click on the Options button, check the button for Zero Data and click on OK to return to the Erase window.
    Click on the Erase button. The format process can take up to several hours depending upon the drive size.
    3. Locate the saved Lion installer in your Downloads folder. CTRL- or RIGHT-click on the installer and select Show Package Contents from the contextual menu. Double-click on the Contents folder to open it. Double-click on the SharedSupport folder. In this folder you will see a disc image named InstallESD.dmg.
    4. Plug in your freshly prepared USB flash drive. You are going to clone the InstallESD.dmg disc image to the flash drive as follows:
    Open Disk Utility.
    Select the USB flash drive from the left side list.
    Click on the Restore tab in the DU main window.
    Check the box labeled Erase destination.
    Select the USB flash drive volume from the left side list and drag it to the Destination entry field.
    Drag the InstallESD.dmg disc image file into the Source entry field.
    Double-check you got it right, then click on the Restore button.
    When the clone is completed you have a fully bootable Lion installer that  you can use without having to re-download Lion.

  • Adobe AIR HTML Native Full Screen on Mac OS X

    I am building an application in Adobe AIR for Mac in HTML/JavaScript.
    What I want to do is when the application loads, make the application go into full-screen mode using the correct native full-screen found in OS X Lion and above.
    e.g.
    This is NOT using the displayState that Flash/Flex uses.
    If the users decides to exit full screen mode they will see the app in a native window and can re-enter full screen mode using the icon you get in the top-right of a window.
    I've found some information about an extension here: http://forums.adobe.com/thread/1209193
    FREObject _EnableFullScreenMode(FREContext ctx, void* functionData, uint32_t argc, FREObject argv[])
            //We should be okay to do this, even on 10.6, according to this post:
            //http://www.cocoabuilder.com/archive/cocoa/311124-implementing-full-screen-for-10-7-but-app-should-also-run-on-10-6.html
            //We can't use [NSApp mainWindow] - didn't appear to work
            //This seems to though:
            NSArray * allWindows = [NSApp windows];
            if (allWindows.count > 0)
                NSWindow *mainWindow = [allWindows  objectAtIndex: 0];
                NSWindowCollectionBehavior behavior = [mainWindow collectionBehavior];
                behavior |= NSWindowCollectionBehaviorFullScreenPrimary;
                [mainWindow setCollectionBehavior:behavior];
            //TODO: Return a boolean instead depending on if we found the main window
            return NULL;
    That looks to do what I want! But after reading the Adobe AIR docs I can't get my head around where this code should live in my app directory and how I can call it on app load.
    So in my index.html I have:
    $(document).ready(function() {  // Make window full-screen // CALL THE EXTENSION TO MAKE THE APPLICATION FULL_SCREEN  // Make window active window.nativeWindow.activate();  // Make it visible window.nativeWindow.visible = true;  });
    The initialWindow is not visible by default using <visible>false</false> in the application descriptor XML file. And is made visible and active on the document ready as shown above.
    The missing piece is loading in the extension and making the window go native full-screen.
    To break this question up:
    Where does the extension code go? E.g. do I create an extension file and put it in any particular location in the app directory?
    How do I then load the extension into the application
    Finally how do I then do the full-screen on document ready
    What happens in OS X below Lion? How did full-screen work before it was introduced?
    Hopefully I can get pointed in the right direction as the docs have totally baffled me and don't explain how the extension file is created (to me at least).

    Extensions require both native code and ActionScript code and are packed by the native extension compiler by Adobe to an ANE file. Check this tutorial: http://www.adobe.com/devnet/air/articles/building-ane-ios-android-pt1.html
    After compiling the extension, you can put the extensionId into your <extensions> branch in the application.xml and add the .ane as an excluded library into your AS3 project. Then you can use the extension like any other external library (swc file).
    It's also helpful to download and play around with extisting ANEs. There are some nice open source libraries here: https://github.com/freshplanet

  • Full Screen Support?

    I usually borrow books through eLibraries Manitoba to read on Adobe Digital Edition. The most painful part of reading books on Adobe Digital Edition is the lack of full screen support like the one that comes with Adobe Reader and even Kindle reader. Full screen makes your reading experience so much more comfortable and you are able to focus on the material than the UI. Is there any plan to bring full screen support in 1.8?

    RE: Full Screen Support, Has it been implemented yet?
    I fully agree that full screen support is vital to reading on a MacBook (or any sort of personal computer) for the reasons stated.
    I would add that this is natively the case with Zinio's reader, Apple Pages, Ipad, etc.
    May I ask if Full Screen Support been implemented yet? Regards, Graham.

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

  • Disable mouse click to full screen

    Every time I click on an image to drag it to a different location on the screen, it jumps to full screen view. Is there a way to disable this?
    Thank You!

    Check to see if your mouse button is dirty or your cable is intermittent.  It's possible it's actually sending multiple clicks to the computer.
    Consider temporarily swapping in another mouse to troubleshoot, and potentially eliminate this possibility.
    -Noel

  • Disabling animations when closing full screen applications

    When I completely close an application from full screen as opposed to minimising it there is a transition that slides the desktop in from the right hand side of the screen. Is this feature a fixed part of the operating system or is it possible to disable it?

    Never mind. Found it. "LAUNCHPAD".

  • Lion - existing full screen on google chrome

    When i am using google chrome and i enter full screen mode, i have not found a way to exit it other than going to the view tab and clicking exit full screen. THis is unlike using itunes where you would click the minimize logo in the upper right hand corner.  PLease advice

    Wait for Chrome to be updated to use all the bells and whistles of Lion.
    Regards
    TD

  • How to disable screensaver in HTML5 full screen

    Hi all people
    Already, sorry for my english, I'm french and I do what I can.
    I'm in windows 8.1, not debian or other linux based OS. In streaming, my firefox not disable the screensaver in html5 full screen. I search in the web a solution, I found this : https://bugzilla.mozilla.org/show_bug.cgi?id=517870
    But I don't understand all reply on this thread.
    It's only on HTML5, not on Flash Player.
    Can you help me ? Thanks for the read of this post.

    On Windows, this will be fixed in Firefox 30 (the next release, currently in [http://www.mozilla.org/en-US/firefox/beta/ beta]). In the mean-time there are apparently [https://bugzilla.mozilla.org/show_bug.cgi?id=517870#c35 workarounds].
    For Mac OS X & Linux however, this is not fixed yet.

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

  • Flickering Screen and Lack of Full Screen Support, Flickering Screen and Lack of Full Screen Support

    Hi,
    I ran into a few things related to using my Bootcamp MacBook Pro 15” 2011 that I purchased 2012Mar. Having issues on the Mac side, with an external monitor. I bought a ViewSonic VX2753mh LED monitor, hooked it up to my laptop, started in Mac OS and seemed to be going good, able to get 1080p, 1920x1080 res on the monitor even though the 2011 MacBook doesn’t have that resolution on the actual attached screen. BUT, the Viewsonic started to intermittently turn off and back on, in addition when I tried to play a movie (or even a slideshow) in full screen (not mirrored), so that I could surf and watch the movie or slideshow, the full screen version of either would be placed back on my laptop screen while the external monitor had a generic grey with vertical lines screensaver pop up, or vica versa. If I played the movie in a small screen it was ok. Have heard a lot of issues with “flickering”. As for the application situation, maybe that’s something I don’t know about yet since I’m new to Mac. Can I play something like slideshow or a movie in full screen on an external monitor while I surf or type on the laptop monitor? Any ideas on either issue?
    Thanks in advance !!!

    Ok, so I solved my full screen problem with VLC, both slideshows of my pics running full screen on external moniter while I work on laptop, and with movies, still getting my external monitor flickering on and off, other threads stop around May, is there anything new ?

  • Mountain Lion freezes, full screen lagging, and makes the Macbook HOT!!

    hello everyones,
    have you guys experience this before after installing Mountain Lion OSX?
    I'm quite dissapointed my machine feels hot and I thingk if i put an egg it will cook.
    I already dim the brightness.safari problem, mail problem,
    chrome crash and not smooth.
    how to solve these problems?

    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.

  • Still my iPhoto format was not upgraded even that i have already os lion, no full screen app yet

    What will I gonna do?

    No idea - what is your problem? Why do you think you should have something different in iPhoto? Have you purchased a new version of iPhoto? What version of iPhoto do you have? We really have to have some information to be able to help - no psychics here
    LN

  • OS X LION Issues with Full-Screen; iPhoto, Image Capture & Mail

    Hello,
    I'm experiencing un-Apple-like issues (bugs) with Lion in Full-Screen mode.
    For example - iPhoto doesn't seem to like Full-Screen mode. If iPhoto is open and I connect a camera, for which I prefer Image Capture to retrieve my pics... Image Capture opens 'behind' the full-screen iPhoto, but I can't get to it. Image Capture shows as open on the menu bar in iPhoto's full-screen mode. If I go to the desktop (where it should be opening) Image Capture isn't 'on top' and clicking it takes me back to iPhoto full-screen
    Similarly, if I get mail and return to the desktop (the only way to see the dock) and I click on the 'Mail' app icon - I am catapulted into Image Capture... or iPhoto. Returning to the Desktop to click the Mail icon from the dock... takes me to Image Capture... or iPhoto. The 3rd try takes me to the Mail.app which is usually always open and in full-screen mode.
    While I'm complaining about bugs, I'd like to mention that I am fully dismayed by the loss of control in full-screen mode when using apps such as Mail or iPhoto. The Mail app opens an email to edit (such as a reply) but you can't access any other mail docs to 'cut and paste' info from. I can only click SEND or CANCEL.
    What if I don't want to CANCEL? I just want to go to another email and cut a piece to paste.. I have to exit full-screen mode which allows me to open two email documents at once, then cut and paste. Essentially Mail in Full-Screen is only a reader... not a work area. I can only access the document I have open, since it greys out the Message Viewer. You can't click on the message viewer nor access any of the features of Mail.app. You can only write your email and either Cancel or Send. Where is the 'hold on a second while I go cut and paste'? I don't want to cancel.
    Can't seem to use Safari since I'm constantly three-finger swiping it away. My cursor hovers over a text field and suddenly it's zooming in and locks text input. I have to iPhone-like swipe to expand to exit this inadvertent partial (very slight) zoom. Sometimes the zoom is so partial that I can't figure out what's going on until I just exit full-screen mode, close the window and start over.
    Seems like I'm starting over and over and over... just to do simple things. Inadvertent zooming, inadvertent 3-finger returning to Desktop, inadvertent changing apps... ugh.
    I'm willing to let go of the old and embrace the new future but so far it's been pretty uncomfortable for me to constantly monitor my overly sensitive trackpad gesturing combined with constant bugs and glitches. I'll save complaining about iPhoto's over-simplification (apparently for dummies) like the new Edit menu, Export menu, etc.. since it's more iLife than Lion related. Rate Lion: 2 out of 5 stars for ease of use & features complicated by unrefined software issues.

    I've tried follwoing these instructions but I have an issue with
    # Create snort user. The intention is to let user snort have access only to the snort database.
    $ sudo createuser -U _postgres -P snort
    Password:
    Enter password for new role:
    Enter it again:
    Shall the new role be a superuser? (y/n) n
    Shall the new role be allowed to create databases? (y/n) n
    Shall the new role be allowed to create more new roles? (y/n) n
    It keeps telling me "could not connect to database postgres: could not connect to server: No such file or directory"
    I'm running OSX Mountain Lion, and have verified using serveradmin status postgres that it is up and running.

Maybe you are looking for

  • My Iphone 4 is not ringing and the phone is not muted or water damage! What can I do?

    My phone is not ringing and everything is on and I have checked the settings! I have noticed that when I slide the side button the bell is not showing up! Have I deactivated something?

  • Void check needs reset

    HI All, We have voided a check by mistake, and when I go  reset the check information in FCHG using 3rd option" reset void information", system dispalys the message "no check exist which meets the selection critria".so it didn't work. When I go to FC

  • High resolution imageDraw-ing

    Hi, I make 2D arrays that I display with g2d.drawImage. The thing is that these 2D arrays can be quite a bit smaller than the no. of screen pixels (especially in the x/horizontal direction), and I end up with a very blocky image on the screen. So wha

  • I live in Mexico and I have the photography plan, can I acquire the offer for css clients at 29.90 a month?

    When I tried to access to the offer a messaged shows telling me that I have to ask the experts to check if I fulfill the requirements, but there´s no way I can contact any expert, since the number you provide is only for US clients, so I feel as if M

  • FaceTime won't activate

    Since upgrading to Yosemite, I can't get FaceTime to work. I keep getting "error activating your account". I've done all the trouble shooting tips listed in FaceTime help, but nothing works. I'm using a MacBookPro early 2011. Any ideas? Cause my iClo