How to resize window?

I sometimes have a problem of window becoming so large, that it's bottom right corner is off-screen (when I disconnect a large external monitor)...how can I resize this window?

Here is a third party app that will help out:
http://www.atomicbird.com/mondomouse/
Kj

Similar Messages

  • How to resize windows by pulling edges (like in Windows)

    Hi, is there a way to pull windows wider (resize them) by pulling on the window edges rather than the lower-right corner? I tend to have a lot of Terminal windows, as well as Photoshop windows.
      Windows XP Pro  

    Your profile says Windows XP pro, and doesn't say what Mac operating system you are running. Now most Mac operating systems do not let you pull the window edges to resize the windows. The only controls you'll get are in the corners.
    There have been some hacks on certain operating systems to make the edges work, but like I say they are hacks, and may not work through an operating system update. The last time I saw such a hack work was way back in System 7.6 with Church Windows. There may be additional ones on Mac OS X that work that have been mentioned on:
    http://www.resexcellence.com/
    Of course if you run Windows in emulation, or virtualization environment, Windows applications themselves will still have their usual interface behavior:
    http://www.macmaps.com/macosxnative.html#WINTEL
    tells of several such options.
    I'd add, I prefer the controls to remain on the corners, because otherwise you get confused how to move windows using their edges, or you might misdirect your cursor to the scrollbar and instead end up resizing the window when you don't want to.

  • How to resize window when stage style is undecorated ?

    Hi,
    I have one undecorated window and I want to make it resizable by using mouse.
    How can I do it ?
    If I use decorated window then it allows me to resize it.
    Thanks.

    Just make a draggable shape and resize the stage depending on the drag action.
    Here is a simple stage illustrating that and moving the window too.
    Note an old bug already seen in 1.1 at least: when dragging such window, on WinXP, sometime it seems to "jump" to one bound of the screen, then it goes back (in a flicker) to current position. Strange and annoying.
    def resizeHandle: Path = Path
        var origX = bind scene.width
        var origY = bind scene.height
        var startW: Number; var startH: Number;
        elements:
            MoveTo { x: bind origX, y: bind origY }
            LineTo { x: bind origX - 50, y: bind origY - 30 }
            LineTo { x: bind origX - 30, y: bind origY - 50 }
        fill: Color.CORAL
        stroke: null
        blocksMouse: true
        // Resize with the arrow
        onMousePressed: function (evt: MouseEvent): Void
            startW = stage.width;
            startH = stage.height;
        onMouseDragged: function (evt: MouseEvent): Void
            stage.width = startW + evt.dragX;
            stage.height = startH + evt.dragY;
    var keyHandler: Rectangle;
    def titleBar: Stack = Stack
        var title: Text;
        content:
            keyHandler = Rectangle
                width: bind title.layoutBounds.width * 1.2
                height: bind title.layoutBounds.height * 1.3
                fill: Color.web('#33FF55')
                blocksMouse: true
                // We can drag the stage by dragging the title bar
                onMouseDragged: function (evt: MouseEvent): Void
                    stage.x += evt.dragX;
                    stage.y += evt.dragY;
                onKeyReleased: function (evt: KeyEvent): Void
                    if (evt.code == KeyCode.VK_ESCAPE)
                        FX.exit();
                    println(evt);
            title = Text
                content: "Resizable and Draggable Window"
                font: Font { name: "Arial Bold", size: 24 }
                fill: Color.web('#331122')
    var scene: Scene;
    def stage: Stage = Stage
        title: "Undecorated Stage"
        style: StageStyle.UNDECORATED
        scene: scene = Scene
            width: 500
            height: 500
            fill: Color.GOLD
            content:
                Ellipse
                    centerX: bind scene.width / 2
                    centerY: bind scene.height / 2
                    radiusX: bind 0.45 * scene.width
                    radiusY: bind 0.45 * scene.height
                    fill: Color.AQUA
                Circle
                    centerX: bind scene.width - 55
                    centerY: bind scene.height - 55
                    radius: 50
                    fill: Color.PURPLE
                titleBar,
                resizeHandle
    keyHandler.requestFocus();

  • HT4818 how to resize windows partition

    How do you resize the windows partition in boot camp?

    iF you have already created the Windows partition, you can't resize it. To do it, you have to use an app like Paragon Camptune, that will allow you to resize your Windows volume > http://www.paragon-software.com/downloads/camptune.html
    The other option is to delete Windows and create the new partition with the size you want in Windows. Make a backup of your data before doing this

  • How to resize window (JFrame) on event

    I've got a swing application that uses tabs (JTabbedPane). It's default size is 200,200, and I need to resize the window to different sizes depending on what tab is selected. I can set the default size, but I can't seem to get access to the window to resize it (setBounds/setSize) at runtime.
    If anybody can tell me how I can go about this, I would greatly appreciate it.
    Matt
    Here's the code:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    public class TimeTrack_Example extends JFrame {
         Container cp = getContentPane();
      public static void main(String args[]) {
              TimeTrack_Example TT = new TimeTrack_Example();
              TT.setSize(200,200);
      public TimeTrack_Example() {
              JTabbedPane JTPane = new JTabbedPane();
              JTPane.addChangeListener(cl);
                   //Jobs Tab
              JPanel jpJobs = new JPanel();
              JTPane.addTab("Jobs", jpJobs);
                   //Timer Tab
              JPanel jpTimer = new JPanel();
              JTPane.addTab("Timers", jpTimer);
                   //Report Tab
              JPanel jpReport = new JPanel();
              JTPane.addTab("Report", jpReport);
        cp.add(JTPane);
        addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent e) {System.exit(0);}
        pack();
        show();
              //Tab ChangeListener
         ChangeListener cl = new ChangeListener() { 
              public void stateChanged(ChangeEvent e) {
                   int tabID = ((JTabbedPane)e.getSource()).getSelectedIndex();
                   if (tabID == 2) {
                        //???               //here's where I need to change the size
    }

    This is one way:
    create a method, lets call it resizeWindow(). Call this method from inside your ChangeListener.
    public void resizeWindow() {
    this.setSize(300, 400); //whatever values you want
    public void stateChange(ChangeEvent e) {
    if (tabID == 2) {
    resizeWindow();
    }

  • How to resize window smoothly?

    I need to screen record a resizing a window but need it to happen in a very smooth manner.  I'd could manually drag the window but it won't be completely smooth or fluid.  I thought to use Automator but I don't see anything under resize. 
    I'd like to set starting and ending points.  If it could pause in the middle that would be great.
    Any ideas how this can be accomplished?

    Try the following:
    repeat 20 times
              set boundBox to bounds of window "Downloads" of application "Finder"
              set tFrame to (item 1 of boundBox)
              set lFrame to (item 2 of boundBox)
              set rFrame to (item 3 of boundBox) - 2
              set bFrame to (item 4 of boundBox)
              set bounds of window "Downloads" of application "Finder" to {tFrame, lFrame, rFrame, bFrame}
              delay 0.05
    end repeat
    In this script, change the "- 2" value to adjust the amount the window will change at each loop. The repetition count of 20 can be changed to also adjust the amount the window will change. Both of these will set the extent of the window change, and then you can adjust the delay value (in seconds) to change the rate once the other two values have been set.
    It will take some experimenting to figure

  • How to resize window keeping relative width and hieght

    Ok as usual I do not want this done for me but I could use a pointer. Simply put I wish to set a JFrame so that when it is resized by the user it holds its relative width and height.
    Could somebody point me to where it is at in the API or a generic sample of code that I can rework? I have read for it but am not finding it so far. Thank you for your patience and any help offered. If it matters I'm doing a fairly simple app in NetBeans not an applet or anything.
    Edited by: Donalds on Apr 8, 2010 5:10 PM

    This was the best I could think of off the top of my head.
    You may want to request this thread be moved to the swing forums for better contributions.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.ComponentEvent;
    import java.awt.event.ComponentListener;
    public class SampleFrame {
        public Dimension lastSize = new Dimension(400,300);
        public JFrame frame;
        public SampleFrame() {
            frame = new JFrame("Sample Frame");
            frame.setSize(lastSize);
            frame.setLocationRelativeTo(null);
            frame.addComponentListener(new ComponentListener() {
                public void componentResized(ComponentEvent e) {
                    Dimension currentFrameSize = frame.getSize();
                    int widthDelta = Math.abs(lastSize.width - currentFrameSize.width);
                    int heightDelta = Math.abs(lastSize.height - currentFrameSize.height);
                    if(heightDelta > widthDelta) {
                        double scaleRatio = currentFrameSize.getHeight() / lastSize.height;
                        currentFrameSize.width = (int) (lastSize.width * scaleRatio);
                    } else {
                        double scaleRatio = currentFrameSize.getWidth() / lastSize.width;
                        currentFrameSize.height = (int) (lastSize.height * scaleRatio);
                    frame.setSize(currentFrameSize);
                    lastSize = currentFrameSize;
                    frame.setLocationRelativeTo(null);
                public void componentMoved(ComponentEvent e) {
                public void componentShown(ComponentEvent e) {
                public void componentHidden(ComponentEvent e) {
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
        public static void main(String[] args) {
            new SampleFrame();
    }

  • Resize windows and manage files in save/open dialogs?

    1. How to resize windows by dragging any border or corner?
    2. How to manage files via a Save/SaveAs or Open dialog (rename, delete, copy other files, etc...)?
    My search on these two things only comes up with comparisons and debates about Win vs Mac. Not relevant to the questions! I already run Win XP in Fusion when I have to for work. I don't want to run Windows; I just want to eliminate a couple Mac shortcomings since Apple hasn't. Yet. Maybe it has to do with patents...
    Anyway, does anybody know of a utility or other way to enable these functions in Mac OS 10? (I've tried Pathfinder; it doesn't quite do the trick.)

    I believe you will find a couple of third-party utilities that provide some enhancements for windows. As for file dialogs I can only recommend Default Folder X. You will find these at VersionTracker or MacUpdate.

  • Resizing Window

    Hi, i designed one window, and set its modality Transparent for good look. now i want to make it resizable. how can i make it resizable?
    anyone know how to resize window which is transperent. i just want to resize it from x axis only......
    Edited by: 924666 on Apr 26, 2012 5:06 PM

    The following example uses ctr+C and ctr+V to resize the transparent stage
    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.paint.Color;
    import javafx.stage.*;
    import javafx.scene.shape.*;
    import javafx.scene.input.*;
    public class Trans extends Application {
         * @param args the command line arguments
        public static void main(String[] args) {
            Application.launch(Trans.class, args);
        @Override
        public void start( final Stage primaryStage) {
            primaryStage.setResizable(true);
            primaryStage.setTitle("Owner");
            primaryStage.initStyle(StageStyle.TRANSPARENT);
            Group root = new Group();
            Scene scene = new Scene(root, 300, 250, Color.RED);
            primaryStage.sizeToScene();
            primaryStage.addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>() {
                public void handle(KeyEvent event) {
                    if (event.isControlDown()) {
                        if (event.getCode() == KeyCode.C ) {
                           primaryStage.setWidth(primaryStage.getWidth()+40);
                           primaryStage.setHeight(primaryStage.getHeight()+40);
            primaryStage.addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>() {
                public void handle(KeyEvent event) {
                    if (event.isControlDown()) {
                        if (event.getCode() == KeyCode.V ) {
                           primaryStage.setWidth(primaryStage.getWidth()- 40); 
                            primaryStage.setHeight(primaryStage.getHeight()- 40);
            primaryStage.setScene(scene);
            primaryStage.show();
    }

  • How do i drag icons and how do i resize windows

    this is my first laptop having been used to emacs before. I can't figure out how to drag items or resize windows when not using a mouse and can't find such simple instructions in the manual.
    thanks.

    In addition to the method described by Jim, you can set options in the Keyboard & Mouse preference panel (in System Preferences) that allow you to get mouse clicks and click lock using the trackpad. Check out those options, many people find they make the trackpad a lot more useful.
    Randall Schulz
    iMac 20" Core Duo; MacBook Pro   Mac OS X (10.4.6)  

  • How to resize photoshop elements 11 window on mac? no green+

    How to resize photoshop elements 11 window on mac? no green+ button as off screen.  cannot rescale monitor - no option on macpro

    Go to system prefs>displays and set your resolution way down. Let OS X open with the new resolution. Then set it back up to the highest available resolution and the window should position itself correctly.

  • How to set windows at a certain size in Lion ?

      Hi Guys
      this is something i have been having an uphill struggle trying to get right - to say the least !!..
      in Snow Leopard one could only ''resize'' a window by pulling on it's corners ( NOT a limitation in my book.. )  but when you closed the window & later opened it again, it remained the size it was when you last closed it
      now with Lion one can ''resize'' the windows by pulling anywhere ( just like Windows - HURRAY !?.. ) BUT when you close it & open it again later, Lion resizes it forcing me to - AGAIN.. - size it back to my preferences/needs and to me THAT my friends IS a SERIOUS limitation to my efficiency
    on my 27'' iMac i like my windows to be roughly  8'' tall X 10'' wide, that combined with my file & folder's size gives me a nice working space, showing most of that window's content WITHOUT scrolling, etc.... MOST IS clearly displayed to see, what could be easier than that ?
    the PROBLEM is that this happens 10, 15 or even 20 times a day, WASTING my time & effort in the process - for NOTHING !!
    & that's what drives me nuts : constantly resizing windows ? in my neck of the woods there ARE better things to do.....you know what i mean ? this IS MOST frustrating given the pointlessness of the effort wasted
    what can i say ? i'm a lazy bugger who doesn't enjoy repeating the same task  OVER & OVER again - anyone has a suggestion on how to avoid this ?
    i'd truly appreciate a solution for this
    many thanks

    Hello Pankaj
    You will find a solution for your problem in sample report <b>BCALV_EDIT_03</b>. If you do the error handling in the event handler method for DATA_CHANGED then the cursor will point to the field containing the faulty value.
    Here is part of the report's header documentation:
    program bcalv_edit_03.
    * Purpose:
    * ~~~~~~~~
    * In this example the user may change values of fields
    * SEATSOCC (occupied seats) and/or PLANETYPE. The report checks
    * the input value(s) semantically and provides protocol
    * messages in case of error.
    * To check program behavior
    * ~~~~~~~~~~~~~~~~~~~~~~~~~
    * Change values of the column "occupied seats" or "Planetype" or
    * both (in the same line). Try to provocate errors.
    * Click on the check symbol or press return to initiate checking.
    * (ALV also checks input before any functions like sorting,
    * filtering or doubleclick are processed. These functions are
    * only active if the input does not contain any errors).
    * The ALV Grid Control first checks if the input is correct
    * according to DDIC-Information (Type, lenght). Then semantic
    * checks are made by the application using event handler method
    * HANDLE_DATA_CHANGED.
    Regards
      Uwe

  • Is there a way to open an image in a floating, resizable window?

    In previous versions of PDE I could open an image (or for that matter, multiple images) as floating, resizable windows.  Now, images seem anchored.  How can I detact them from the big editing screen, such that I can move them around the computer screen as I could in the past?
    Thanks,
    Haly2k1

      Open Editor and click Edit à Preferences à General
    Then check the box “Allow Floating Documents in Full Edit Mode”
     

  • How to install Windows 8 OS on U410 24 GB SSD?

    I have a new U410 with 8 GB RAM and 1 TB HDD and a 24 GB SSD. The SDD seems empty. How can I get the Windows 8 OS on to this SSD so that I can make use of its high speed? I have seen forum discussions on other systems, refering to Rapid Drive etc. but they do not seem to apply to my system.
    Solved!
    Go to Solution.

    before you go crazy, i had this same question....
    mine is a similar setup, but with the HDD at 750mb, 24gb SSD.  the SSD is too small to use as a windows 8 boot drive, but it works well as a cache for the larger hard drive.
    while i did not realize this, my system came installed with a SANDISK SSD and also had express cache software setup.  at first, i was reading about rapid drive, and then about intel smart response... but actually the machine came pre-installed with express cache.
    one way to check if your setup is already using this is to go into the windows command prompt and run:
    eccmd -help
    this will give you parameters for the express cache software command line.  one useful one is eccmd -info.
    as in my case, part of the SSD was probably also allocated to intel rapid start technology, which uses the SSD to hold the sleep/hibernation data, so it can resume from sleep state quickly.
    see this thread:  http://forums.lenovo.com/t5/IdeaPad-Y-U-V-Z-and-P-​series/How-to-resize-intel-fast-start-partition-on​...

  • How to resize my monitor resolution in OS X 10.5.8

    Hello I have a question I am new to mac and I was trying to resize my desktop resolution. I'm using a 720i TV utilizing the HDMI and using the convertor to make it DVI and for some reason when I use the 720 resolution its all off center and it won't let me resize it like it does in Windows but it works when i have it at 1280 x 960 problem is I don't want that resolution it doesn't look as good on my TV. I have tried everything and can't find any software that will allow me to do this. And I use the same monitor for my Windows machine and it works perfect PLEASE HELP

    Yeah..... I know that I want to know how to resize a resolution the 1280 x 720 doesn't show up right it's making everything go off the sides so I can't see everything on my desktop in windows my nvidia control panel would allow me to resize my monitor to fit any resolution i want to know how to do that on a mac

Maybe you are looking for

  • How can I eliminate HTML tags from Oracle Text Snippet?

    I perform a search on many tables and on many columns of those tables. Some of those columns are VARCHAR2 and some CLOB. Also, some of the searchable data are HTML and some are plain text. My problem is that ctx_doc.snippet fetches the HTML tags. For

  • Document No of 103 &105 Mtype to be Same

    Dear Friends, I am mapping the Gate Entry scenario by splitting the receipt with movement types 103 and 105. But my concern is, I will be  getting two different document numbers for each transaction,i.e One each for 103 movement type and 105 movement

  • Buffer Hit % ?

    Hi Guys, My DB Buffer Hit % (from awr): is very low 69% (9am to 6pm daily). Is this ratio a good indicator for me to increase my db cache? (<90%) I have read several articles. Some suggest that it's a good indicator and some suggest not. Anyone can g

  • My Thunderbird email is not responding. I have been unable to open it.

    I tried rebooting my PC several times, but the result is the same. None of my mailboxes or address book can be utilized. The page is blank and says that Thunderbird is not responding. How can I get this to work again? All of my other programs are wor

  • Firefox shows that it loads, but I can't see the window.

    Running Window XP. Just did a defrag and some system clean-up. When I click on my Firefox icon, it shows that the program loads because I get a tab on on the bottom showing it. However I never get a window that loads. When I try to click on the Firef