JTabbed Pane - shows wrong content

Hello,
I created a TabbedPane with three tab panels , the first two contain one textarea, the third panel contains tw otextarea's.
When i run my application , the first panel is active but wen the content of the third panel, i have to click on another panel, when i then come back to the first one it's oke, Help please,
The code maybe it can help, something i overlooked
     tabPanel = new JTabbedPane();
     editPanel = new JPanel();
     editArea = new TextArea();
     editPanel.add(editArea);     
     tabPanel.addTab("Editor",null, editPanel,"ASM Editor");     
     listPanel = new JPanel();
     listArea = new TextArea();
     listPanel.add(listArea);
     tabPanel.addTab("List",null, listPanel,"*.lst file");
     controlPanel = new JPanel();      
     messageAreaOut = new TextArea();
     messageAreaIn = new TextArea();
     messageAreaIn.setEditable(false);
     controlPanel.add(messageAreaOut);
     controlPanel.add(messageAreaIn);
     tabPanel.addTab("Controller",null, controlPanel,"control Center");
     tabPanel.setSelectedIndex(0);
     tabPanel.repaint();
     add(tabPanel,"Center");

I don't understand this part :
but wen the content of the third panel, i have to
click on another panel, when i then come back to the
first one it's okeYou are mixing swing with awt, which is highly discouraged. It can lead to undesired results. PLease replace TextArea with JTextArea.

Similar Messages

  • Event shows wrong content in preview

    When I run the cursor over the events in iPhoto the preview shows completely different photo's than the actual content (the photo's which are in the event folder when you open it). How can I solve this problem?

    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Include the option to rebuild the thumbnails. It can take 3 or 4 goes for this to work

  • JTabbed pane customize title on selection

    Hi all
    i want to change the title font when a tab is selected.I add a ChangeListener to my JTabbed pane to intercept tab selection and to change font via html.
    I have some proble ex:
    if i click on tab4, it correctly change font but the tab2 take the title of the tab1 and so on.
    This is the code
              ChangeListener changeListener = new ChangeListener()
                   public void stateChanged(ChangeEvent changeEvent)
                        JTabbedPane sourceTabbedPane = (JTabbedPane) changeEvent.
                             getSource();
                        int index = sourceTabbedPane.getSelectedIndex();
                        for (int i = 0; i < sourceTabbedPane.getTabCount(); i++)
                             if (i == index)
                                  sourceTabbedPane.setTitleAt(i,
                                       "<html><b>" + sourceTabbedPane.getTitleAt(i) + "</html>");
                             else
                                  String desc  = sourceTabbedPane.
                                       getTitleAt(i).replaceAll("<html>", "").
                                       replaceAll("<b>", "").replaceAll("</html>", "");
                                  sourceTabbedPane.setTitleAt(i, desc);
                        System.out.println("***********************");
                        for (int i = 0; i < sourceTabbedPane.getTabCount(); i++)
                             System.out.println(sourceTabbedPane.getTitleAt(i));
              };The last system.out show me the correct tirtle, only the selected with html but on screen i see some mixed title.Where i'm wrong?

    I hope can you help me:
    public static void main(String[] arg)
            JTabbedPane jTabbedPane = new JTabbedPane();
         jTabbedPane.addTab("Tab1", new JPanel());
         jTabbedPane.addTab("Tab2", new JPanel());
         jTabbedPane.addTab("Tab3", new JPanel());
         jTabbedPane.addTab("Tab4", new JPanel());
         jTabbedPane.addTab("Tab5", new JPanel());
         jTabbedPane.addTab("Tab6", new JPanel());
         jTabbedPane.addTab("Tab7", new JPanel());
         jTabbedPane.addTab("Tab8", new JPanel());
         ChangeListener changeListener = new ChangeListener()
            public void stateChanged(ChangeEvent changeEvent)
              JTabbedPane sourceTabbedPane = (JTabbedPane) changeEvent.
              getSource();
              int index = sourceTabbedPane.getSelectedIndex();
              for (int i = 0; i < sourceTabbedPane.getTabCount(); i++)
                      if (i == index)
                           sourceTabbedPane.setTitleAt(i,
                        "<html><b>" + sourceTabbedPane.getTitleAt(i) + "</html>");
                   else
                        String desc = sourceTabbedPane.getTitleAt(i).replaceAll(
                        "<html>", "").
                        replaceAll("<b>", "").replaceAll("</html>", "");
                   sourceTabbedPane.setTitleAt(i, desc);
              System.out.println("***********************");
              for (int i = 0; i < sourceTabbedPane.getTabCount(); i++)
                   System.out.println(sourceTabbedPane.getTitleAt(i));
         jTabbedPane.addChangeListener(changeListener);
         JDialog dialog = new JDialog(new JFrame(),true);
         dialog.getContentPane().add(jTabbedPane);
         dialog.setPreferredSize(new Dimension(300,300));
         dialog.setSize(new Dimension(300,300));
         dialog.setVisible(true);
    }

  • 'Show JInternalFrame Contents While Dragging'

    hi,
    I have a question I have an application that has internal frames, Basically it is a MDI Application. I am using JDK 1.2.2 and windows 2000. The question is that when you go to the desktop right click properties and in Effects tab you uncheck the 'Show Window Contents While Dragging' checkBox. Now when I run my application and my parent window that is a frame pops up, if I drag the window i.e. my parent frame it doesn't dragg the contents onlt thw windows border is dragged, means it doesn't repaints that is fine. But when I try to drag one of the internal frame it shows me the contents inside the internalFrame being dragged too and I don't want to see these contents while internal frame is being dragged. So how can I make my application not to show the contents inside the JInternalFrames not to be shown while dragging the JInternalFrame. Any help is really appreciated.
    for an example I have added a code example to see the effect that I got from the forums just for an example to show. If you have unchecked the option 'Show Window Contents While Dragging' in Effects tab when you go to the desktop right click properties and the Effects Tab or in the controlPanel dblClick Display and go to Effects tab and uncheck this checkBox. Now run this example and see when you drag the main window contents inside it including JInternalFrame doesn't get dragged just the boundry of the dragging frame is shown. Now if you try to drag the JInternalFrame. Contents inside that are dragged too. And I don't want this behavior. I don't want to see the contents.
    /*************** MDITest ************/
    import javax.swing.*;
    * An application that displays a frame that
    * contains internal frames in an MDI type
    * interface.
    * @author Mike Foley
    public class MDITest extends Object {
    * Application entry point.
    * Create the frame, and display it.
    * @param args Command line parameter. Not used.
    public static void main( String args[] ) {
    try {
    UIManager.setLookAndFeel(
    "com.sun.java.swing.plaf.windows.WindowsLookAndFeel" );
    } catch( Exception ex ) {
    System.err.println( "Exception: " +
    ex.getLocalizedMessage() );
    JFrame frame = new MDIFrame( "MDI Test" );
    frame.pack();
    frame.setVisible( true );
    } // main
    } // MDITest
    /*********** MDIFrame.java ************/
    import java.awt.*;
    import java.awt.event.*;
    import java.io.Serializable;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    * A top-level frame. The frame configures itself
    * with a JDesktopPane in its content pane.
    * @author Mike Foley
    public class MDIFrame extends JFrame implements Serializable {
    * The desktop pane in our content pane.
    private JDesktopPane desktopPane;
    * MDIFrame, null constructor.
    public MDIFrame() {
    this( null );
    * MDIFrame, constructor.
    * @param title The title for the frame.
    public MDIFrame( String title ) {
    super( title );
    * Customize the frame for our application.
    protected void frameInit() {
    // Let the super create the panes.
    super.frameInit();
    JMenuBar menuBar = createMenu();
    setJMenuBar( menuBar );
    JToolBar toolBar = createToolBar();
    Container content = getContentPane();
    content.add( toolBar, BorderLayout.NORTH );
    desktopPane = new JDesktopPane();
    desktopPane.setPreferredSize( new Dimension( 400, 300 ) );
    content.add( desktopPane, BorderLayout.CENTER );
    } // frameInit
    * Create the menu for the frame.
    * <p>
    * @return The menu for the frame.
    protected JMenuBar createMenu() {
    JMenuBar menuBar = new JMenuBar();
    JMenu file = new JMenu( "File" );
    file.setMnemonic( KeyEvent.VK_F );
    JMenuItem item;
    file.add( new NewInternalFrameAction() );
    // file.add( new ExitAction() );
    menuBar.add( file );
    return( menuBar );
    } // createMenuBar
    * Create the toolbar for this frame.
    * <p>
    * @return The newly created toolbar.
    protected JToolBar createToolBar() {
    final JToolBar toolBar = new JToolBar();
    toolBar.setFloatable( false );
    toolBar.add( new NewInternalFrameAction() );
    // toolBar.add( new ExitAction() );
    return( toolBar );
    * Create an internal frame.
    * A JLabel is added to its content pane for an example
    * of content in the internal frame. However, any
    * JComponent may be used for content.
    * <p>
    * @return The newly created internal frame.
    public JInternalFrame createInternalFrame() {
    JInternalFrame internalFrame =
    new JInternalFrame( "Internal JLabel" );
    internalFrame.getContentPane().add(
    new JLabel( "Internal Frame Content" ) );
    internalFrame.setResizable( true );
    internalFrame.setClosable( true );
    internalFrame.setIconifiable( true );
    internalFrame.setMaximizable( true );
    internalFrame.pack();
    return( internalFrame );
    * An Action that creates a new internal frame and
    * adds it to this frame's desktop pane.
    public class NewInternalFrameAction extends AbstractAction {
    * NewInternalFrameAction, constructor.
    * Set the name and icon for this action.
    public NewInternalFrameAction() {
    super( "New", new ImageIcon( "new.gif" ) );
    * Perform the action, create an internal frame and
    * add it to the desktop pane.
    * <p>
    * @param e The event causing us to be called.
    public void actionPerformed( ActionEvent e ) {
    JInternalFrame internalFrame = createInternalFrame();
    desktopPane.add( internalFrame,
    JLayeredPane.DEFAULT_LAYER );
    } // NewInternalFrameAction
    } // MDIFrame
    I'll really appreciate for any help.
    Thank you

    try this:
    JDesktopPane desktopPane = new JDesktopPane();
    desktopPane.putClientProperty("JDesktopPane.dragMode", "outline");Both parameters passed to 'putClientProperty' must be strings.
    Hope this helps
    Riz

  • I have one out of five email address's with coxmail that opens with a blank inbox but other browsers show the content of the same inbox

    Question
    I have one out of five email address's with coxmail that opens with a blank inbox. Other browsers like opera or IE show the content of the same inbox. I've contacted cox but they tell me the problem is on my computer. I've used three different anti virus/malware scanners to eliminate all the bugs they can find. I need a firefox guru with suggestions. Thanks, Charles

    You can undo your permission changes. Probably the most relevant one is cookies. Try one or both of these methods:
    (1) Page Info > Permissions tab
    While viewing a page on the site:
    * right-click and choose View Page Info > Permissions
    * Alt+t (open the classic Tools menu) > Page Info > Permissions
    (2) about:permissions
    In a new tab, type or paste '''about:permissions''' and press Enter. Allow a few moments for the list on the left to populate, as this information needs to be extracted from a database.
    Then type or paste ''rcn''' in the search box above the list to filter it to the most relevant domains. When you highlight a domain, you can adjust its permissions in the right pane.
    Any luck?

  • I have multiple libraries in iPhoto. When I follow the instructions User/Pictures/iPhoto library/Show package contents/Master /Duplicate I have no problem. When I go thru the same sequence but with iPhoto Galapagos I cannot duplicate its master file. What

    I have multiple libraries in iPhoto. When I follow the instructions:  User/Pictures/iPhoto library/Show package contents/Master /Duplicate I have no problem importing these image. When I choose the file titled...Pictures/iPhoto Galapagos I am unable to show package contents/Master and duplicate the images in this file. What am I doing wrong?
    Thanks

    have multiple libraries in iPhoto. When I follow the instructions:  User/Pictures/iPhoto library/Show package contents/Master /Duplicate I have no problem importing these image. When I choose the file titled...Pictures/iPhoto Galapagos I am unable to show package contents/Master and duplicate the images in this file. What am I doing wrong?
    Thanks

  • JCombobox on a jtabbed pane, AND Choice on jtabbed pane problems

    I have a Choice on a jtabbed pane, on a panel that isn't showing when the jtabbed pane is made visible. The Choice on the hidden pane is "bleeding" through to the first tabbed panel. help!
    If I click on the second tabbed panel (where the Choice is), and then click on the first tabbed panel, the Choice becomes hidden like it is supposed to.
    AND, I have a JComboBox on a JTabbedPane, it works for the most part, but when you click on it, the scrollbox underneath it doesn't appear! Instead, a grey box appears below it. Help!

    I was having similar problems when I was working with JFrames, Anything not covered by a piece of GUI would show other parts of my program (like the progress bar or buttons and stuff).
    Anyway, it went away when I used the setBackground() method. My guess is that using this forces the container to be opaque or something. Anyway, it worked for me, maybe it will work for you also.
    Steve

  • "Show Package Content" organization ... or lack thereof.

    I have been using iPhoto on and off again since 2004. Over the years we have updated our computer various times, so the pictures have been constantly moved around from iPhoto '04 to '06 to '08 to'09. My husband has also 'backed up' my photos by dropping them into an external hard drive. Plus, I occasionally used an old PC to store pictures, and those too were put onto the hard drive. In the end, that meant that we had over 26,000 photos, mostly duplicates, on our hard drive.
    This month I finally went through all those pictures, deleted duplicates, and imported them all to iPhoto '09. I organized them by albums, and named and dated everything. (Some of the pictures were placed under the wrong date because of either camera setting problems or because they were edited in Photoshop and the saved with the editing date.)
    So I just cleared my hard drive and went to move my newly organized iPhoto files to the hard drive, but I'm having issues. When I right click the iPhoto icon and select "Show Package Contents" I see all sorts of folders and junk. Frankly, I don't understand most of it. But I can see that there are pictures under the files "Data", "Data.noindex","Modified", and "Originals". The problem is this: the files aren't organized at all in there! I guess I expected them to be organized either like they were in iPhoto (the way I just did them) or like they used to be in old iPhotos (you know, with the years, then 1-12 for the months, then the numbers for the days, etc.) Instead, they are organized under the old dates, folders with one picture will not have any other pictures that were taken at the same time, pictures that I deleted will show up, etc. (And yes, I did empty the iPhoto trash.) I'm just wondering where on earth the organization is, and if I can trust that everything is in there when I move it to my hard drive.

    What if I decide in the future that I don't want to use iPhoto? Or what if I want to burn all these files onto a cd for others to use that don't have iPhoto?
    Simply select the photo(s) in iPhoto and export (file menu ==> export) and use the photos however you want - quick and simple - your photos are always available for any use
    Do I have to save all the files externally as well so that the pictures are actually organized outside of iPhoto?
    You can but it is a waste of time and disk IMHO since they are always readily available as describe above
    LN

  • Photos Missing from Original's Show Package Content

    Because I still have some photos with the ! over them when clicked, I decided to make a new library with the originals from the iPhoto Show Package Contents.
    I moved the existing library folder to the desktop and opened the library package with a control-click, clicked on "Originals". However, when I looked at the contents of "Originals" that the menu listed, the more recent additions to the library where not displayed in the menu.
    I placed the library back in "Finder/Pictures" and opened iPhoto again. Sure enough, the most recent photos that I had added to the library appeared in iPhoto.
    How can I get those most recently added photos to display in the originals so that I can create a new library?
    Oh yes, I did not make any changes at any time!
    Thanks for your help.
    Vernon

    If you want to create a new library with all of the photos in your current library download and use iPhoto Library Manager to rebuild the library. This method will keep the metadata intact. Here's how:
    Using iPhoto Library Manager to Rebuild Your iPhoto Library
    1 -Download iPhoto Library Manager and launch.
    2 -Click on the Add Library button, navigate to your User/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File->Rebuild Library menu option
    4 - In the next window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be untouched for further attempts at fixing or in case the rebuilt library is not satisfactory.
    Control click on one of the photos that you can't fine in the Originals folder and select "Show File" in the contextual menu. You will be taken to the folder that contains the photo. If the photo is displayed you can check to see where it's located.
    If you experience the "!" again there are two methods to recover:
    Try the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library. Select all options.
    Fix #2
    Rebuild the library using iPhoto Library Manager as follows:
    Using iPhoto Library Manager to Rebuild Your iPhoto Library
    1 -Download iPhoto Library Manager and launch.
    2 -Click on the Add Library button, navigate to your User/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File->Rebuild Library menu option
    4 - In the next window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be untouched for further attempts at fixing or in case the rebuilt library is not satisfactory.

  • Smart Collection showing incorrect contents

    Hi,
    Another oddity with custom metadata
    I have several Smart Collections set up, filtering on custom metadata. I'm having a problem with one in particular which, after updating an unrelated field, shows the wrong contents.
    It filters on two string fields and an enumerated field:
    - string Reference contains "0 1 2 3 4 5 6 7 ..."
    - string Status doesn't contain "Copy"
    - enum Licence is "Unset", where "Unset" is defined as "nil".
    On loading Lightroom, this shows what it should. However, I also have a function called from a menu which updates a *different* enumerated field, setting it's value to one of nil, '0' or '1'. After running this function, this smart collection shows the same contents as another Smart Collection - coincidentally the next one in the list. The second filter is:
    - enum Sync is "Yes"
    - enum Sync is not "Unknown"
    - string Status doesn't contain "Copy".
    The additional "is not unknown" is needed because the first line returns images for both "Yes" and "Unknown" - data values "1" and nil respectively.
    Looks to me as though there's a problem with smart filters and enumerated fields with nil values. Restarting Lightroom restores the contents of the first collection to what they should be.
    Cheers,
    Jim

    I don't have the option of "title dosn't contain words", my option is "Title" and "doesnt contain", i.e. without the word "words". There is an option "contains words" but not "doesn't contain words".
    I have the same smart collection that works well. My parameters are like this:
    You could also use lower case letters in the third field.
    You don't need the first two lines. They constrain the smart Collection to a certain folder and image files that are not JPG.
    PS. Oh, I see. You put "words" in the third field? That doesn't work. Then all images with titles that doesn't contain the word "words" will be displayed - probably all.

  • "Show Package Contents" not available

    Hi all
    I just downloaded the Common Criteria Toolset from here:
    http://www.apple.com/support/downloads/commoncriteriatoolsfor105.html
    I use Mac OS X 10.5 on a MacBook PRO 2.4.
    I am not able to choose "Show Package Contents" from the Finder by right clicking the file. Instead I have to open the package in Installer.app and let it show the files with cmd-i.
    This is not the first package that shows this behaviour. Older packages mostly work fine though.
    Can someone enlighten me, what has changed here, or how I get the Finder option back?
    --greg

    Hi,
    i might be wrong, but I don't remember ever to have seen this option with installation packages (.pkg), only with installed apps. For a .pkg there's only cmd+i when opened with Installer.app. Maybe "Show Package Contents" existed for pkgs earlier, but that must've been a while ago. At least I can verify that the option is not there, so it's not a problem with your system.
    Björn

  • Music shows "no content"

    After using iPod for a few months and downloading music successfully from iTunes, now it shows "no content" when I go to music.  I have synced with iTunes and it shows no problem.  It has also been updated.  Am I doing something wrong?  Nothing has changed concerning the procedures: I am using iTunes the same way that worked before, but the iPod shows no music.
    Thanks for any help.
    JJ

    Some users have reported that this also works after updating to 4.3.2.
    Fix for “No Content” on iPhone & iPod after iOS 4.2.1 update

  • Changed apple password but in iphone still it shows wrong

    i wants to erase data on my Iphone, but as i press the Erase all content in iphone for resetting, shows wrong password popup.
    i already changed my password several times but i don know why in Iphone the new password is not valid.
    i need your support .

    Just to confirm is it asking for passcode or Apple ID password?
    If it is asking for the Apple ID password then you have Find My iPhone enabled in Settings>iCloud. Make sure the Apple ID is correct in Settings>iCloud and that you are providing the correct password for that Apple ID.

  • Apple mail doesn't show mail content when selected?

    I have done nothing new or strange with this application but since a few days ago I couldn't see mail content when I selected the emails.
    I can see the new emails It doesn't show their content when I select them. It simply says no message selected.
    Also when I double click to open the mail on a new page the application crashes. Any ideas? This is so frustrating!
    Btw, I'm using a Macbook Pro.

    Quit Mail. Force quit if necessary.
    Back up all data. That means you know you can restore the Mail database, no matter what happens.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Mail/V2/MailData
    Copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
              Go ▹ Go to Folder
    from the menu bar. Paste into the box that opens by pressing command-V, then press return.
    A folder window will open. Inside it there should be files with names as follows:
              Envelope Index
              ExternalUpdates.storedata
    Move those files to the Desktop, leaving the window open. Other files in the folder may have longer names that begin as above. Move those files, if any, to the Trash.
    Relaunch Mail. It should prompt you to re-import your messages. You may get a warning that the index is damaged and that Mail has to quit. Click OK. Typically, the process takes a few minutes, but it may take hours if you have gigantic mailboxes. In that case, you may be able to speed things up by temporarily adding your home folder to the Privacy list in the Spotlight preference pane. Remove it when Mail has finished importing.
    Test. If Mail now works as expected, you can delete the files you moved to the Desktop. Otherwise, post your results.

  • LR 5.3 showing wrong thumbnails

    I have been running LR 5.3 smoothly for a while but a couple of minutes ago LR started to show wrong thumbnails, it shows thumbnails from a delete Snapshot. I have tried purging my cache but nothing happens. I have upgraded from LR 3 to LR 3.5  Ideas ? This is my system:
    Lightroom version: 5.3 [938183]
    Operating system: Windows 7 Home Premium Edition
    Version: 6.1 [7601]
    Application architecture: x64
    System architecture: x64
    Logical processor count: 2
    Processor speed: 1.9 GHz
    Built-in memory: 3003.1 MB
    Real memory available to Lightroom: 3003.1 MB
    Real memory used by Lightroom: 912.9 MB (30.4%)
    Virtual memory used by Lightroom: 901.7 MB
    Memory cache size: 364.0 MB
    Maximum thread count used by Camera Raw: 2
    System DPI setting: 96 DPI
    Desktop composition enabled: Yes
    Displays: 1) 1366x768
    Application folder: C:\Program Files\Adobe\Adobe Photoshop Lightroom 5.3
    Library Path: C:\Users\User\Pictures\Lightroom\Lightroom 5 Catalog.lrcat
    Settings Folder: C:\Users\User\AppData\Roaming\Adobe\Lightroom
    Installed Plugins:
    1) 500px
    2) Behance
    3) Canon Tether Plugin
    4) Facebook
    5) Flickr
    6) Leica Tether Plugin
    7) Nikon Tether Plugin
    8) SmugMug
    Config.lua flags: None
    Adapter #1: Vendor : 8086
        Device : 2a42
        Subsystem : 360b103c
        Revision : 7
        Video Memory : 64
    AudioDeviceIOBlockSize: 1024
    AudioDeviceName: Speakers (Conexant High Definition SmartAudio 221)
    AudioDeviceNumberOfChannels: 2
    AudioDeviceSampleRate: 44100
    Build: LR5x89
    CardID: 10818
    Direct2DEnabled: false
    GPUDevice: D3D
    MaxTexture2DSize: 8192
    OGLEnabled: true
    Renderer: Mobile Intel(R) 4 Series Express Chipset Family
    ShaderModel: 10.0
    Vendor: Intel
    VendorID: 32902
    Version: 8086:2a42:360b103c:0007

    I have had this problem also ever since I updated to 5.3,  I think it is a major bug!
    At random the preview window on the left doesnt show the preview of the presets anymore when I hover them, and when I click back and forth to other images it suddenly starts working again, its a very annoying problem and I cannot believe that Adobe isnt aware of it yet!
    Marcel

Maybe you are looking for