How not to automatically resize updated images

I'm stumped... I have all my images placed from illustrator at 100%. When I modify the illustrator files, and update the images in InDesign, not only does it resize (up or down), but it moves its x- and - placement coordinates, so I have to go back and double check each image every time updates are made. How do I turn this feature off or prevent it from happening?
tia,
susan

If you change the dimension of your graphic in Illustrator, InDesign auto-detects the edges and resizes it, which is throwing off your percentage.
There is no way to turn this feature off, but a work-around is to create a static box behind your graphic in Illustrator. That way, as you change the dimension of your graphic, InDesign will fit to the box instead of the edge of your graphic.
As long as your graphic stays inside the box, this will avoid skewing your graphic and keep it in the same place.
http://www.eertmoed.com

Similar Messages

  • Problem with photoshop automatically resizing placed images

    Hi,
    I have PS6. I have images that are 144x100 px. When I use file>place ps resizes the image to 108x75. I can't figure out how to make ps quit resizing my pictures. Anybody know?
    Thanks

    When Pasting, Dragging, copying and placing an image Photoshop will copy all of the image being duplicated original pixels to preserve the image pixel quality the image quality.  If the receiving document has a different DPI resolution the image may look a different size in the  receiving documents because of the number of pixels added to the document that has a lower or higher dpi resolution.  If the image is being placed in if the image pixels exceeds the receiving documents canvas size. Photoshop may scale the smart object layer to fit within the canvas that depends on the users Photoshop's preference.  All of the images original pixels are still there in the embedded object.   In my Photoshop Collage Scripts  I always transform all placed images to 100% size  incase Photoshop scaled the placed image.  For you can not get the scale percent Photoshop used.  Once I know I have the image at 100% size I can use the layer bounds to get the actual number of pixels there are in the placed image.  Once I know that I can calculate the scale I need to use to resize the image to fit the area being populated in the collage template.   Once resized I center it into place and mask off any excess image pixels.

  • 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 ibooks author automatically resize all images of a gallery?

    The point here is, I have more than one graphic files (not pictures taken by a camera) to put into one gallery widget of an iBooks Author document. Unfortunately, not all figures have the same height/width aspect ratio. If I put them together in the gallery, some of them have cropped widths others have cropped heights. Impossible to losslessly fit all into the same gallery. If I scale alle figures to the same width, the result is acceptable for the figure with the highest heigth, all other figures are cropped again.
    Well in a first time, I was not that much concerned, but the iBooks Author Quality check refused to publish such eBooks, where some picutes appear cropped in the small view (not in the full-screen view).
    Now, why is the iBA software automatically sizing all images of a gallery w.r.t. the center of an image? It would be of much more help, to leave some white background boarders on images of un-equal height, as long as the width of all images is exactly the same. The crop-pan function would then be useful to individually place a smaller-than-the-rest image in that frame of its larger precedecor image.
    Can this autosize function be turned off? Am I really forced to paste smaller images into a white image of the maximum height/width of the galery's largest image?

    If you have differently shaped (height/width) images that you want to place in one gallery....
    The first image you place will determine the shape (max height and width) of your gallery mask, so choose it wisely.
    Before you add each image to the gallery go to photoshop and:
    1. Size the IMAGE to be at the max height OR width of your gallery mask -- do this if you want at least one dimension (height or width) to fit all the way across or up and down in the gallery mask.
    2. Size the CANVAS to the same height and width of your first image (the size of your gallery mask).
    I hope this makes sense and is helpful. Yes, it's ridiculous, but it's the only way I found to make images of different dimensions fit in a gallery.

  • How to attached automatic flash update to website

    Our website doesn't contain all the text for buttons when
    opened on certain computers, i'm not sure but it maybe because the
    computers in question do not have the latest flash installed. If
    this is the case i would like to incorporate an automatic flash
    update to the site so that when people open the site it works
    properly. I would really appreciate any advice. Cheers

    You haven't yet tried: System Preferences>Software Update>Scheduled Check>Uncheck "Check for updates" ?

  • How do I stop automatic resizing of images?

    firefox automatically rescales pictures to fit my display. However, I generally prefer the pictures to be full size, unless they are way too big. I have a big screen and prefer to take advantage of the large amount of available real estate.

    Set the pref '''browser.enable_automatic_image_resizing''' to false on the about:config page.
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />

  • How to undo Firefox 5 in Win 7 and in XP? Generally, how to stop automatic Firefox updates?

    Firefox 5 has reduced toolbar and other services on both of my 2 computers -- a Win 7 and an XP3. Would like to go back to version 4, stop automatic updates in Firefox.

    That is a message about '''IE''', not about Firefox. The Mozilla/4.0 in your UserAgent string and in that message pertains to Trident rendering engine in Internet Explorer.
    http://en.wikipedia.org/wiki/Mozilla
    http://ask.metafilter.com/12219/Why-is-it-that-Internet-Explorer-is-referred-to-as-Mozilla40-And-why-is-it-that-Safari-Opera-et-al-are-referred-to-as-Mozilla50

  • Need help with automatic resizing of images

    I am working with a liquid template in dreamweaver and when I insert my banner image and preview the page, the image stays the same size while the page template expands with the screen resolution.
    How can I set the image so it automatically expands with the page?

    Expanding an image in this way isn't really the best way of doing things, because depending on the image it can get very distorted when it's increased or decreased in size.  You are better off selecting a background colour and blending the image into that, so that when the browser window is increased you see the majority of the image, but on larger monitors, the image is blending into the background on either side of that image.
    There is a technique that may make this possible - I did read something about it at one point, but didn't save the URL.  However, the above method is probably the most reliable way of doing what you want.

  • How to Disable Automatic Java Update

    HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Update\Policy 
    EnableJavaUpdate            Type=REG_DWORD               Data=0x000000000 (1)     Replace 1 with 0
    and you are good.

    I believe that you wanted to share an information with the community. If yes, Microsoft have Technet Wiki for similar sharing: http://social.technet.microsoft.com/wiki/
    This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.
    Get Active Directory User Last Logon
    Create an Active Directory test domain similar to the production one
    Management of test accounts in an Active Directory production domain - Part I
    Management of test accounts in an Active Directory production domain - Part II
    Management of test accounts in an Active Directory production domain - Part III
    Reset Active Directory user password

  • For all Jedi Masters: How can I update images in ScrollingImagePanels ?????

    I have posted an old topic but now i understand my error.
    Please people!!!! I think it is very simple, but i am not getting results at updating images in ScrollingImagePanels.
    My ScrollingImagePanel in a JInternalFrame, and the JInternalFrame is in a JDesktopPane.
    In my code i try to remove the actual ScrollingImagePanel and create a new other. But the are no references to the ScrollingImagePanel in the else block. The code doesn't compile. Please, see the code below for a good compreension:
    public void atualiza(){
    if (ziboro == false){ //no images displayed yet
         ziboro = true;     
         JInternalFrame teste = new JInternalFrame("teste",true,true,true,true);
    teste.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
    teste.addInternalFrameListener(this);
    teste.setLocation(10,10);
    teste.setSize(new Dimension(200,200));
    ScrollingImagePanel FlipVPanel = new ScrollingImagePanel(imagemBufa, 800, 800);
    teste.getContentPane().add(FlipVPanel);
    displayPanel.add(teste);
    teste.setVisible(true);
    teste.moveToFront(); return;
    else{
    System.out.println("Jedi!");
    teste.getContentPane().remove(FlipVPanel);//This part is my problem
    ScrollingImagePanel FlipVPanel = new ScrollingImagePanel(imagemBufa, 800, 800);
    teste.getContentPane().add(FlipVPanel);
    teste.setVisible(true);
    teste.moveToFront();
    return;
    Thank you for your atention!
    Poxa se vc entende portugu�s e quiser e souber me ajudar eu ia ficar agradecido pra caramba!

    Ah! I'm sorry. Probably I couldn't explain you my problem. So let me give you some background.
    We used to generate the preview of all the pages in an InDesign document using the export functionality. But we found that, it's a slow process especially when the document uses images that are huge in size (can even be 2 or more GB). So we decided that since InDesign already has the preview (we can see this even the image link is broken), why shouldn't we use this?
    But while doing this, I realized that I can't get the preview of other pages except the first page.
    So, can we say the script can't generate preview images of all the pages (I'm not talking about the individual images placed in a page), or the script is OK but it can do that only for CS5?
    Best Regards,
    -Arafat

  • Please Great Masters: how to update images in ScrollingImagePanels ????????

    I have posted an old topic but now i understand my error.
    Please people!!!! I think it is very simple, but i am not getting results at updating images in ScrollingImagePanels.
    My ScrollingImagePanel in a JInternalFrame, and the JInternalFrame is in a JDesktopPane.
    In my code i try to remove the actual ScrollingImagePanel and create a new other. But the are no references to the ScrollingImagePanel in the else block. The code doesn't compile. Please, see the code below for a good compreension:
    public void atualiza(){
    if (ziboro == false){ //no images displayed yet
    ziboro = true;
    JInternalFrame teste = new JInternalFrame("teste",true,true,true,true);
    teste.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
    teste.addInternalFrameListener(this);
    teste.setLocation(10,10);
    teste.setSize(new Dimension(200,200));
    ScrollingImagePanel FlipVPanel = new ScrollingImagePanel(imagemBufa, 800, 800);
    teste.getContentPane().add(FlipVPanel);
    displayPanel.add(teste);
    teste.setVisible(true);
    teste.moveToFront(); return;
    else{
    System.out.println("Jedi!");
    teste.getContentPane().remove(FlipVPanel);//This part is my problem
    ScrollingImagePanel FlipVPanel = new ScrollingImagePanel(imagemBufa, 800, 800);
    teste.getContentPane().add(FlipVPanel);
    teste.setVisible(true);
    teste.moveToFront();
    return;
    Thank you for your atention!
    Poxa se vc entende portugu�s e quiser e souber me ajudar eu ia ficar agradecido pra caramba!

    I have posted an old topic but now i understand my
    error.
    Please people!!!! I think it is very simple, but i am
    not getting results at updating images in
    ScrollingImagePanels.
    My ScrollingImagePanel in a JInternalFrame, and the
    JInternalFrame is in a JDesktopPane.
    In my code i try to remove the actual
    ScrollingImagePanel and create a new other. But the
    are no references to the ScrollingImagePanel in the
    else block. The code doesn't compile. Please, see the
    code below for a good compreension:
    public void atualiza(){
    if (ziboro == false){ //no images displayed yet
    ziboro = true;
    JInternalFrame teste = new
    JInternalFrame("teste",true,true,true,true);
    teste.setDefaultCloseOperation(WindowConstants.DISPOSE_
    N_CLOSE);
    teste.addInternalFrameListener(this);
    teste.setLocation(10,10);
    teste.setSize(new Dimension(200,200));
    ScrollingImagePanel FlipVPanel = new
    ScrollingImagePanel(imagemBufa, 800, 800);
    teste.getContentPane().add(FlipVPanel);
    displayPanel.add(teste);
    teste.setVisible(true);
    teste.moveToFront(); return;
    else{
    System.out.println("Jedi!");
    teste.getContentPane().remove(FlipVPanel);//This part
    is my problem
    ScrollingImagePanel FlipVPanel = new
    ScrollingImagePanel(imagemBufa, 800, 800);
    teste.getContentPane().add(FlipVPanel);
    teste.setVisible(true);
    teste.moveToFront();
    return;
    Thank you for your atention!
    Poxa se vc entende portugu�s e quiser e souber me
    ajudar eu ia ficar agradecido pra caramba! Ol� Ninja.
    N�o testei isto que te vou dizer, mas parece-me que o problema � o seguinte:
    Tens um if onde declaras a vari�vel local "ScrollingImagePanel FlipVPanel". Ora, o que acontece � isto, "if(ziboro == true)" o programa salta para o "else", ou seja, n�o leu "ScrollingImagePanel FlipVPanel = ...", logo n�o sabe o que � o "FlipVPanel". A solu��o passa, parece-me, por definir FlipVPanel a um n�vel mais elevado, talvez como membro da classe.
    Experimenta isto; se n�o resultar, avisa.

  • How to automatically save an image...

    how can i automatically save an image coming through an URL like the one below.
    http://localhost:88/product/images/thumbnail/12345678t.jpg

    actually, we have a tool which creates thumbnail, medium and lot of other images on the fly.
    We wanted to change the process so that we can save the images to a physical directory and cache the images instead of creating them on the fly

  • Automated Resizing of Images in Photoshop Elements 9

    I recently upgraded my wife's Photoshop Elements from version 6 to version 9.  However, there is one feature from version 6 that seems to not work in version 9.  When she drags an image into a blank template (of any size), the image drags in to the template in the full size.  So if the images are three times larger than the template, she has to resize every image after she drags them in which is a pain for her.  Previously in PSE6, when she dragged the image into the blank template, the program would automatically resize the image to fit within the window.  Then she could resize the iamge if she needed to.  It seems that there should be a setting for this, but I am coming up with nothing.  Anybody know of a solution to this?

    You didn't say if your on mac or windows, so you may not be familar
    with the elements organizer. The following workaround works on windows pse9,
    if your on a mac it may also.
    1. In the elements organizer, select (highlight) the photos you want to use.
        (don't open the photos into the elements editor, just select them)
    2. Back in the elements editor, with the project bin open, choose
       Show Files Selected in the Organizer.
    3. When you drag the photos from the project bin into your document, they should resize
       similar to pse6.
       If they are still to big, step back one step in the undo history panel from Transform the Frame to Place.
    MTSTUNER

  • Resize html image in email signature

    Hi, I have been trying to insert my company logo in my email signature on Outlook Client 2013 but the results have been disappointing. Would greatly appreciate your assistance. Thank you in advance!
    My company logo is in png-format. Its dimensions are 1221 x 374 px, and has a dpi of192. Its size is 37.9 KB. 
    I have read from various online sources that it is better to resize the image such that it is not larger than 10 KB.
    However, I do not want to resize the image (to ideal width: 150 px) before inserting it in the signature editor, because doing that is bound to degrade the resolution of the image, no matter how good the photo editor is. I have tried gimp and various
    photo editors, but the resulting picture quality is poor and grainy. I can barely make out the text in the logo. 
    These are the 4 methods that I have tried:
    1. I followed this YouTube tutorial. I insert the image in signature editor. The location of the image is at my Desktop. Save and close. 
    I insert the signature in a new email. The resulting image is large and appears according to its original dimensions in my signature. So I resize the image in the inserted email signature, copy that resized image, then paste it in the signature
    editor. The resized image will appear, with reduced dimensions. I save and close the signature editor.
    Then, I insert the signature again in the email. The dimensions of the image are correct and they appear perfect. So I do a test by sending an email to myself. When I view the email on Outlook Client, the image looks perfect. However, on Outlook
    Web App, the image is extremely large and out of place. I have been racking my brains on how to solve this problem.
    2. Same as step 1. But instead of inserting the logo from my Desktop, I inserted the logo located on the web by typing its URL in full. I used: Insert > Link to File.
    However, the same problem appears. The image in the send email looks great on Outlook Client, but too large on Outlook Web App.
    3. Re-render the image to 96 dpi using IrfanView. I read from this source that Outlook will rescale any image that is not 96 dpi.
    Tried Step 1 again. But image size in Outlook Web App is too large again.
    4. I followed the steps in this link to create a HTML email signature. I used an online WYSIWYG HTML editor
    to generate the HTML code. I realised that altering the height and width of the image in the html changes the size of the image only in the WYSIWYG editor. I believe that Outlook Client overrides all provided image dimensions.
    Thank you so much for your help!

    Hi Joy,
    Try this.
    Compose the signature in Outlook, insert the original image, resize it to the correct size, by dragging the image using mouse.
    Compress using inbuilt Outlook tool, this should not degrade the quality of the image much.
    Click the picture or pictures that you want to change the resolution for.
    Under Picture Tools, on the Format tab, in the
    Adjust group, click Compress Pictures.
    If you do not see the Picture Tools and Format tabs, make sure that you selected a picture. You may have to double-click the picture to select it and open the
    Format tab.
    To change the resolution for the selected pictures only and not all of the pictures in the document, select the
    Apply only to this picture check box.
    Under Target output, click the resolution that you want.
    Now, copy all and create a new Signature out of this.
    Send out an email with this new signature and see if it works on OWA.
    Ensure you are checking it on the same PC and the Web browser is on 100% zoom level.
    In my case its appearing slightly smaller on Browser then on PC. Check if its same on different PCs as well.
    Regards,
    Satyajit
    Please “Vote As Helpful”
    if you find my contribution useful or “Mark As Answer” if it does answer your question. That will encourage me - and others - to take time out to help you.

  • Automatic Check updation through Payment

    Dear Friends,
    How to do Automatic check updation through payment please give the process steps and Tcode
    with regards
    Raghavendra.

    Hi,
    Create Check lot in FCHI
    Then make the Payment through F-58.
    In Initial screen given company code, Payment Method,house bank, account id check lot then press payment.
    Automatically the check number will be allotted from check lot sequentially.
    Do not forget to manually fill the assignment field with check number for BRS
    Edited by: lolu jo on Oct 28, 2011 3:53 PM

Maybe you are looking for

  • Error with Interactive Report Query

    Hi, using apex 4.1 on 11.2.0.1 i have the following query in an IR: select     * from     v_dialer_egn where dtstart between :P200_STARTDATE and  :P200_ENDDATEwhen i submit the query,the following error returns: ORA-28500: connection from ORACLE to a

  • Jerky video within CS 5.02

    I had this issue within the original CS5.  Video seems to drop a frame every 2 or 3 seconds, both on older Premiere projects and on new one.  Source is HDV and this issue occurs both with MPEG captures from my Canon XH-A1 and with earlier clips captu

  • Using multiple SSID with AP 1100 (standalone mode).

    Hi, need to configure 2 SSID on the same 1100 AP: open authentication and WPA2. It's possible to configure these 2 SSID without configuring VLAN's ? On CCO I've read the following: http://www.cisco.com/en/US/products/hw/wireless/ps430/products_qanda_

  • How do i fix a error code 29

    why wont itunes let me restore and update my iphone 4s it keeps giving me error code [29]

  • GI to Cost Center Report

    Dear All, is there any standard report available for Goods Issue to cost centers periodically. Regards, qsm sap