Automatic resizing of Window

I've created a window that let's the user know that a child transaction
is being started. I add three dots to a TextGraphic widget message
until the child task is started. However, the window pane automatically
gets bigger every time the three dots are added (using a TickInterval
parameter). I tried coding the widget as a size of explicit, but then
the dots aren't added. I also tried setting the autosize enabled option
on the Window property to off, but this hasn't seemed to help. I've
sized the window with more than enough room for the extra dots, but the
window still gets resized each time. I am using the UpdateFromData
method to update the window.
I want the dots to be added with the window pane resizing itself
everytime.
Any help would be appreciated.
Thanks,
Dave
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

I want the dots to be added with the window pane resizing itselfeverytime. <<
Don't you mean **without resizing** ?
I tried coding the widget as a size of explicit <<This should work, but you will have to manually re-size the TextGraphic
on the window to a sufficient width.
An alternative would be to group this widget into a panel and then
re-size the panel to a sufficient width and set the panel size policy to
explicit (default).
Hope this helps.
Prashant.
From: Ehrlich, Dave[SMTP:[email protected]]
Reply To: Ehrlich, Dave
Sent: Monday, August 10, 1998 3:02 PM
To: Forte Users Group (E-mail)
Subject: Automatic resizing of Window
I've created a window that let's the user know that a child
transaction
is being started. I add three dots to a TextGraphic widget message
until the child task is started. However, the window pane
automatically
gets bigger every time the three dots are added (using a TickInterval
parameter). I tried coding the widget as a size of explicit, but then
the dots aren't added. I also tried setting the autosize enabled
option
on the Window property to off, but this hasn't seemed to help. I've
sized the window with more than enough room for the extra dots, but
the
window still gets resized each time. I am using the UpdateFromData
method to update the window.
I want the dots to be added with the window pane resizing itself
everytime.
Any help would be appreciated.
Thanks,
Dave
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive
<URL:http://pinehurst.sageit.com/listarchive/>
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

Similar Messages

  • How do I set Safari to automatically resize new window when opening a link?

    Here is the scenario. I have one Safari window open, I click a link that is on that page, I have Safari set to open a new window (not a new tab) so that is what it does. It opens a new window from that link, but the new window is too small. It is about 1/4 the size of a window that fills up the screen. How do I set up Safari so that when I open a link in a window, it automatically resizes the new window to fill the screen?
    Thanks much,
    Paula Jo

    Hi Paula Jo
    Next time a new window automatically opens, resize it to the desired size by dragging the lower right corner. Then, click on the red button in the upper left to close it.
    Now, select a link in your existing browser window to open the 2nd window. It ought to be the same size as what was set previously.
    Let me know if that works.

  • How to I stop safari from automatically resizing the bookmark bar when I click on the search bar?

    there is probably an eloquent way to ask this but I don't even know what the feature is called.
    Here is what it's doing:
    I'm using safari in landscape mode on my iPad.
    I click on the search bar and then the bookmarks come up below.
    It takes a second to automatically resize to a size that make no sense, usually cutting off bookmark titles...and the delay of it resizes drives me nuts.
    Safari did not used to do this until I guess ios 8. Any ideas how to stop this annoying "feature"??

    Try deleting the Cache.db...
    Quit Safari.
    Go to ~/Library/Caches/com.apple.Safari/Cache.db
    Move the Cache.db file from the com.apple.Safari folder to the Trash.
    Relaunch Safari ...
    You may want to try the Safari Reading List as an alternative to tabs.
    Click the eyeglass icon just to the left of the Bookmarks icon top left side of the Safari window.
    Drag the url to the window or click Add Page

  • How to have automatic resizing of container when JInternalFrame resizes?

    Is there a good way for the automatic resizing of its container when a JInternalFrame is resized?
    The intent is to have the JTree below, automatically resize. for example,
    if you type newlines into the JTextArea contained in JInternalFrames.
    (Tried adding the JInternalFrames to a JDesktopPane, but it did not display them. I wonder if it is inefficient to have a JDesktopPane for each tree node).
    Is there any way to know if a JInternalFrame is resizing? Perhaps then one can reload the tree as:
    treeModel.reload()thanks,
    Anil
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.Dimension;
    import java.util.EventObject;
    import javax.swing.BorderFactory;
    import javax.swing.Box;
    import javax.swing.JDesktopPane;
    import javax.swing.JFrame;
    import javax.swing.JInternalFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTabbedPane;
    import javax.swing.JTextArea;
    import javax.swing.JToggleButton;
    import javax.swing.JTree;
    import javax.swing.UnsupportedLookAndFeelException;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.tree.DefaultTreeCellEditor;
    import javax.swing.tree.DefaultTreeCellRenderer;
    import javax.swing.tree.DefaultTreeModel;
    import javax.swing.tree.TreeSelectionModel;
    public class TreeFrames extends JPanel {
           AnilTreeCellRenderer3 atcr;
           AnilTreeCellEditor4 atce;
           DefaultTreeModel treeModel;
           JTree tree;
         public TreeFrames() {
                super(new BorderLayout());
                   treeModel = new DefaultTreeModel(null);
                   tree = new JTree(treeModel);
                  tree.setEditable(true);
                   tree.getSelectionModel().setSelectionMode(
                             TreeSelectionModel.SINGLE_TREE_SELECTION);
                   tree.setShowsRootHandles(true);
                  tree.setCellRenderer(atcr = new AnilTreeCellRenderer3());
                  tree.setCellEditor(atce = new AnilTreeCellEditor4(tree, atcr));
                   JScrollPane scrollPane = new JScrollPane(tree);
                   add(scrollPane,BorderLayout.CENTER);
         public void setRootNode(DefaultMutableTreeNode node) {
              treeModel.setRoot(node);
              treeModel.reload();
           public static void main(String[] args) throws ClassNotFoundException,
           InstantiationException, IllegalAccessException, UnsupportedLookAndFeelException{
                TreeFrames tb = new TreeFrames();
                tb.setPreferredSize(new Dimension(800,600));
                  JFrame frame = new JFrame("Tree Windows UI Failed");
                  frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                  frame.setContentPane(tb);
                  frame.setSize(800, 600);
                  frame.pack();
                  frame.setVisible(true);
                  tb.populate();
         private void populate() {
              TextAreaNode3 r = new TextAreaNode3(this);
              setRootNode(r);
              r.gNode.addFrame();
              r.gNode.addFrame();
              TextAreaNode3 a = new TextAreaNode3(this);
              a.gNode.addFrame();
              treeModel.insertNodeInto(a, r, r.getChildCount());
              treeModel.reload();
    class AnilTreeCellRenderer3 extends DefaultTreeCellRenderer{
         TreeFrames panel;
    DefaultMutableTreeNode currentNode;
      public AnilTreeCellRenderer3() {
         super();
    public Component getTreeCellRendererComponent
       (JTree tree, Object value, boolean selected, boolean expanded,
       boolean leaf, int row, boolean hasFocus){
         TextAreaNode3 currentNode = (TextAreaNode3)value;
         NodeGUI4 gNode = (NodeGUI4) currentNode.gNode;
        return gNode.hBox;
    class AnilTreeCellEditor4 extends DefaultTreeCellEditor{
      DefaultTreeCellRenderer rend;
      public AnilTreeCellEditor4(JTree tree, DefaultTreeCellRenderer r){
        super(tree, r);
        rend = r;
      public Component getTreeCellEditorComponent(JTree tree, Object value,
       boolean isSelected, boolean expanded, boolean leaf, int row){
        return rend.getTreeCellRendererComponent(tree, value, isSelected, expanded,
         leaf, row, true);
      public boolean isCellEditable(EventObject event){
        return true;
    * this is done to keep gui separate from model - as in MVC.
    * not necessary.
    * @author juwo
    class NodeGUI4 {
         JPanel notes = new JPanel();
         final TreeFrames view;
         Box hBox = Box.createHorizontalBox();
         final JTextArea textArea = new JTextArea( 1, 5 );
         NodeGUI4( TreeFrames view_ ) {
              this.view = view_;
              hBox.add( textArea );
              textArea.setBorder( BorderFactory.createMatteBorder( 0, 0, 1, 0, Color.GREEN )
              hBox.add(notes);
              hBox.setBorder( BorderFactory.createMatteBorder( 5, 5, 5, 5, Color.CYAN ) );
         void addFrame() {
            MyInternalFrame frame = new MyInternalFrame();
            frame.add(new JTextArea(1,5));
            frame.setVisible(true); //necessary as of 1.3
            notes.add(frame);
            try {
                frame.setSelected(true);
            } catch (java.beans.PropertyVetoException e) {}
    class TextAreaNode3 extends DefaultMutableTreeNode {
         NodeGUI4 gNode;
         TextAreaNode3(TreeFrames view_t) {
              gNode = new NodeGUI4(view_t);
    class MyInternalFrame extends JInternalFrame {
        static int openFrameCount = 0;
        static final int xOffset = 0, yOffset = 0;
        public MyInternalFrame() {
            super("Document #" + (++openFrameCount),
                  true, //resizable
                  true, //closable
                  true, //maximizable
                  true);//iconifiable
            //...Create the GUI and put it in the window...
            //...Then set the window size or call pack...
            setSize(300,300);
            //Set the window's location.
            setLocation(xOffset*openFrameCount, yOffset*openFrameCount);
            this.putClientProperty("JInternalFrame.isPalette", Boolean.TRUE);
    }

    I think this does what you want; it's basically the same technique as we used before.
    It also suffers from an interesting bug: if I type in the text area inside the internal frame, the editor resizes nicely
    with the node below it staying visible; if I type in the text area next to the panel, the editor will resize over the node
    below it. I didn't dig into it further to see the cause.
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.Dimension;
    import java.awt.Insets;
    import java.awt.Rectangle;
    import java.awt.event.ComponentAdapter;
    import java.awt.event.ComponentEvent;
    import java.util.EventObject;
    import javax.swing.BorderFactory;
    import javax.swing.Box;
    import javax.swing.JFrame;
    import javax.swing.JInternalFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    import javax.swing.JTree;
    import javax.swing.UnsupportedLookAndFeelException;
    import javax.swing.event.DocumentEvent;
    import javax.swing.event.DocumentListener;
    import javax.swing.plaf.basic.BasicTreeUI;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.tree.DefaultTreeCellEditor;
    import javax.swing.tree.DefaultTreeCellRenderer;
    import javax.swing.tree.DefaultTreeModel;
    import javax.swing.tree.TreePath;
    import javax.swing.tree.TreeSelectionModel;
    public class TreeFrames extends JPanel {
         AnilTreeCellRenderer3 atcr;
         AnilTreeCellEditor4 atce;
         DefaultTreeModel treeModel;
         JTree tree;
         public TreeFrames() {
              super( new BorderLayout() );
              treeModel = new DefaultTreeModel( null );
              tree = new JTree( treeModel );
              tree.setUI( new TextAreaTreeUI() );
              tree.setEditable( true );
              tree.getSelectionModel().setSelectionMode( TreeSelectionModel.SINGLE_TREE_SELECTION );
              tree.setShowsRootHandles( true );
              tree.setCellRenderer( atcr = new AnilTreeCellRenderer3() );
              tree.setCellEditor( atce = new AnilTreeCellEditor4( tree, atcr ) );
              JScrollPane scrollPane = new JScrollPane( tree );
              add( scrollPane, BorderLayout.CENTER );
         public void setRootNode( DefaultMutableTreeNode node ) {
              treeModel.setRoot( node );
              treeModel.reload();
         public static void main( String[] args ) throws ClassNotFoundException, InstantiationException,
                   IllegalAccessException, UnsupportedLookAndFeelException {
              TreeFrames tb = new TreeFrames();
              tb.setPreferredSize( new Dimension( 800, 600 ) );
              JFrame frame = new JFrame( "Tree Windows UI Failed" );
              frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              frame.setContentPane( tb );
              frame.setSize( 800, 600 );
              frame.pack();
              frame.setVisible( true );
              tb.populate();
         private void populate() {
              TextAreaNode3 r = new TextAreaNode3( this );
              setRootNode( r );
              r.gNode.addFrame();
              r.gNode.addFrame();
              TextAreaNode3 a = new TextAreaNode3( this );
              a.gNode.addFrame();
              treeModel.insertNodeInto( a, r, r.getChildCount() );
              treeModel.reload();
         private static class AnilTreeCellRenderer3 extends DefaultTreeCellRenderer {
              TreeFrames panel;
              DefaultMutableTreeNode currentNode;
              public AnilTreeCellRenderer3() {
                   super();
              public Component getTreeCellRendererComponent( JTree tree, Object value, boolean selected, boolean expanded,
                        boolean leaf, int row, boolean hasFocus ) {
                   TextAreaNode3 currentNode = (TextAreaNode3) value;
                   NodeGUI4 gNode = (NodeGUI4) currentNode.gNode;
                   return gNode.hBox;
         private static class AnilTreeCellEditor4 extends DefaultTreeCellEditor {
              DefaultTreeCellRenderer rend;
              public AnilTreeCellEditor4( JTree tree, DefaultTreeCellRenderer r ) {
                   super( tree, r );
                   rend = r;
              public Component getTreeCellEditorComponent( JTree tree, Object value, boolean isSelected, boolean expanded,
                        boolean leaf, int row ) {
                   return rend.getTreeCellRendererComponent( tree, value, isSelected, expanded, leaf, row, true );
              public boolean isCellEditable( EventObject event ) {
                   return true;
          * this is done to keep gui separate from model - as in MVC. not necessary.
          * @author juwo
         private static class NodeGUI4 {
              JPanel notes = new JPanel();
              final TreeFrames view;
              Box hBox = Box.createHorizontalBox();
              final JTextArea textArea = new JTextArea( 1, 5 );
              NodeGUI4( TreeFrames view_ ) {
                   this.view = view_;
                   hBox.add( textArea );
                   textArea.setBorder( BorderFactory.createMatteBorder( 0, 0, 1, 0, Color.GREEN ) );
                   hBox.add( notes );
                   hBox.setBorder( BorderFactory.createMatteBorder( 5, 5, 5, 5, Color.CYAN ) );
                   DocumentListener dl = new DocumentListener() {
                        public void insertUpdate( DocumentEvent de ) {
                             resizeEditor();
                        public void removeUpdate( DocumentEvent de ) {
                             resizeEditor();
                        public void changedUpdate( DocumentEvent de ) {
                   textArea.getDocument().addDocumentListener( dl );
              void addFrame() {
                   MyInternalFrame frame = new MyInternalFrame();
                   frame.getContentPane().add( new JTextArea( 1, 5 ) );
                   frame.setVisible( true ); // necessary as of 1.3
                   notes.add( frame );
                   try {
                        frame.setSelected( true );
                   } catch ( java.beans.PropertyVetoException e ) {
                   frame.addComponentListener( new ComponentAdapter() {
                        public void componentResized( ComponentEvent e ) {
                             resizeEditor();
              private void resizeEditor() {
                   TreePath path = view.tree.getEditingPath();
                   if ( path != null ) {
                        Rectangle nodeBounds = ( (BasicTreeUI) view.tree.getUI() ).getPathBounds( view.tree, path );
                        Dimension editorSize = getEditorPreferredSize();
                        hBox.setBounds( nodeBounds.x, nodeBounds.y,
                                  editorSize.width, editorSize.height );
                        hBox.validate();
                        Rectangle visRect = view.tree.getVisibleRect();
                        view.tree.paintImmediately( nodeBounds.x, nodeBounds.y,
                                  visRect.width + visRect.x - nodeBounds.x,
                                  editorSize.height );
                        ( (TextAreaTreeUI) view.tree.getUI() ).resizeTree( path );
              private Dimension getEditorPreferredSize() {
                   Insets insets = hBox.getInsets();
                   Dimension boxSize = hBox.getPreferredSize();
                   Dimension taSize = textArea.getPreferredSize();
                   Dimension nSize = notes.getPreferredSize();
                   int height = taSize.height + nSize.height + insets.top
                             + insets.bottom;
                   int width = taSize.width + nSize.width;
                   if ( width < boxSize.width )
                        width += insets.right + insets.left + 3; // 3 for cursor
                   return new Dimension( width, height );
         private static class TextAreaNode3 extends DefaultMutableTreeNode {
              NodeGUI4 gNode;
              TextAreaNode3( TreeFrames view_t ) {
                   gNode = new NodeGUI4( view_t );
         private static class MyInternalFrame extends JInternalFrame {
              static int openFrameCount = 0;
              static final int xOffset = 0, yOffset = 0;
              public MyInternalFrame() {
                   super( "Document #" + ( ++openFrameCount ), true, // resizable
                             true, // closable
                             true, // maximizable
                             true );// iconifiable
                   // ...Create the GUI and put it in the window...
                   // ...Then set the window size or call pack...
                   setSize( 300, 300 );
                   // Set the window's location.
                   setLocation( xOffset * openFrameCount, yOffset * openFrameCount );
                   this.putClientProperty( "JInternalFrame.isPalette", Boolean.TRUE );
         private class TextAreaTreeUI extends BasicTreeUI {
              public void resizeTree( TreePath path ) {
                  treeState.invalidatePathBounds(path);
                  updateSize();
    }

  • Why does Preview automatically resize the text box to cut off the last character of added text? How do I fix it?

    Why does Preview automatically resize the text box to cut off the last character of added text? How do I fix it?
    I use the Tools > Annotate > Add Text feature, and when I click away after adding text, it automatically changes the text box size such that the last letter -- or last word -- gets bumped off into an invisible line below it, forcing me to manually adjust every single text box. It is highly annoying when trying to complete PDF forms (e.g. job applications).
    It appears to be a glitch, quite honestly, an error resulting from Apple's product design. Has it been fixed in the new operating system (for which they want $30)?
    I would very much appreciate any help you can provide! Thank you for your time.

    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • Can an InDesign swf document automatically resize?

    Hello,
    Using InDesign CS4, I've created an interactive document and exported into a swf format.
    The document size is 1024 x 768 px, but will not resize without cropping parts of the document. This means that the majority of users won't be able to use the document unless they have the same desktop size or larger than 1024 x 768.
    I've tried changing the export options in InDesign to get the document to resize, and I've also tried exporting and changing settings in Flash which works but removes all of the interactivity.
    From what I've read I don't think it is possible to do this from the Adobe suite.
    Does anyone know if there any way this document can be displayed in a browser and automatically resize according to the users desktop resolution? This could be either via some functionality I haven't tried within the Adobe software or by using some software or code to imbed with the document on the webpage.
    I can upload the document if needed.
    Thanks for your help.

    You can set the embedded swf to scale with the browser window (not fullscreen mode) via the HTML holder generated by ID. Set width and height to "100%" and scale to "showall"
    Keep in mind that the browser window could be any size, so text might be be illegible in a small browser window or awkwardly oversized in a large window.

  • How do U resize a window in start up

    Im making an applet that draws somehting and my drawing is bigger than my applet i want to only view it in a n applet viewer so how do i resize the window automaticly so at start up i get a big enough window to fit my drawing in.

    try n add this in ur html file.
    hope it helps.
    An applets width and height properties are only available in Internet Explorer 4 - and then they are only read only.
    The only possible way is to trap the resize event using the documents onResize event handler in Netscape Navigator 4 and Internet Explorer 4 to reload the page:
    <HTML>
    <body onResize="document.history.go(0)">
    <applet width="100%" height="100%">
    </applet>
    </body>
    </html>

  • Photoshop CS6: Save for Web Automatic Resize Issue

    Some my .psd files (CS6 Photoshop, MAC OSX 10.7.5, Processor: 2.5 GHz Intel Core i7) automatically resize to a percentage. I can't figure out what the cause is, and it will not allow me to change it back to 100% to slice out images for web.
    File Type is .psd - RGB 8 bit/color
    Fie Dimensions are 1400px by 10,800px.
    File Size is 60MB
    The file is extremely slow to open and adjust anything within the file as well, not sure if the issue is related.
    I am working off of my desktop not off of a server.
    Attached is the save for web issue.

    I have the exact same issue, just on certain files?
    I have to 'save as' instead of 'Save for Web'?
    What causes this to happen?? I also have the preview window displaying a gif when I've got the PNG option selected???

  • Neither Automatically Resize nor Zoom to Fit working

    Hello out there in Appleland,
    Neither Automatically Resize nor Zoom to Fit is working in Preview 5.0.3 under Snow Leopard.  Zoom to Fit acts just like Actual Size or <Command> 0 and Automatically resize doesn't work at all.  This must be and bug, so please explain how this can be permanently fixed, even at the command line level.
    Thank you.
    Best regards,
    Bob
    Denver, CO

    I've found out a little more about Preview and its bug through a process of elimination.
    After examining Automatically Resize for Preview 3.0.9 on my old PowerBook G4 with OS 10.4.11, Preview 4.1 on my iMac with OS 10.5.8, and now Preview 5.0.3 on my MacBook Pro with OS 10.6.8, I discovered they all work the same way.  When Automatically Resize is checked the image is only resized when the window is reduced but never when the window is enlarged to a size greater than the image's Actual Size, which is a worthless feature for smaller images.  I don't think this is the way it is supposed to work, but I may be wrong.
    Where 5.0.3 differs from the other versions of Preview is in Zoom to Fit.  Under the View Menu, Zoom to Fit is grayed out unless the image stretches beyond the borders of the window (i.e. Automatically Resize toggled off).  In this case, the image will be reduced to the size of the window when Zoom to Fit is selected.  On the other hand, if the image is smaller than the size of the window, Zoom to Fit is not grayed out but neither does it enlarge the image to the size of the window when selected.  In other words, Zoom to Fit in 5.0.3 is only good for reducing an image to fill a smaller window but never for enlarging an image to fill a bigger window if that window is larger than the Actual Size of the image.
    Perhaps the problem is with Preview 5.0.3 failing to access com.apple.Preview.ImageSizingPresets.plist since removing all the Preview plists and launching the application anew does not recreate this particular plist.  Also, the modified date on the original com.apple.Preview.ImageSizingPresets.plist never seems to change.
    This is a damned annoying bug and should have been fixed when Snow Leopard was the standard.  In my opinion, the fact that this wasn't caught reveals Apple's slipping standards and a concentration on their growing market in mobile devices.  I feel I have a right to say this since I've been a loyal Mac user since the early 1980s.
    For those who suggest I move to Lion or beyond, you can keep the economy going with your new software purchases.  For now, I'm going to continue using Rosetta and my old, third-party applications in Snow Leopard.

  • Iphoto is automatically resizing all my pics

    after i edit my photos on iphoto, i like to post them on my blog, or send them to a friend. however, i've noticed that wherever i upload, and however i send them, they are automatically resized to a pretty small size. but when i view them on iphoto, they are at normal resolution and cover my entire screen. i don't have a problem with everything already being resized for me before i post online, that actually saves tons of time, but i was wondering where/how these settings can be adjusted so i can have larger resized pictures.

    There are a couple of places where you can set the image size when sharing your photographs. If you would like to email larger or even FULL-SIZE images, go through the normal process of emailing: 1) Select photos 2) Click Email button at bottom of window. When the dialog window comes up for email settings, there is a popup menu that allows you to pick three scaled sizes or actual size.
    Another option for exporting your photos is of course the Export function, which you get from the File menu. This will give you a dialog that allows you to select the size of the export image.
    When you export to iWeb's blog template, your image is scaled to the size of the image placeholder on the blog page. What's the secret of larger photos there? Well it is a bit tricky, but once you figure it out, it isn't so bad.
    1) Go to the blog page on which your photo appears. The photo will appear at the top of the page and have a frame around it.
    2) Select the frame around the image first. Click it "i" icon to bring up the inspector palette. Click on the little ruler icon on the inspector. There is a checkbox on the palette that says "Constrain proportions" You want to turn this off, so that you can resize one dimension if need be.
    3) Now select the actual image. If you want to size a single dimension, repeat the process you used in step 2 on the image frame. Note that the placeholder will distort the image if you stretch the image along one dimension. This is not a bad thing... you can fix this pretty easily.
    4) If you distorted the image in step 3 because of your desire of a different sized image frame, first press the Media button at the bottom of the window in iWeb.
    5) Scroll through and find the original image that you had exported from iWeb and that first showed up on the blog page.
    6) Drag that image into the placeholder and it will replace the stretched image, properly scaled and cropped.
    There ya go!
    If you find this helpful, or if it solves your issues, please indicate this by clicking in the appropriate icon in the header of this reply.

  • Resizing sgd window

    Hi
    Im using sgd on windows XP client. Usually i work on laptop attached to a docking station. When i initiate the session in my laptop the size of the sgd window fits laptop screen size. But When i connect the laptop to the docking station and use the monitor for seeing the sgd window it comes only abt half the size of the monitor ( i have 19" monitor)
    When i kill the session and reinitiate it comes to the size of the monitor but then if i see in laptop the vertical scroll bars appear and i have to scroll through the window.
    Horizontal resize is there but veritcal resize is disabled.
    Its very difficult to kill and restart the session each time i switch the screen. Is there a way that sgd automatically resizes according to the screen. Even Manual would be great if its something other than resarting session
    Thank You
    Girish

    You haven't provided much detail, but I'm going to hazard a guess that your laptop LCD resolution is around 1024x768 and your CRT is much higher and you're running a full desktop session in 'kiosk' mode.
    Unfortunately, there isn't a way to dynamically resize a running application.
    You could use a scalable kiosk application launched at the lower resolution, resulting in a 'zoomed' view on your CRT. Running seamless apps won't solve your problem - they rely on the desktop size remaining unchanged and will be displayed in IWM windows.

  • Unable to resize photoshop Window

    Hi all,
    I have a laptop and use a large external monitor at my work office. When I am not at work, and not using the monitor, I use the screen on the laptop.
    The problem is that Photoshop does not resize its windows to fit the laptop screen. Therefore, windows with layers extend below the screen (see attached). Since one cannot adjust the height of a window from its top (only its bottom), I can find no way to return it to being able to fit, and cannot access the icon buttons at the bottom of the window.
    Of course, I could trash preferences, or set up a new workspace, but that's quite a hassle of a work around when it seems a window should either automatically shrinkto the screen height, or at least give an option to be resized from its top.
    Any thoughts?
    Thanks!
    Photoshop CC 2014; Mac OSX 10.8.5

    PS. I should have mentioned I've tried:
    turning on/off application frame
    resizing photoshop application window (green button)
    restarting photoshop
    double-clicking panel name (but that only collapses it completely)
    making screen resolution higher to fit more stuff on screen (already maxed out)
    searching the internet for an answer, in this forum, and elsewhere

  • Automatic Resizing Problems

    I am having serious troubles with my components resizing automatically when the window is resized or the contents within the component change. Namely, tree and list components. Every time I add an element to a tree or list component, the container that the tree or list is placed in resizes to match the longest element within the tree or list. I have researched my Pure JFC Swing book from cover to cover trying to find a fix for this, and have had no luck. Can somebody help me remedy this problem?

    Ok, I haven't added anything to exit the system when you close the window. Also, I have chosen not to repeat any code for a JTree at all. It would take too long. This is code for a JList component. Try entering a really long e-mail and also a short one.
    class NameFrame extends JFrame{
         Container contentPane = getContentPane();
         public NameFrame(String title, int w, int h){
              super(title);
              setSize(w,h);
              contentPane.add(new NamePanel());
    class NamePanel extends JPanel implements ActionListener{
         JList list;
         JTextField email;
         JButton addButton;
         Container contentPane = getContentPane();
         Vector listData = new Vector();
         public NamePanel(){
              addButton = new JButton("Add");
              addButton.addActionListener(this);
              addButton.setActionCommand("Add");
              add(addButton);
              email = new JTextField("", 20);
              add(email);
              list = new JList();
              list.setVisibleRowCount(4);
              list.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
              list.setSelectionBackground(Color.blue);
              list.setSelectionForeground(Color.white);
              list.addListSelectionListener(this);
              JScrollPane sp = new JScrollPane(list, ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED);
              add(sp);
         public void actionPerformed(ActionEvent ae){
              String but = ae.getActionCommand();
              if(but.equals("Add")){
                   listData.addElement(email.getText());
                   list.setListData(listData);
                   email.setText("");
    class A{
         public static void main(String[] args){
              NameFrame nf = new NameFrame();
              nf.show();
    Then, click the window and watch it re-size to match the longest one. I don't like this, I would like to keep it the same size at all times no matter what size e-mail is entered.
    Your dilligence is greatly appreciated....

  • Automatically resizing the tray with respect to iView Size

    Hi,
    I want width of the tray should be automatically resized same as the width of the iView in page layout of the SAP EP.
    I have tried to set the same using "Width of the External Window" property of the iView from content administrator but it doesn't work.
    Any help??
    Thanks,
    Prashant

    hi
    Prashanth,
    you can set the size of the iView trays from the theme editor
    goto sys admin,
    portal display.
    theme editor
    select your theme
    under Complex elements
    iView trays
    but her too you can make it automatic or dynamic(changing the size according to the iViews).
    but can set the size of the trays...
    thas is it.
    Cheers.......

  • Menubar doesn't automatically resize, using scene builder

    Hi,
    I started playing around with the new scene builder. I love it!
    In the past I added the menubar into the top area of a border pane. If I resized the window to full screen, the menubar also automatically resized to full screen.
    It seems to me that scene builder doesn't support a border pane (scene builder use anchor pane).
    This is how it looks like if I resize the window:
    |__Menu__!
    |     
    |_______________
    And it should look like this:
    |__Menu_________!
    |     
    |_______________

    @Josef
    BorderPane support will be added in an upcoming Developer Preview build.
    In the mean-time, you can anchor the MenuBar:
    Select the MenuBar, go the Layout part of the Inspector and click on the Left and Right Anchors in the AnchorPane Constraints to activate them.

Maybe you are looking for

  • I am having trouble buying songs on Itunes.  When I hit "buy", nothing happens.  Any suggestions?

    I am having trouble buying songs on Itunes.  When I hit "buy", nothing happens.  Any suggestions?

  • Problem while creating Infopackage

    I have a custom datasource and I need to populate the data to 2 Infocubes. 1. Can I make use of same Infosource for 2 different cubes or should I create seperate datasource and infosource? 2. When I am creating Infopackage it is throwing me an error

  • About Table Maintance for An Table

    Hi All i would like create Table maintance for an table.kindly explain me how to create table maintance for an table...and what is the actual purpose of table maintance.. Thanks in advance.

  • Needed Details on GETTAB,SETTAB,CHETAB,RESTAB.

    Can anyone clearly state with an example of GETTAB,SETTAB,CHETAB,RESTAB in ECATT and the practical usage of where to use it. I have referred help.sap.com.Needed some more information. Thanks in advance.

  • CMSS 3D messing up the mu

    hello... well, in most cases the expand-upmix to surround sound works and sounds nice... since i got the new curse album (www.curse.de) i have to keep it turned off because its messing up "everything"... voices floating around the channels... sounds