A Question About Resizing Windows

I'm a bit new to Mac so please excuse me if my question is a no-brainer. When I open a window in OS X, such as opening the applications folder, the window is always a little too narrow so I stretch it out a bit so that all my app icons are not cut off. However, upon opening it again I find that it has reverted back to its original size and I must resize it once again. This happens with Safari, Firefox, and a few other windows as well. Is there a way on the Mac to set the size and shape that a window will open up to and save it so I don't have to go around resizing everything? Thanks.

Hi -
Try minimizing the window (click the little '-' symbol in the upper left window corner) then when it drops into your dock, click on it again and it should open to where you initially minimized it from. Whenever you open a new window it should now open to this preferred size.
Hope that works.

Similar Messages

  • Question about Setting Window Title/the use of AVWindowSetTitle()

    Hi everyone,
    I have a question about setting the title of the window in which the Acrobat viewer normally opens a PDF file.  The documentation states that AVWindowSetTitle() cannot be used in this case.  However, using it has worked with versions of Acrobat/Reader up until and including version 8.
    Everything breaks down starting with Acrobat 9.
    According to the documentation I am supposed to do the following: "To set the title of a window in which the Acrobat viewer opens a PDF file, you must replace AVDocOpenFromASFileWithParams() and pass the window title in tempTitle."
    Unfortunately, there are 2 problems I have with this approach:
         I do need to be able to change the document title on document Save, not only on document Open
         I do not know what AVDocOpenFromASFileWithParams() implementation has to look like if I have to replace it using HFTReplaceEntry().
    Is there a sample customized implementation of AVDocOpenFromASFileWithParams() somewhere that I could take a look at?
    Is there a way to change a document Title inside Acrobat/Reader window after a Save operation?
    Thanks a million,
      Lana2010K

         I am sorry.  I don't know how you tested this and came to conclusion that this works correctly in Acrobat X.
         I just tested our Acrobat plug-in with a trial version of Acrobat X and this did not work.
         When we open a file in Acrobat (doing it ourselves in the plug-in by adding another specialized open) we set the window title to something different from the default file name.  Then if a file gets edited and saved (File->Save), the window title gets reset to the file name. In the PDDocDidSave callback we call AVWindowSetTitle() to set it back to a more descriptive window title we need.  This has worked up until and including Acrobat 8, but does not work in either version 9.0 or 10.0.
         Also, I just modified the plug-in code to always change the Window Title of every document (even if opened through native File->Open) on document Save.  It does not work.
         Please help,
              Lana2010K

  • Question about child "windows"

    Hello Everyone,
    First, I want to thank everyone who's so graciously taken
    their time to answer my previous questions. Because of you, I am
    well on my way to developing my very first real world Flex
    application. I am consistently astounded at how helpful this
    community is and am very thankful to have you all here.
    Now, I do have one question about some code that works on the
    example but not in real life. I am trying to open a popup window
    from a class named composeScreen. In my CDATA section, I have the
    following code:
    function showWindow(modal) {
    var popup = mx.managers.PopUpManager.createPopUp(this,
    composeNewMessage, modal, {deferred: true});
    Yet, when I save the program, Flex Builder tells me:
    "Access of undefined property mx"
    Any idea why this is happening?
    I've even tried importing the mx.managers.popUpManager class
    and it makes no difference.
    Please help! This is driving me nuts!
    Thanks in Advance,
    Anthony

    Hi Anthony,
    You will have to use popup manager class for this.Here is the
    code to give you a lil bit of direction. Call init() function in
    the initilize event of the <mx: application> tag
    import mx.managers.PopUpManager;
    private function init():void{
    myWindow = PopUpManager.createPopUp(this, MyWindow, false);
    myWindow.visible = false;
    myWindow.x = 200;
    myWindow.y = 200;
    myWindow.height = 100;
    private function showWindow():void{
    myWindow.visible = true;
    myWindow.expand.play();
    <mx:Button id="btn" label="click me"
    click="showWindow()"/>
    When you click on the button your child window must pop
    up.

  • My apologies  & question about resizing pic for wallpaper

    Guess what I wrote about resizing wallpaper was removed.  Didn't realize the way I wrote it was not allowed. I apologize to the list.
    What I Want to know is how to resize the wallpaper when trying to use a picture. It seems to blow it up making it unusable.  Can anyone offer a suggestion to get past this issue?
    Thanks

    Guess what I wrote about resizing wallpaper was removed.  Didn't realize the way I wrote it was not allowed. I apologize to the list.
    What I Want to know is how to resize the wallpaper when trying to use a picture. It seems to blow it up making it unusable.  Can anyone offer a suggestion to get past this issue?
    Thanks

  • Question about resizing a window

    hi,
    i have a null-layout window which is resizable. the origin size is e.g. 500x300. my question: how can i manage it that resizing is only possible up to specific values for height and width, e.g. 300x150? in other words: i want to define the smallest possible size to which my window could be minimized.
    thanks for every advice!
    kind regards,
    reinhold

    hi and thanks for your replies!
    sorry, i think that the desciption of my problem was not exact enough. here a second attemt: my frame is an input-mask with (for the time being) five buttons on the right side ("add", "edit", "clear", "update" and "close"). the first (upper) three buttons move their x-position dynamic when the frame is enlarged in width. they have a fixed y-pos. the lower two buttons move also dynamic: when the frame is enlarged in width they behave as the upper three buttons but when the frame is enlarged in height they change their y-pos dynamic to the frame's height. so they 'move away' in y-pos from the other three buttons. my first problem was, that when i reduce the frames height then the lower two buttons can be moved over the upper three buttons. i have solved this with the following componentListener:
    contentPane.addComponentListener(new ComponentAdapter() {
        public void componentResized(ComponentEvent event) {
             // position of the upper 3 buttons:  x-pos dynamic to frame.width, y-pos. fixed
             addButton.setBounds(event.getComponent().getWidth()-120,15,100,20);
             editButton.setBounds(event.getComponent().getWidth()-120,45,100,20);
             deleteButton.setBounds(event.getComponent().getWidth()-120,75,100,20);
             // position of the lower 2 buttons: x-pos dynamic to frame.width, y-pos dynamic to frame.height
             updateButton.setBounds(event.getComponent().getWidth()-120,event.getComponent().getHeight()-60,100,20);
             closeButton.setBounds(event.getComponent().getWidth()-120,event.getComponent().getHeight()-30,100,20);
             // check minimal frame.height (165). if reached, fix y-pos of the lower two buttons
             // so they cannot be moved over the upper three buttons     
             if (event.getComponent().getHeight() <=165) {
                 updateButton.setBounds(event.getComponent().getWidth()-120,105,100,20);
                 closeButton.setBounds(event.getComponent().getWidth()-120,135,100,20);
    });    that works fine, but my next (and main-) problem is, that i want to make it possible, that -if the height of 165 is reached- the BORDER of the frame could not be downsized anymore so that all 5 buttons remain allways visible. therefor i've found no solution in the forum's threads.
    thanks for all tips!
    reinhold

  • Urgent question about resizing videos in Adobe Premiere

    Hello, forgive me for asking such a noob question but i have a presentation due in about 10 hrs and Adobe Premiere is giving me some headaches with the video i'm trying to make!
    I am trying to alter the dimensions of a movie in the 'monitor' window (the objective being to put 2 different movies side by side in the same timeline, but that's irrelevent). Screenshot is below
    http://s5.largeimagehost.com/display...sXUF&skey=nv28
    I've seen it being done before - their should be a border around the frame in the 'Sequence 01' tab that lets you resize it with your mouse. But It's not appearing for me... . is their some hot key or something..? It's probably something really obvious but i can't find it...

    You will also find links to many free tutorials in the
    Premiere Pro Wiki that will quickly
    show you how things are done in PPro, including picture-in-picture effects.
    Cheers
    Eddie
    Forum FAQ
    Premiere Pro Wiki
    - Over 250 frequently answered questions
    - Over 100 free tutorials
    - Maintained by editors like
    you

  • Question about CS3 & Windows 7...

    I'm actually asking for a friend. They have CS3 Master Collection and they are running Windows XP SP3. They want to upgrade their system to a Windows 7, but they don't want to be out of the Adobe products either, especially after the price they paid for them. They will eventually be upgrading to CS 5.5 by the end of 2012.
    However, the friend has heard mixed feedback about it. Some people who have installed it on their Win7 system said it WORKED, but it made their system performance DRAG. Other people have said that it WILL NOT install... it gives errors and will not activate.
    Has anyone successfully installed Photoshop CS3/CS3 Master Collection on a Windows 7 system? Will my friend need to run the programs in 'Compatibility for Windows XP' mode?
    Thanks for any info you can provide!

    I have been looking now for several weeks, months even for some resolve to the known issues. There are posts about the pdf printer that does not work in windows 7 on the adobe's tech site.. I just wanted geminigirl6879 to know that they may run into issues. Forums are for that reason and the idea that you want to sensor replies to the ligitmate question a user may have really defeats the purpose. I have called Tech Support on my issues, posted on forums and scoured the internet, all i can find is that Adobe does not support windows 7 and cs3. Not only that, the posts i read about CS5.5 on widows 7 concerns me about adobe and their attitude to us smaller users.

  • Question about use Windows Installer SDK

    Hi,
    I want to Use C# code to read .MSP file and get inside file list. Such as: you can get a hotfix from here
    https://support.microsoft.com/en-us/kb/3000847 and after extract the exe you can get a .MSP file. And 3 DLL files are including in the .MSP file.
    What I want is Use C# code to read the .MSP file and get the 3 DLL file name. Here is how to read it with C++:
    https://msdn.microsoft.com/en-us/library/windows/desktop/aa816375%28v=vs.85%29.aspx?f=255&MSPPError=-2147217396
    But I don't konw about C++, So I'm trying use C# code to call Windows SDK. And I import the Windows SDK code into C# like below:
    [DllImport("msi",
    CharSet = CharSet.Auto)]
    internal
    static
    extern
    uint MsiGetPatchFileList(string
    szProductCode, string szPatchList,
    out
    uint cFiles,
    out
    IntPtr phFileRecords);
    My question is that: How to get the parameter information, such as
    szProductCode. How to read the file information from phFileRecords in C# code?
    Best regards,
    Glen Qu (Fareast\v-zuqu)

    Hi,
    I want to Use C# code to read .MSP file and get inside file list. Such as: you can get a hotfix from here
    https://support.microsoft.com/en-us/kb/3000847 and after extract the exe you can get a .MSP file. And 3 DLL files are including in the .MSP file.
    What I want is Use C# code to read the .MSP file and get the 3 DLL file name. Here is how to read it with C++:
    https://msdn.microsoft.com/en-us/library/windows/desktop/aa816375%28v=vs.85%29.aspx?f=255&MSPPError=-2147217396
    But I don't konw about C++, So I'm trying use C# code to call Windows SDK. And I import the Windows SDK code into C# like below:
    [DllImport("msi",
    CharSet = CharSet.Auto)]
    internal
    static
    extern
    uint MsiGetPatchFileList(string
    szProductCode, string szPatchList,
    out
    uint cFiles,
    out
    IntPtr phFileRecords);
    My question is that: How to get the parameter information, such as
    szProductCode. How to read the file information from phFileRecords in C# code?
    Best regards,
    Glen Qu (Fareast\v-zuqu)
    Hello,
    For MSI APIs, you could refer to
    Installer Function Reference
    It has helped us separate them to multiple parts. Like for getting product code, we could refer to
    Product Query Functions part, like the
    MsiGetProductProperty .
    For getting file information, then refer to File Query Functions
    part.
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Newbie Questions About Installing Windows with Boot Camp

    The only reason I want to use Windows is to be able to download games from the internet that are not made for Mac only for PC and I have a few questions:
    1. Doing all this installation will anything made for PC work?
    2. I only have Windows XP will that work? And then do all the SP updates after it's installed?
    3. If I have to use Windows XP SP2 is this one a good one to buy?
    http://www.cdsfu.com/index.php?categoryID=87
    4. After everything is installed do I have to use an anti-virus?
    I want to thank you for your help as you can see I really am a newbie.
    Karen

    Hi Karen and welcome to Discussions,
    The only reason I want to use Windows is to be able to download games from the internet that are not made for Mac only for PC and I have a few questions:
    1. Doing all this installation will anything made for PC work?
    Nearly anything. There are some Windows programs using hardware dongles that don't run.
    2. I only have Windows XP will that work? And then do all the SP updates after it's installed?
    You need a Windows XP CD with at least Service Pack 2 (SP2) incorporated.
    3. If I have to use Windows XP SP2 is this one a good one to buy?
    http://www.cdsfu.com/index.php?categoryID=87
    another user round here had already asked about that website.
    Three things about this offer are, at least to me, very suspicious:
    "Microsoft Windows XP Professional Edition With SP2, Full Version on CDR"
    Microsoft never has used CD-R disc (CD-Recordable) for Windows
    "software that does NOT include any COA label or a sticker from the manufacturer"
    There always has to be a sticker, that one puts on the computer on which the Windows license is installed and a COA label as well.
    "VOLUME LICENSE INCLUDED"
    A volume license, from my understanding, was only sold to companys, who install Windows on a larger scale (hundreds of computers) and for that purpose are given only one license-key for all installations.
    Usually this is known as a'corporate license'.
    All in all, I would personally stay away from this offer. It simply doesn't sound legal to me.
    4. After everything is installed do I have to use an anti-virus?
    When running Windows a decent Anti-Virus software is a must.
    I want to thank you for your help as you can see I really am a newbie.
    You're welcome anytime. Hope it helps.
    Karen
    Regards
    Stefan

  • New to Apple, questions about using Windows, and other things

    Hello all,
    Today is my first day as an Apple owner. It's funny because I'm also a MCSE, MCSA, and MCP.
    I purchased a 24" iMac, 2.8GHz, 4GB RAM, and 1TB Hard Drive.
    I want to use Windows on my Mac so that I don't have to keep switching over to my PC. My main reason for using Windows is so that I can continue to enjoy my PC Games... mostly racing and D&D games.
    So my question is... how does Windows run on bootcamp? Can I still use all of my USB controllers (like my steering wheels, joysticks, etc?)
    I really havent even turned on my iMac... been too amazed at just looking at it for the first day (and also rearranging my home office).
    I really just want to know from those of you who have PCs AND Macs, if you still find yourself having to go back to your PC because of incompatibilities or performance issues on the iMac?

    Using BootCamp, your Windows experience is no different than if running it on a similarly configured PC. If you went with a VM running under Mac OS X (like VMWare or Parallels), there are a number of differences. However, using BootCamp you have a Mac-branded PC.
    I'd point out that people have been dual-booting operating systems in this fashion for decades. Windows has no obvious in-built support for doing so, but other operating systems (like Linux, FreeBSD, etc.) have always very clearly and explicitly supported dual-booting (on Macs and regular PCs) from the get go.

  • Easy Question about resizing video

    I searched 'Resizing Video' and there was too many unrelated results to a really simple question.
    In my old program "Premiere', to resize and move a video around was very easy. You could adjust the scale and X-Y values numerically, or you could use a Free Transform like in Photoshop. Simply dragging bounding boxes for size and aspect and also dragging the clip to decide it's location.
    The only way I know how to do this in FCP is I double click a clip in the sequence, it loads into the viewer, I go to the Motion Tab and then I can adjust the Scale, which is cool. But then I'm left with the Distort section to adjust position (and aspect if need be). In the Distort section there are 8 numeric fields of info to figure out and fill out just to get one clip in a different position correctly.
    I'm thinking there must be another way to adjust the location (or aspect) of a video clip without spending a bit of time on exact coordinates, I want to eye-ball where I want the clip to go and simply move it there. Is the Distort feature the only way to do this? If not, which is the fastest way to move and change the dimension of a clip.
    Thanks for reading, I hope there is another way, I'm not use to these calculations and they're slowing me down.
    Monty

    I searched 'Resizing Video' and there was too many unrelated results to a really simple question.
    That's because it's not a simple question at all and yet every one of those threads was related to the OP's question. As you discovered, there are lots of ways to interpret "resize," during capture, editing, effects, output, viewing, encoding, printing. But the solution was even simpler than you thought. All you had to do was open the manual or the online help system. Start taking the manuals to the gym with you. FCP is not Premiere. You're going to hate FCP, you're going to love FCP but it will never behave like Premiere beyond the elements of the functional paradigm. Forget Premiere.
    bogiesan

  • Questions about Installing Windows 7 ultimate 64 bit on Mac Pro

    Hi, I have an early 2009 Quad Core Mac Pro which is running Snow Leopard. I have 4 internal drives in my Mac Pro. Does WIndows 7 have to be installed on the same drive I have Snow Leopard installed or can it be on any of my drives. My boot drive has 215 gb of free space. 2 of them have 100gb of free space and my 2 tb drive has 40 gb of free space. To install Windows 7, do I have to partition one of my drives which would mean erasing all my data? How much free space do I need for windows 7 and programs, etc? Would Windows 7 ultimate 64 bit work? Any info is greatly appreciated

    Read the link ""The hatter"" gave you and read the "FAQ's", it will answer quite a few of your questions. Read the Installation manual a few times to familiarize yourself with it before you start and it will make it a lot easier when the time comes.
    Windows will be little bit quicker on the Mac-Boot disk only because of your SSD drive. It's rare, but you leave yourself open for problems if anything gets buggered up with both OS's on the same drive. You could lose the Mac side also. You have the chance to save yourself one less problem with it being on a separate drive.
    You can install Windows on "any" INternal drive with Boot Camp. Windows can only be installed in the #1 slot on a MacPro if there are any other drives in it. (You can put it in any slot after it's been installed.) And Windows can't be installed on an EXternal drive from a Mac.
    Your best bet would be either put one of the internal drives into an external HD enclosure ($15/$20) and replacing it with another blank HD and just splitting it into two partitions or try to free up more space on one of the other drives so you have more room.
    Or like ""The hatter""mentioned.
    """You could put OS X HD in lower optical drive bay and put in a drive just for Windows."""
    The only problem with making room on an already full drive is that some times some invisible "root" files will be left behind and Boot Camp CAN'T move it and you could get a generic "Can't Install, Files in the way" type error. So you would have to Backup, erase, reinstall to clean it up that way.
    It's not so much installing Windows without Boot Camp, but you need BootCamp in order to use the "Start-up Disk" preferences. The Finder can't see the Windows install with out it. No big deal if you want to use the "Option" Key every time to reboot. Boot Camp Also has a couple of preferences like the F-Keys, etc, that you may need to use. It Could be a bigger headache. Boot Camp just makes it A LOT easier for the -non- geeks.

  • Questions about resizing and uploading pictures ...

    I have set up a desktop folder, and can store my resized pictures there through the export function in iPhoto.  When I export though, there doesn't seem to be any way to export directly to that folder.  Instead, I have to export to the desktop, then drag all those files into my desktop folder.  Is there any way to export my resized photos directly into that folder without having to first go to the desktop, then the folder?  It just seems like extra steps.
    Another nuisance I'm encountering is uploading to sites like eBay and PhotoBucket.  If I chose to browse files on my computer, all that opens is the iPhoto icon rather than individual image files.  I know I can drag and drop, but is there any way of directly accessing either the individual images in iPhoto or the desktop shortcut which contains my resized images?
    I am coming off years of working with Windows, and their system of simply opening My Pictures and selecting the images you want to upload seems much simpler than this.
    I am running OS X Mavericks with a MacBook Air 2013.
    Thanks for any help.

    The iPhoto export dialogue is the same as any other. I wonder if you're seeing this:
    When what you want is this:
    Which allows you to access the specific folders you want. You get this by clicking the button indicated.
    As for uploading photos:
    For help accessing your photos in iPhoto see this user tip:
    https://discussions.apple.com/docs/DOC-4491
    It's the first one you want...
    You can work your photos on your Mac just like you did on Windows, but you've chosen to use a database with lossless processing. So there is a learnign curve if you change not only your OS but you're entire system of managing your photos.

  • Question about Using Windows in the MacBook

    Hello Everybody!! I want to buy a MacBook, due to the fact that my Gateway PC is kind of outdated by now, but I will also install Windows 7 on it.
    I also read that the MacBook camera is not compatible with Windows Live Messenger, so my question is:
    If I install Windows 7 on the Macbook, Will I be able to use the Camera when using Windows? Would I have to install Any drivers...
    PLease Help! I'm new to The Macs (even though I have a couple of iPods an a iPhone 4)
    Thanks!

    Actually the newest version of parallels allows you
    to play games with 3D acceleration,
    There are games that play under windows in BootCamp that will still not play under windows in Parallels. I have a Windows Game Pirates that uses a play disk. It works perfectly under Bootcamp but will not work under Paralells. It has problems reading the game disk while in Paralells.
    Mort

  • Question about resizing a 'decorative' object

    Hi all
    Please bear with me this is tricky to describe.
    I have on a form I have obtained from formcentral an attractive banner: its just a nice colour nothing else but it spans the entire width of the form and is about 2 inches high.
    I wanted to copy & paste this and then shorten the height to 0.5 inches, but I have no height or width handles, just the four corner handles so the resizing maintains the aspect ration and I'm left with a copy which is the correct height but half or less of the width I need.... so I do multiple copies of these just to get coverage across the width of the form.
    This seems daft but I cannot see how to do this slicker....
    Anybody know please?
    thanks
    george

    Hi all
    Please bear with me this is tricky to describe.
    I have on a form I have obtained from formcentral an attractive banner: its just a nice colour nothing else but it spans the entire width of the form and is about 2 inches high.
    I wanted to copy & paste this and then shorten the height to 0.5 inches, but I have no height or width handles, just the four corner handles so the resizing maintains the aspect ration and I'm left with a copy which is the correct height but half or less of the width I need.... so I do multiple copies of these just to get coverage across the width of the form.
    This seems daft but I cannot see how to do this slicker....
    Anybody know please?
    thanks
    george

Maybe you are looking for

  • SAP Script Dunning form F150

    Hi Friends, My requirement is that the client wants to print RMWWR from BSID table in the dunning form. I copied the standard layout of F150_DUNN_01 to ZF150_DUNN_01 and made all the necessary modifications to the form as per their requirement but I

  • Iphone I cloud activation screen (forgot apple id & password)

    I shouldn't even be making this post, but i'm so frustrated. I'l do a quick summary so that I get you guys and girls up to speed on my problem. 1. Was updating phone, random error happened and the phone needed to be backed up by itunes, the phone res

  • NameFromLastDDL Error during java stored procedure upload...

    Hi guys, I am trying to upload a class to send email within a java stored procedure. JDeveloper fails to upload the class, and the error message doesn't help me: I guess the automatically generated SQL statment features a "NameFromLastDDL" argument,

  • HT201317 so after 30 days, my photos in photo stream will automatically deleted?

    i can't access my photos from my photo stream. is it because it was taken more than 30 days ago?

  • QRFC Monitor(QIN Scheduler)

    Hi , In my qRFC scheduler (Qin Scheduler) the scheduler status is coming as inactive!!!what should i do? and there are more than 5000 messages in smq2 tcode i.e inbound queues?what should i do to rectify the errors