My Flash Pro CC 2014 freezes while I'm working every single time and I can't figure out why

I just bought Flash Pro CC about a month ago, and every time I open it and start using it, it freezes and I can't click on anything in the program or even close out of it normally.  I have to use Task Manager and force it closed.  I doubt that its my hardware, as I ran previous Flash Pros on it in the past with no problem.  Is anyone else having this issue?

You might try to remove the preferences file from Flash, but I don't think that will solve the problem. You may need to resort to a clean installation: Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

Similar Messages

  • My Macbook Pro 2014 ran out of battery while mid-slideshow. Now the slideshow won't skip through photos and I can't figure out why? Macbook Pro 2014 13-inch Intel i5 8GB RAM 128GB flash, iPhoto library is on external HDD

    Macbook Pro 2014
    13-inch
    Intel i5
    8GB RAM
    128GB flash SSD,
    Integrated Graphics
    iPhoto library is on external HDD
    I was in a slideshow, with around 1,911 photos in it. About halfway through, my Macbook ran out of battery. Now when I restarted and charged the Macbook and reopened iPhoto, the slideshow won't advance through photos, and I can't figure out any reason why it would do this.
    I thought it may be corrupted, so I deleted and reinstalled iPhoto library, iPhoto itself, and disconnected and reconnected my external HDD.
    This didn't work, the photos still won't advance.
    I don't know any reason why this would be happening, and there is ample space on my internal drive.
    I'm happy to provide more information if needed!
    Many Thanks,
    James

    Make a few tests, James, to narrow down the problem and find out, if the slideshow is corrupted, your iPhoto Library, or settings in your account.
    To test, if only your slideshow has a problem, create a new slideshow, just for testing. Just use "File > New Slideshow" and add a few photos. Does this slideshow play correctly?
    If the test slideshow does not play either, create a new iPhoto Library. Use the File menu in iPhoto: File > Switch to library > Create New. Import a few photos and create a slideshow.  Does it play?
    If even a new library does not solve the problem, test in a different user account (see this document:  Isolating an issue by using another user account - Apple Support):   
    This process involves creating a new user account, logging in to it, and testing for the issue.
    Create a new standard or admin user account in Users & Groups preferences.
    Use these instructions for OS X Mavericks.
    See these instructions for OS X Mountain Lion.
    See this video, or these instructions for OS X Lion.
    Optional: If you have any specific files you wish to test with, copy (don't move) those items to the /Users/Shared folder in the Finder.
    Log out of your current user account by choosing Log Out from the Apple () menu.
    Log in with the new account you created.
    Attempt to reproduce the issue you were seeing in your regular user account.
    After you have completed testing, log out of the test account by choosing Log Out from the Apple () menu.
    Log in as your regular account.
    After you have completed all testing with the test user account, you may want to delete it. You can delete an account in the Users & Groups pane of System Preferences.
    Note: Prior to deleting a test account, make sure you are completely done with it. If you have files in the Guest User you wish to keep, you should copy them to the /Users/Shared folder .
    If you should find, that slideshows only play in a new user account, post back.

  • My MacBook Pro wont turn on and I can't figure out why...

    Does anyone know what can be wrong with my Mac Book Pro if I attempt to turn it on and it has a grey screen with a small apple and turns off on its own?

    First try the steps in this knowledge base article.

  • My macbook pro will not play a video without pausing every 11 seconds. PLEASE help me figure out what is wrong. very frustrating

    my macbook pro will not play a video without pausing every 11 seconds. PLEASE help me figure out what is wrong. very frustrating. I have already tried restarting

    buckmacie,
    has the video been completely downloaded onto your MacBook Pro when you start to play it? Or are you playing it while it downloads, AKA streaming it?

  • Newbie: Can't figure out why GUI is freezing

    Hello, I am trying to make my very first program with Swing, and I cannot figure out why it freezes and what I need to do to prevent that from happening. This program simulates this game of life. If a button is selected (alive) and 2 or 3 (only) buttons surrounding it are also selected, then the button selected gets to stay selected. Otherwise it dies. Also, if an empty button is surrounded by exactly 3 selected button, it also becomes alive. Here is the code:
    package learn;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Life {
          * @author Michael Keselman
         final JLabel label = new JLabel("Empty");
         final static String LOOKANDFEEL = "System";
         JToggleButton[] b = new JToggleButton[400];
         JLabel message = new JLabel();
         private boolean f;
         private final int NUMRC = 20; // Number of Rows and Columns
         public static void main(String[] args) {
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        createAndShowGUI();
         public static void createAndShowGUI() {
              initLookAndFeel();
              JFrame.setDefaultLookAndFeelDecorated(true);
              JFrame frame = new JFrame("Swing Application");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              Life app = new Life();
              Component contents1 = app.createComponents1();
              Component contents2 = app.createComponents2();
              frame.getContentPane().add(contents1, BorderLayout.CENTER);
              frame.getContentPane().add(contents2, BorderLayout.SOUTH);
              frame.pack();
              frame.setSize(1200, 880);
              frame.setLocationRelativeTo(null);
              frame.setVisible(true);
         public Component createComponents1() {
              JPanel pane = new JPanel(new GridLayout(NUMRC, NUMRC));
              for (int i = 0; i < 400; i++) {
                   b[i] = new JToggleButton("" + i);
                   b.setForeground(Color.black);
                   pane.add(b[i]);
              return pane;
         public Component createComponents2() {
              JPanel bpane = new JPanel();
              JButton start = new JButton("Start!");
              JButton stop = new JButton("Stop!");
              stop.setToolTipText("Click here to stop the Game of Life");
              start.setToolTipText("Click here to start the Game of Life");
              start.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        SwingUtilities.invokeLater(new Runnable() {
                             public void run() {
                                  f = true;
                                  while (f = true)
                                       for (int i = 0; i < 400; i++) {
                                            try {
                                            Thread.sleep(20);
                                            } catch (InterruptedException g) {
                                            System.err.println(g);
                                            int numSurround = getSurrounded(i);
                                            if (b[i].isSelected())
                                                 if (numSurround < 2)
                                                      b[i].setText("L");
                                                      b[i].setToolTipText("Too Lonely");
                                                      b[i].setSelected(false);
                                                 else if (numSurround > 3)
                                                      b[i].setText("C");
                                                      b[i].setToolTipText("Too Crowded");
                                                      b[i].setSelected(false);
                                            else // not selected
                                                 if (numSurround == 3)
                                                      b[i].setSelected(true);
                                            // try{Thread.sleep(3000);}
                                            // catch(InterruptedException f){System.out.println(f);}
                                            // System.out.println(i);
                                            // message.setText("Success!");
    //                                        System.out.println(i);
    //                                        if (i == 399)
    //                                        i = -1;
              stop.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        System.out.println("Hello. Success.");
                        f = false;
              bpane.add(message);
              bpane.add(start);
              bpane.add(stop);
              return bpane;
         private int getSurrounded(int i) {
              int row = i / NUMRC;
              int column = i % NUMRC;
              int surroundCount = 0;
              * Left Neighbor
              int leftColumn = column - 1;
              if (leftColumn >= 0) {
                   if (b[getIndex(row, leftColumn)].isSelected())
                        ++surroundCount;
              * Right Neighbor
              int rightColumn = column + 1;
              if (rightColumn < NUMRC) {
                   if (b[getIndex(row, rightColumn)].isSelected())
                        ++surroundCount;
              * Top Neighbor
              int topRow = row - 1;
              if (topRow >= 0) {
                   if (b[getIndex(topRow, column)].isSelected())
                        ++surroundCount;
              * Bottom Neighbor
              int bottomRow = row + 1;
              if (bottomRow < NUMRC) {
                   if (b[getIndex(bottomRow, column)].isSelected())
                        ++surroundCount;
              * Upper-Left Neighbor
              if (topRow >= 0 && leftColumn >= 0) {
                   if (b[getIndex(topRow, leftColumn)].isSelected())
                        ++surroundCount;
              * Upper-Right Neighbor
              if (topRow >= 0 && rightColumn < NUMRC) {
                   if (b[getIndex(topRow, rightColumn)].isSelected())
                        ++surroundCount;
              * Bottom-Left Neighbor
              if (bottomRow < NUMRC && leftColumn >= 0) {
                   if (b[getIndex(bottomRow, leftColumn)].isSelected())
                        ++surroundCount;
              * Bottom-Right Neighbor
              if (bottomRow < NUMRC && rightColumn < NUMRC) {
                   if (b[getIndex(bottomRow, rightColumn)].isSelected())
                        ++surroundCount;
              return surroundCount;
         protected int getIndex(int row, int column) {
              return (NUMRC * row + column);
         private static void initLookAndFeel() {
              String lookAndFeel = null;
              if (LOOKANDFEEL != null) {
                   if (LOOKANDFEEL.equals("Metal")) {
                        lookAndFeel = UIManager.getCrossPlatformLookAndFeelClassName();
                   } else if (LOOKANDFEEL.equals("System")) {
                        lookAndFeel = UIManager.getSystemLookAndFeelClassName();
                   } else if (LOOKANDFEEL.equals("Motif")) {
                        lookAndFeel = "com.sun.java.swing.plaf.motif.MotifLookAndFeel";
                   } else if (LOOKANDFEEL.equals("GTK+")) {
                        lookAndFeel = "com.sun.java.swing.plaf.gtk.GTKLookAndFeel";
                   } else {
                        System.err
                                  .println("Unexpected value of LOOKANDFEEL specified: "
                                            + LOOKANDFEEL);
                        lookAndFeel = UIManager.getCrossPlatformLookAndFeelClassName();
                   try {
                        UIManager.setLookAndFeel(lookAndFeel);
                   } catch (ClassNotFoundException e) {
                        System.err
                                  .println("Couldn't find class for specified look and feel:"
                                            + lookAndFeel);
                        System.err
                                  .println("Did you include the L&F library in the class path?");
                        System.err.println("Using the default look and feel.");
                   } catch (UnsupportedLookAndFeelException e) {
                        System.err.println("Can't use the specified look and feel ("
                                  + lookAndFeel + ") on this platform.");
                        System.err.println("Using the default look and feel.");
                   } catch (Exception e) {
                        System.err.println("Couldn't get specified look and feel ("
                                  + lookAndFeel + "), for some reason.");
                        System.err.println("Using the default look and feel.");
                        e.printStackTrace();
    I have a strong feeling that it is because of the semi-infinite for loop in the start button's ActionEvent, but I feel that the program needs to have this because it is supposed to go on until the user presses stop. Please help!
    Thank you!!

    OK. I have updated my code to sort of work (it goes to the 8th round at best). How can I optimize it to actually make it continue running? Please help!
    package learn;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Life {
          * @author Michael Keselman
         final JLabel label = new JLabel("Empty");
         final static String LOOKANDFEEL = "System";
         JToggleButton[] b = new JToggleButton[400];
         JLabel message = new JLabel();
         ActionListener a;
         private boolean f;
         Timer timer;
         int c = 0;
         private final int NUMRC = 20; // Number of Rows and Columns
         public static void main(String[] args) {
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        createAndShowGUI();
         public static void createAndShowGUI() {
              initLookAndFeel();
              JFrame.setDefaultLookAndFeelDecorated(true);
              JFrame frame = new JFrame("Swing Application");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              Life app = new Life();
              Component contents1 = app.createComponents1();
              Component contents2 = app.createComponents2();
              frame.getContentPane().add(contents1, BorderLayout.CENTER);
              frame.getContentPane().add(contents2, BorderLayout.SOUTH);
              frame.pack();
              frame.setSize(1200, 880);
              frame.setLocationRelativeTo(null);
              frame.setVisible(true);
         public Component createComponents1() {
              JPanel pane = new JPanel(new GridLayout(NUMRC, NUMRC));
              for (int i = 0; i < 400; i++) {
                   b[i] = new JToggleButton("" + i);
                   b.setForeground(Color.black);
                   pane.add(b[i]);
              return pane;
         public Component createComponents2() {
              JPanel bpane = new JPanel();
              JButton start = new JButton("Start!");
              JButton stop = new JButton("Stop!");
              JButton clear = new JButton("Clear!");
              timer = new Timer(900, a);
              timer.start();
              clear.setToolTipText("Click here to deselect every button");
              stop.setToolTipText("Click here to stop the Game of Life");
              start.setToolTipText("Click here to start the Game of Life");
              start.addActionListener(a = new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        f = true;
                        ++c;
    //                    while (f == true)
                             for (int i = 0; i < 400; i++) {
                                  // try {
                                  // Thread.sleep(20);
                                  // } catch (InterruptedException g) {
                                  // System.err.println(g);
                                  timer = new Timer(600, a);
                                  timer.start();
                                  int numSurround = getSurrounded(i);
                                  if (b[i].isSelected()) {
                                       if (numSurround < 2) {
                                            b[i].setText("L");
                                            b[i].setToolTipText("Too Lonely");
                                            b[i].setSelected(false);
                                       } else if (numSurround > 3) {
                                            b[i].setText("C");
                                            b[i].setToolTipText("Too Crowded");
                                            b[i].setSelected(false);
                                  } else // not selected
                                       if (numSurround == 3)
                                            b[i].setSelected(true);
                             message.setFont(new Font("Comic Sans MS", Font.BOLD, 18));
                             message.setText("Round " + c);
              stop.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        System.out.println("Hello. Success.");
                        f = false;
              clear.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        for (int i = 0; i < 400; i++)
                             b[i].setSelected(false);
              bpane.add(message);
              bpane.add(start);
              bpane.add(stop);
              bpane.add(clear);
              return bpane;
         private int getSurrounded(int i) {
              int row = i / NUMRC;
              int column = i % NUMRC;
              int surroundCount = 0;
              * Left Neighbor
              int leftColumn = column - 1;
              if (leftColumn >= 0) {
                   if (b[getIndex(row, leftColumn)].isSelected())
                        ++surroundCount;
              * Right Neighbor
              int rightColumn = column + 1;
              if (rightColumn < NUMRC) {
                   if (b[getIndex(row, rightColumn)].isSelected())
                        ++surroundCount;
              * Top Neighbor
              int topRow = row - 1;
              if (topRow >= 0) {
                   if (b[getIndex(topRow, column)].isSelected())
                        ++surroundCount;
              * Bottom Neighbor
              int bottomRow = row + 1;
              if (bottomRow < NUMRC) {
                   if (b[getIndex(bottomRow, column)].isSelected())
                        ++surroundCount;
              * Upper-Left Neighbor
              if (topRow >= 0 && leftColumn >= 0) {
                   if (b[getIndex(topRow, leftColumn)].isSelected())
                        ++surroundCount;
              * Upper-Right Neighbor
              if (topRow >= 0 && rightColumn < NUMRC) {
                   if (b[getIndex(topRow, rightColumn)].isSelected())
                        ++surroundCount;
              * Bottom-Left Neighbor
              if (bottomRow < NUMRC && leftColumn >= 0) {
                   if (b[getIndex(bottomRow, leftColumn)].isSelected())
                        ++surroundCount;
              * Bottom-Right Neighbor
              if (bottomRow < NUMRC && rightColumn < NUMRC) {
                   if (b[getIndex(bottomRow, rightColumn)].isSelected())
                        ++surroundCount;
              return surroundCount;
         protected int getIndex(int row, int column) {
              return (NUMRC * row + column);
         private static void initLookAndFeel() {
              String lookAndFeel = null;
              if (LOOKANDFEEL != null) {
                   if (LOOKANDFEEL.equals("Metal")) {
                        lookAndFeel = UIManager.getCrossPlatformLookAndFeelClassName();
                   } else if (LOOKANDFEEL.equals("System")) {
                        lookAndFeel = UIManager.getSystemLookAndFeelClassName();
                   } else if (LOOKANDFEEL.equals("Motif")) {
                        lookAndFeel = "com.sun.java.swing.plaf.motif.MotifLookAndFeel";
                   } else if (LOOKANDFEEL.equals("GTK+")) {
                        lookAndFeel = "com.sun.java.swing.plaf.gtk.GTKLookAndFeel";
                   } else {
                        System.err
                                  .println("Unexpected value of LOOKANDFEEL specified: "
                                            + LOOKANDFEEL);
                        lookAndFeel = UIManager.getCrossPlatformLookAndFeelClassName();
                   try {
                        UIManager.setLookAndFeel(lookAndFeel);
                   } catch (ClassNotFoundException e) {
                        System.err
                                  .println("Couldn't find class for specified look and feel:"
                                            + lookAndFeel);
                        System.err
                                  .println("Did you include the L&F library in the class path?");
                        System.err.println("Using the default look and feel.");
                   } catch (UnsupportedLookAndFeelException e) {
                        System.err.println("Can't use the specified look and feel ("
                                  + lookAndFeel + ") on this platform.");
                        System.err.println("Using the default look and feel.");
                   } catch (Exception e) {
                        System.err.println("Couldn't get specified look and feel ("
                                  + lookAndFeel + "), for some reason.");
                        System.err.println("Using the default look and feel.");
                        e.printStackTrace();
    Thank you!

  • Windows: Intermittent Flash Pro CC Application Freeze while closing documents

    If you notice any intermittent application Freeze of Flash Pro CC while closing the FLA documents, please apply the hotfix provided by Microsoft in the below link:
    http://support.microsoft.com/kb/2619328/en-us
    Issue is specific to Windows 64 bit Flash Pro CC installations.
    Do let us know if you encounter this and if applying the hotfix fixes the issue for you.
    thanks,
    Sujai

    Hi, I've been experiencing this problem.  I followed the link you sent and it goes to a hotfix apparently designed to fix the issue "PowerPoint stops responding or crashes on a tablet computer that is running Windows 7 or Windows Server 2008 R2"
    Is this the correct fix?

  • Computer randomly freezes.  Can't figure out why?

    Hi guys.  I have a 2011 MBP that has been pretty decent, but seems to have some issues that I can't solve. 
    Basically, once every 4 or 5 days (give or take), the computer will freeze requireing a hard restart.  Sometimes this will happen when I'm in the middle of using it.  Other times it will happen overnight after I've put the display to sleep (computer still on, just the display is sleeping). 
    There is nothing in the Console that suggests any errors happening.  The Console entries simply cease between the time when the computer freezes and whenever I restart it. There is nothing I can do to replicate the sitution with any measure of consistency.  Sometimes it happens when I'm doing something...sometimes when I'm doing nothing but browsing websites.  System is never under load when it happens (somewhere between 50C and 70C)
    I've run memory tests (in Single user mode) and HDD tests.  I've verified my disk permissions with Disk Utility and Onyx.  Nothing special seems to be happening in Console.  I'm not using any software that I didn't use on my 2010 MBP, which had no issues.  Yet and still, the freezes come.  They are rare, but frequent enough and unpredictable enough for me to worry whenever I'm doing something for business.  I shouldn't have to think about when my next freeze is going to come.
    Any ideas on where I can start trouble-shooting? Nobody wants to use a computer that is unreliable for any reason, you know?  I've considered doing another format and reinstall of OS X (I did that once already), but I'm not excited about doing it again.

    Will try.  Thank you for your time and the suggestion. 
    The thing I hate about my problem is that it's so unpredictable.  It might crash today...it might not crash again for a week or more.  I think that's the part I hate most.  I won't necessarially know anytime soon if the problem is resolved.
    If anyone else has suggestions, please post them. There's a very good chance I'll need to try your ideas at some point in the very near future.
    Cheers.

  • The newest version of firefox keeps crashing, and freezing. I can't figure out why.

    I downloaded the latest version and suddenly it keeps crashing and freezing on me. Now I can't get it to load at all.

    You can use one of these to start Firefox in <u>Safe mode</u>:
    *On Windows, hold down the Shift key while starting Firefox with a double-click on the Firefox desktop shortcut
    *On Mac, hold down the Options key while starting Firefox
    *Help > Restart with Add-ons Disabled
    *https://support.mozilla.org/kb/Safe+Mode
    If you can start Firefox in Safe mode then try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://hacks.mozilla.org/2010/09/hardware-acceleration/
    If you have submitted crash reports then please post the IDs of one or more crash reports that have this format:
    *bp-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
    You can find the IDs of the submitted crash reports on the <i>about:crashes</i> page.
    *You can open the <b>about:crashes</b> page via the location bar, like you open a website.
    See:
    *http://kb.mozillazine.org/Mozilla_Crash_Reporter
    *https://support.mozilla.org/kb/Mozilla+Crash+Reporter
    If you can't open Firefox then see:
    *http://kb.mozillazine.org/Mozilla_Crash_Reporter#Location_of_crash_reports
    *http://kb.mozillazine.org/Mozilla_Crash_Reporter#Viewing_crash_reports

  • Someone please help me! I live in Turkey and bought my iMac desktop in February. The dealer kept the recovery discs and won't send them. My screen freezes seconds after opening and I can't figure out how to repair it myself. Please help!

    I was deleting photos when the screen froze and I had to shut down the computer manually. Now after the first minute of being turned on the screen freezes and the mouse arrow goes into that rainbow whirling disc and won't stop no matter how long I let it go. My keyboard is Turkish. My keys are not marked the same as an English one is, further complicating resolving the problem.
    The dealer I bought it from doesn't speak English and wants to charge me for repairs. I refuse to pack the computer up and ship it UPS out of town for a repair I can do plus pay for shipping.
    When I received my computer I was only given the manual and no system restore discs for situations such as this. I asked where they were and was told there were none.
    I suspect this is a tactic to make money on bogus tech repairs off their customers. To purchase new discs, if I can find them, can cost from $30-$40 - the dealer more than likely is re-selling the discs at 100% profit. This is Cizgili Apple Store in Adana, Turkey. I wish to report them. It is a national company too. I don't have a receipt handy, but have an emailed receipt. I can't get my computer's number to get further assistance on the Apple website withput it.
    I was a dedicated Windows customer until I started doing desk top publishing. I'm fighting the urge not to regret buying this computer.   

    1-800-676-2775  apple support   tech support 1 800 275 2273
    If your computer is on one minute before it freezes, than you have one minute to secure your serial number.
    click the apple----->click about this Mac ------> click on version----> until you see the serial number.  You may have to do this a couple of times if it freezes before you have all the numbers.  A camera might help.
    Good Luck

  • I have a new macbook pro and an HP Deskjet D2500 series printer and i can not figure out how to do double sided (duplex) printing! any help?

    Does anyone know how to set up print so that it comes out double sided with the macbook pro??

    How you enable double-sided printing can depend on the applications from whick you wish to print. Example: if I print to my HP PhotoSmart  from Safari, I get this print dialog box:
    (Edit: OOPS! Note that I forgot to switch printers when i took the scene-shots, so ignore the "Brother" reference. It's should look the same for your HP.
    Note the selection labled "Safari" near the bottom. If I change that form "safari to "Layout: I get this:
    Note the option for two-sided printing appears for your selection. If I print from Word, the box is different:
    The "Copies & Pages" option can be changed to "Layout" when you click it, again allowing the selection of two-sided printing.
    If you tell us what applciaiton is vexing you, we may be able to give better-focused information.
    A

  • When i take pictues with my 4s and the flash is on, the picture comes out with a blue tint.. can't figure out why.. no case or cover of any kind and it still happens

    whenever I take pictures with my 4s and the flash is on the picture comes out with a blue tint.. I have a case but I took it off to test that theory and it still turns up blue.. I also don't have a protective film or anything over the camera..

    I also have this problem with my recent 4s. Camera flash is bouncing back on its back pannel of the phone,  apple did change my phone with a new one

  • Can't figure out why webcam video freezes (pauses) every now and then

    I have created a small application to grab the video stream from a webcam that seems to work very well. But, every now and then the video pauses for no apparent reason. Any ideas why it might be doing this? I am using an undecorated JFrame for the app and there is an option in the program to dynamically change the window opacity using AWTUtilities.setWindowOpacity().

    In that case, that's different. I thought you were complaining because it'd freeze for a moment or two and then keep going ;-)
    Ummmmm, I'd guess that maaaaybe changing the opacity is affecting the validate() status of the pane? Like the following post:
    [http://forums.sun.com/thread.jspa?messageID=10504851#10504851]
    How are you displaying the video? Just using a player, or what?

  • Iphoto (ilife 11) freezes every time I try to use it--can't figure out why

    I've been using iphoto (ilife 11) for quite some time.  all of suden it freezes right after I boot it up & I can't do a thing.???

    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • HT5622 I sent my Mac Pro Air for repairs and for some reason my user and group password was changed to Apple and I can't figure out what the password is -.help please.

    Sent my Mac Pro Air  for repairs and when it came back I had to download many programs.  Dowloaded  the OS X Mavericks but now it tells me I need an application to install it in my computer.  Which application do I need? Checked the App store but am new at this and have no clue.

    Did they also restore your original user account? Log out of Apple and see if yours is there to log in to.
    You'll need to post the actual error message, not what you think it said. I don't think I've ever seen an error that said I needed an application to install anything on my Mac.

  • My computer is full and I need to save all my shows and movies on an external hard drive.   I am on a mac book pro and I can't figure out how to drag the show in to the external hard drive

    My computer is full and I need to remove movies and tv shows out of itunes and save them in an external hard drive.   I cant figure out how to save them so I will be able to access them again.  Or store them in the cloud

    Do not store them in the Cloud.  It isn't really storage.  For iTunes purchases, for example, it is just re-downloading a purchase.  If a label decides to no longer make the item available it will disap[pear from the cloud and that will be it for you.
    You can't store items on an external drive simply by dragging them there.  That's too complicated for iTunes and how it is set up to work.  I know I post on this 10x a week and there's many other posts discussing this.  I suggest you browse a bit first.  Your options are basically to either put your whole library on the eternal drive (which is a nuisance if you don't want to drag it everywhere with you), or to copy individual items to the external drive, delete them from the internal drive, then re-add them as new items (re-adding to playlists, etc.).

Maybe you are looking for

  • Highlight data in report according to search input

    Hi, I have SQL report and to narrow down the report I have a search region with TextField. It is working fine. My query here is I want to highlight the search input text wherever it appears in the report column. Like my search text is suppose - abc R

  • Can anyone tell me how  to compile java in different directory?

    My javac path file is D:/java/jdk1.5/bin/ I create java file and save it in different directory eg) java file name is Main.java in f: F:/Main How can i compile and run the Main java file Edited by: Sanjeevi on Mar 4, 2008 9:20 AM

  • 'Unable to convert pdf; invalid page range or conversion setting parameters'

    Hello, I keep getting this error anytime I try to convert any type of ms 2003 file to pdf.  I've tried to reinstall my acrobat 8 professional twice and even ran a repair with no fix.  It almost just freezes.   I can say this: this error started when

  • I have found Adware.Adpopup on my Mac.  How can I get rid of it?

    Two days ago every time I open Safari I am getting heaps of adds and pages opening when I click on anything;  In addition, I noticed that a lot of the words now are blue with two lines under them and they are ads.  My Anti-virus has detected Adware.A

  • Contact name auto-replacing -- can i stop it?

    this is irritating: my partners name is filed in my address book under a first name with no last name (he's legally had his name changed to a single word). in another friend's address book, the "last name" blank is filed with a quippy phrase my partn