Minimizing compose windows in full-screen mail under Yosemite

How do you minimise the compose window when mail is in full-screen mode? Before Yosemite you could click on the full-screen button in the top bar, and get mail out of full screen. That was a lousy solution, but it was working. Now it's not possible anymore. So how do you do this?
This is a seriously annoying bug.
Thanks!

I am also having this issue. However, it is not consistent. I installed Lion a week ago and it started off working fine. Only in the last couple days has it started doing this.
Running the first aluminum unibody MacBook from 2008, 2.4 GHz Intel Core 2 Duo Processor, 2GB 1067 MHz DDR3 RAM, 500GB WD Scorpio Blue SATA HD, everything else stock.

Similar Messages

  • Is it possible to set a finder window to full screen mode,..

    ... like mail, itunes and other apps? and if not, why not?
    I have to say it took me a bit to get used to Lion, I began complaining all day until I decided to take some time to learn it, and now I like it very much, I see the advantages over 10.6.
    But still, there are some things I don't know about, and the window of opportunity to take time to learn more has closed. And I don't know when it'll open again.
    So, that's why I have joined the community, because now I'm trying to use everthing on full-screen mode, and as I was setting my desktops to work on a project in which I will be needing a lot of finder windows open with a lot of items each, I instantly asked myself:
    Is it possible to set the finder windows to full screen? because I don't see any buttons.
    Thanks 4 Your Time
    R.D.B.

    Thanks Don Archibald,
    Yeah, that's what I'm doing at the moment. But I thought it would be nice to have the little full screen button just to press it so.
    Besides, I'm still figuring out the finder windows' behaviour. I discovered that if you open a folder from a window that has the toolbar, the new folder would also open with a toolbar, even if you already had it set it up with just the status bar.
    And one thing that still enervates me is that if you have a window with two items, and you press the green button to fit the borders up tight, instead of leavin' the 2 items in a horizontal arrangement, it moves one to the bottom and puts a slider. Arrgh.
    Another thing I haven't understood is why one folder I have on the dock sometimes opens with a column layout instead of the icon layout I have arranged for it before. Totally random 4 now, can't find the why.
    Anyway... I'm going to order some lapel pins about 2 flags I designed for two embassies. Anyone know a good place for doing that?

  • How to I get a link with a "Mail to" address to open up a Compose window in my Yahoo mail, rather than in the Mail progrom on my Mac. I do not use the Mac Mail program.

    How to I get a link with a "Mail to" address to open up a Compose window in my Yahoo mail, rather than in the Mail progrom on my Mac. I do not use the Mac Mail program.
    == This happened ==
    Not sure how often
    == always

    Thank you, "the-edmeister" -- You render a great service, one that lifts my spirits.
    Your answer also taught me to be a little more persistent, as I had started looking at Preferences, and just didn't notice the icons (including Applications) at the top of that window that would have led me to my answer.
    Dave

  • How to open a window in full screen mode using lf_fpm_navigation?

    Hi Guys
    For the following applications
    ESS Application: HAP_START_PAGE_POWL_UI_ESS
    MSS Application: HAP_START_PAGE_POWL_UI_MSS
    When the user clicks on the appraisal document name, a seperate window(not full screen) is generated to display the Appraisal docuemnt.
    The code is as follows:
    COMP: HAP_START_PAGE_POWL_UI
    Object : COMPONENTCONTROLLER
    Method: FOLLOWUP_POWL
    Generate the URL to be called.
        CALL METHOD cl_wd_utilities=>construct_wd_url
          EXPORTING
            application_name = 'HAP_MAIN_DOCUMENT'
            in_parameters    = lt_parameters
          IMPORTING
            out_local_url    = l_url.
        wd_this->url = l_url.
        wd_this->display_document( ).
    In Method: DISPLAY_DOCUMENT
    lv_alias = 'EMPLOYEE_DOCUMENT_UI_OBN'.
    use FPM navigation
        ls_nav_key-key1 = 'HAP'.
        ls_nav_key-key2 = 'HAP_GENERIC_UI'.
        lr_fpm_navigation ?= lr_fpm->get_navigation( is_key = ls_nav_key iv_instance_sharing = abap_false ).
        CALL METHOD lr_fpm_navigation->get_key_from_alias
          EXPORTING
            iv_alias = lv_alias
          RECEIVING
            rv_key   = lv_key.
        lr_fpm_navigation->modify_parameters(
             EXPORTING
               id_target_key            = lv_key
               it_application_parameter = lt_appl_param
               it_business_parameter    = lt_business_param    ).
        lr_fpm_navigation->navigate( lv_key ).
    Any idea how to open this window in full screen?
    Highly appreciate your help.
    Thank and Regards
    Pramod

    Hi Pramod,
    This FPM navigation is achieved using settings made in Launchapd Customizing ( LPD_CUST ).
    a) Execute Tran LPD_CUST
    b) Go to Role HAP - Double Click to open it.
    c) Open the second folder on the LHS menu - there you will find 2 entries
    d) Click on second entry - in the entry setting you can see that it is configured for WD Application  - HAP_MAIN_DOCUMENT
    e) Click on button Show Advanced Parameters
    f) There you will find a input box named as Window Features - here you can specify window features like
    height=700,width=1100,position=center,menu=no,status=no,location=no,menubar=no,status=no,toolbar=no
    save the settings come out and test ur app again.
    change the height and width and other features as per ur req.
    Regards
    Manas Dua

  • Windowed to Full-screen takes 3 attempts

    I'm working on a program, and one of the features I want is to be able to toggle between Full-screen and Windowed modes. I've searched these forums (and google) and saw a lot of the bug issues with full-screen implementations were from JDK 1.4, but haven't found if those bugs still exist. I also haven't found anyone that's encountering quite the same problem I'm having, which is:
    When changing the window (JFrame) from windowed mode to full-screen, it does a minimize-maximize loop 3 times before it finally goes full-screen.
    I thought it might've been related to the many other parts of the code I had written to handle this (namely key events for global hotkeys), but in the following demo which is a watered-down version of what I'm doing, I still get the same problem. Only difference between this and the actual program is the actual program uses an input-action mapping instead of a button.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class ToggleTest extends JFrame implements ActionListener {
        private GraphicsDevice graphicsDevice;
        private DisplayMode origDisplayMode;
        private JButton myToggleButton;
        private boolean isFullScreen = false;
        public static void main(String[] args) {
            new ToggleTest();
        public ToggleTest() {
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            JPanel tmp = new JPanel();
            GraphicsDevice[] devices = GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices();
            graphicsDevice = devices[0];
            origDisplayMode = graphicsDevice.getDisplayMode();
            JLabel myLabel = new JLabel("Test fullscreen");
            tmp.add(myLabel);
            myToggleButton = new JButton("Toggle");
            myToggleButton.addActionListener(this);
            tmp.add(myToggleButton);
            getContentPane().add(tmp);
            setSize(800,600);
            setVisible(true);
         * Toggles the screen between full-screen and windowed.
         * Implemented as a method for re-usability with code
         * that doesn't trigger action commands.
        private void toggle() {
            if(isFullScreen) {
                //Set to windowed mode
                dispose();
                setUndecorated(false);
                setResizable(true);
                graphicsDevice.setFullScreenWindow(null);
                setSize(800,600);
                setLocationRelativeTo(null);
                setVisible(true);
                validate();
            } else {
                //set fullscreen mode
                dispose();
                setUndecorated(true);
                setResizable(false);
                graphicsDevice.setFullScreenWindow(this);
                setVisible(true);
                validate();
            isFullScreen = !isFullScreen;
        public void actionPerformed(ActionEvent e) {
            if(e.getSource() == myToggleButton) {
                toggle();
    }I tried messing with the graphicsDevice.setDisplayMode method, but in examples I've seen, it made the whole screen go black and to the specified resolution of the supplied display mode. I'd rather keep the native resolution regardless of being in full-screen or windowed mode, and instead of having the setDisplayMode(origDisplayMode) in both the windowed and full-screen declarations, I just removed it (with no seemingly ill effects).
    I also tried removing the setFullScreenWindow(this) and just resized the JFrame to the current resolution, removed the decorations, removed the ability to resize it, and set it at the upper left corner, and this was a step closer to what I wanted. There were no minimize-maximize incidents, however the start bar was still on top. Reading the javadoc said if fullscreen mode wasn't supported that it would simulate it (which could be the case as the computer I'm testing it on has integrated graphics).
    Any help would be appreciated.

    That would be nice.
    Would also be nice to have the visualizer full screen on the secondary screen and leave the pimary screen alone.
    Suggestions here -> http://www.apple.com/feedback/itunesapp.html

  • How do I maximize a window to full screen with one click?

    How do I maximize a window to full screen with one click? Lion 10.7.4.

    If it is a full sceen App, some are some aren't, just click the arrow icon in the upper right hand corner.

  • Safari window to full screen.

    Yes, a simple user question. How to get my Safari window to full screen?

    Drag window's upper left-hand corner to the screen's upper left-hand corner, click and drag bottom right-hand corner resize triangle, and drag to the screen's lower right-hand corner. Why anyone would want to do that is beyond me, but that's it. AFAIK, there's no command shortcut that does it.

  • In full screen mail, message count vanishes

    I'm not sure if this is a Mavericks issue, or has always been an issue. When I use mail with the message viewer as a regular window, the count of messages in the mailbox I'm looking at shows in the window bar. But when I switch to full screen, the count vanishes. Am I missing something?

    You're not missing something. When an app is made Full Screen, its title bar is removed. This is true for all apps; though most don't suffer from the loss of a feature the way Mail does.
    If you want to see how many messages are in the currently-selected mailbox without leaving Full Screen, move your cursor to the top of the screen to reveal the Menu Bar, click on the "Window" menu and the very last item displayed in the dropdown will be the window title, which includes the message count in parenthesis. Alternatively, you can right-click (two-finger click if on a trackpad) on Mail's icon in the Dock, and it will show you the window name with the message count in parenthesis. Both options are less convenient than glancing at the menu bar, but at least you can remain in Full Screen.

  • Document windows open full screen

    Hi,
    Trying to avoid using the application frame as I don't like the way it stays open and visible when all Dreamweaver documents are closed (even if DW is in the background.)  So I have Application Frame (under Window menu) deselected...but everytime I open an html page to edit it opens the full width of the screen.  Anyway to set Dreamweaver to remember how wide windows were previously and have them open to that width which I set?
    Thanks,
    Rick

    Rick Lupert wrote:
    It seems strange though that Dreamweaver would assume I want to see a web page full screen...
    Dreamweaver CS6 introduced the Application Frame to bring it into line with other Creative Suite programs. Some Mac users like it. Others loathe it with passion. If you don't like the way Dreamweaver now works, submit a feature request as I suggested earlier.
    However, I have discovered a way to get the Mac version of Dreamweaver CS6 to open files at a smaller size. Whether it suits your preferred workflow is a different matter.
    Turn on Application Frame and resize Dreamweaver so that it doesn't fill your monitor. Go to the Dreamweaver menu, and select Preferences. In the General category, deselect the option to open documents in tabs.
    Now when you open a document, it will be floating, and will be only large enough to fit in the resized Application Frame. You won't be able to access other programs or files behind the Application Frame unless you minimize Dreamweaver. But if you locate the Application Frame away from other documents that you might want to access, it will give you freedom to switch between programs and keep the size of the Document window more manageable.
    Of course, it's not exactly what you want, but it might make your workflow a little easier.
    By the way, this is a user-to-user forum, not Adobe support. So, if you want Adobe to take notice of your requirements, use the form I suggested earlier.

  • Command-L doesn't work for full-screen PDF under Mac

    In Adobe Reader, users can use Ctrl-L to view PDF in full screen under Windows (Cmd-L under Mac);  in AIR, Ctrl-L still works under Windows but Cmd-L doesn't work under Mac. Is this a bug or the short-cut is intentionally disabled?

    Hi If using command r did not get you to the recovery partition, you ether don't have it or the drive is corrupt and it wont open.And you also tried option and only got the startup volume. You could try option r. Are you able to boot into your desktop? Or use another mac. You should be able to use you apple id to look in purchases and re-download Lion. Then if you can using at lest a 10 Gig thumb drive copy the lion download as bootable to it and use that to repair your disk. If you get it downloaded do not open it. until you copy it.http://www.macworld.com/article/1161069/make_a_bootable_lion_installer.html

  • Reply and forward not working in full screen mail app

    In the full screen version of the Mail application in Lion I can't reply or forward any messages.  I have to go back to the old view in order to respond to mail.  Is anyone else having this problem and if so, is there a fix?  The full screen apps and new mail program were a major reason I upgraded..

    I regularly experience the same problem. It also occurs with Compose.
    Sometimes Compose, Reply and Forward work fine in full screen mode. But frequently they don't, and I have to exit full screen mode to regain functionality. I have not been able to detect any pattern.

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

  • 6.0.1 update lost default window sizing and all windows open full screen now, why and how do I get my original window sizes back?

    After updating Firefox to version 6.0.1, all browser windows open in full screen size. I need new browser windows to open in their original default size since I use a website for work that opens multiple browser windows.
    I used to be able to fix this problem by renaming my localstore.rdf file in my profile and then restarting Firefox but this does not seem to work in this last update.
    This appears to be a recurring problem for Firefox and it's extremely frustrating.

    Safe mode disables the installed '''Extensions''', themes ('''Appearance''') and '''Plugins''' in '''Tools''' ('''Alt''' + '''T''') > '''Add-ons'''. So it could be that an extension is causing it. You can try to isolate it starting with script blockers and similar extensions and '''Disable''' or '''Remove''' it.
    Please also note that safe mode also disables hardware acceleration: '''Tools''' > '''Options''' > '''Advanced''' > '''General''': '''Use hardware acceleration when possible'''.
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [http://support.mozilla.com/en-US/kb/Uninstalling+add-ons Uninstalling Add-ons]
    [http://kb.mozillazine.org/Uninstalling_toolbars Uninstalling Toolbars]

  • Adobe Camera Raw window-Only full screen?

    I use Elements 7.0.  In an attempt to improve my photography, I’ve been concentrating on getting as close to a proper exposure in camera using zone system etc.  To further get close to the appropriate exposure after the shot is taken, I’ve begun to shoot in raw.  I’ve bought a couple of books, videos etc. and I’m getting the basics down fairly well.
    I have one basic question.  I’ve searched help both in Elements and within this forum and I can’t find anything that addresses my question.
    When I select a nef image (Nikon D90) in the Organizer and go to “Edit” and then “Full Edit”, the Adobe Camera Raw box opens up in full screen with the selected image displayed.  No part of the desktop is displayed, including the taskbar.
    Is there a way to open up ACR that is not full screen?  I’m so new that I still need to refer to help to figure out what certain sliders do.  I have a 25.5 diagonal monitor, so I have the screen real estate to have a fairly large ACR window while at the same time displaying a help screen.
    Thank you for your input.

    Not sure if this will help, but on my ACR to the right of the Preview checkbox there is a window-double-arrow symbol that toggles full-screen mode in ACR so even if ACR started up in full-screen you could unmaximize it and then resize it somewhat smaller.  I don't know how to start it up non-maximized in the scenario you describe because I don't use that scenario and my ACR starts up in whatever mode I last closed it, full-screen or not.

  • 'Pop-up to confirm' window in full screen mode

    Hi Guys
    In a SAP standard WDA application on clicking a link the application calls a pop-up(create_popup_to_confirm) window centered on the screen. I need to open the pop upwindow in full-screen mode. Changing/increasing size is not acceptable. Is this possible for pop-up window? If so , can you please help?
    Highly appreciate your help.
    Thanks
    Pramod

    hi,
    I tested with parameters window_height and window_width of method create_pop_up_to_confirm and they seem to be working. I tested it on Netweaver 7.02 Release ( Maybe this feature is enabled ).
    yeah Manas .. it was with Netweaver 7.01 only they r not working .. search  the SAP online help
    Also if you have to increase the height and widht of rootelement then you have to call method create_window to call an already existing view as Pop Up
    thats fine ..
    regards,
    amit

Maybe you are looking for

  • Simultaneous internal and external sound

    Are there any way to get audio output on the +internal speakers and the headphone jack at the same time?+I've tried the Sound/MDI settings but don't have clue where to find these settings (if thera are any) I have a decent subwoofer that could fit pe

  • Customization of filters, plugins...

    Hi all, I was wondering how to export all customization of presets I wrote during the years for filters, plugins and so on. I mean a particular setting of a reverb, equalisation... I suppose there is some kind of files here or there inside the Auditi

  • Parallels desktop 10 for mac

    Hi all, After using apple's pages, I find it difficult to use effectively. Hence, I am intending to install the pc versions of microsoft word, powerpoint and excel onto my mac. My question is: using parallels desktop 10, is it possible to use pc vers

  • JSTL + Javascript array for dhtml menu???  any ideas

    Hi, I am using the Tigra menu within creator. I have this working fine, but I need to generate a dynamic menu list based on a session bean string array . The javascript variable I use in the jsp file is: var MENU_ITEMS = [ ['Humanities', null], ['Art

  • Building java project from CVS

    Hi, I am new to ANT and java builds. This is what I want to do. I have two projects, Proj1 and Proj2. Proj1 is on HEAD branch in CVS and Proj2 is on TREE branch on CVS. I want to be able to build TREE branch but it should pull PROJ1 from HEAD branch.