How to solve the problem related to the cache?

When I open the bridge appears a warning to empty the cache, when I do this to move a file, the first that is moved, but the blocks of second or third. I have a Mac OS X El Capitan and the bridge CC.

I use this computer and download long a go and I never had this problem before.

Hi farolim,

Please reset the Bridge preferences and then try it.

Measures

Start Adobe Bridge, and immediately press Ctrl + Alt + Shift (Windows) or command + Option + shift (Mac OS down) until the dialogue box reset settings appears.

Select all three options - reset preferences, reset Standard Workspaces and all miniature Purge Cache - and then click OK.

Reference: troubleshooting errors, freezes | Adobe Bridge | Windows, Mac OS

Let us know if it works.

Kind regards

~ Mohit

Tags: Bridge

Similar Questions

  • How to solve a problem related to the implementation of the legacy?

    Hello

    Then I come on this way to ask for assistance on the implementation of the legacy on my request. So the problem is:

    I apply I need to capture audio and analyzing this capture of the Spectrum Analyzer, Volumes etc.

    So I will use several microphones in this application, I will use the same code in the audio capture.

    I have a class called Application which has GUI and events, such as events of button and update the values in the GUI. In my first version of the Application, I have everything here, but I had Don t like that and is not good for performance, so I want to divide the code by other classes. That's why I try to the legacy.

    So I created a class called equipment which is the super class and in this class will have the method captureAudio(), the calculateRMSLevel(), the sendOutPresenceUpdates() etc... And I have 3 variables:
    public abstract class Equipment {
    
        public AudioFormat format;
        public TargetDataLine line;
        public Mixer mixer;
        public EventListenerList listenerList = new EventListenerList();
        
        public Equipment(AudioFormat format, TargetDataLine line, Mixer mixer){
    
            this.format = format;
            this.line = line;
            this.mixer = mixer;
        }
    
        public AudioFormat getFormat() {
            return format;
        }
    
        public void setFormat(AudioFormat format) {
            this.format = format;
        }
    
        public TargetDataLine getLine() {
            return line;
        }
    
        public void setLine(TargetDataLine line) {
            this.line = line;
        }
    
        public Mixer getMixer() {
            return mixer;
        }
    
        public void setMixer(Mixer mixer) {
            this.mixer = mixer;
        }
    
         public int calculateRMSLevel(byte[] audioData){
         // audioData might be buffered data read from a data line
            long lSum = 0;
            for(int i=0; i<audioData.length; i++)
                lSum = lSum + audioData;

    double dAvg = lSum / audioData.length;
    double sumMeanSquare = 0d;
    for(int j=0; j<audioData.length; j++)
    sumMeanSquare = sumMeanSquare + Math.pow(audioData[j] - dAvg, 2d);

    double averageMeanSquare = sumMeanSquare / audioData.length;
    return (int)(Math.pow(averageMeanSquare,0.5d) + 0.5);
    }

    public void sendOutPresenceUpdates(int FullJIDAndResource, String NewPresence) {
         Object[] listeners = listenerList.getListenerList();

         Integer inputValue = _FullJIDAndResource;
         String convertedValue = inputValue.toString();
    // Empty out the listener list
         // Each listener occupies two elements - the first is the listener class and the second is the listener instance
    for (int i=0; i < listeners.length; i+=2) {
              if (listeners[i]==CustomPresenceListener.class) {
                   ((CustomPresenceListener)listeners[i+1]).presenceEventOccurred(new CustomPresenceEvent(this, convertedValue, _NewPresence));
                   }
              }
         }
    public void listenForPresenceEvents(CustomPresenceListener _listener) {
              listenerList.add(CustomPresenceListener.class, _listener);
         }


    public void removeEventListener(CustomPresenceListener _listener) {
              listenerList.remove(CustomPresenceListener.class, _listener);
         }
    public void captureAudio(){

    }
    And i have questions about the constructor, is right the constructor that i created in the superclass?
    
    So i create a subclass called Microphone1 and in this class i make override from the method captureAudio() from the superclass and here i create the thread for the capture.
    class Microphone1 extends material {}



    Public Microphone1 (format AudioFormat, line TargetDataLine, drummer mixer) {}

    Super (format, line, mixer);

    }


    public void captureAudio() {}
    try {}
    format = getFormat();
    MixerInfo [] Mixer.Info = AudioSystem.getMixerInfo ();
    DataLine.info get information on line.
    DataLine.Info info = new DataLine.Info (TargetDataLine.class, format);
    Drummer mixer = AudioSystem.getMixer(mixerInfo[3]);
    Download the info from the desired line.
    line = (TargetDataLine) AudioSystem.getLine (info);
    Get a TargetDataLine on selected mixer.
    line = mixer.getLine (info) (TargetDataLine);
    Line.Open (format);
    Line.Start ();

    CaptureThread captureThread = new CaptureThread();
    captureThread.start ();

    } catch (Exception e) {}
    System.out.println (e);
    System.Exit (0);
    } //end wrestling
    }
    But now i have a problem in the class Application, because i want to start the capture when i click in the button so i created the actionPerfomed and inside of this event i create this:
    Microphone1 m1 = new Microphone1 (format, line, mixer);
    M1.captureAudio ();
    But when i execute the application and click in the button appears this: java.lang.NullPointerException :/ and i don't know how to solve this.
    
    Any help? Where i am wrong?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

    Well Yes, see also http://download.oracle.com/javase/tutorial/java/index.html

  • How to solve the problems of windows 10 shut down (power, lighting the keyboard is always on)?

    Nice day

    How to solve the problems of windows 10 shut down (power, lighting the keyboard is always on)?

    with regard to my question above. I need to hold the button of power for 5 seconds to completely shut down my laptop. even restart or sleep does not work well. I upgraded a real victory 8.1 to 10 free victory by that windows app reservation offered. IM using acer aspire v5 - 573 g i7, version gt750m, Finnish keyboard

    solutions, I tried to random searches that did not work for me.
    1 unchecking quick stop to power options
    2 disabling hibernation in cmd (types a code forgot what I have)
    3. update all drivers and bios with sites acer official drivers, driver pack solution 15.8 and utility driver update intels
    4 decommissioning intel management engine components driver 11 to 9.5
    5. go to the bios and reset to the default settings
    6 make a shortcut of "shutdown" with codes e.g. shutdown /s /t 0
    7. click Update stop

    IM thinking of reinstalling windows 10 via recovery which removes applications, files, drivers, etc. and hope this solves. I can't roll back to win 8.1 because ive done this reset before you completely clean out my system of win random 8 and trashes the restore option was gone.

    Thanks in advance

    Hello/Hallo wuschel93,

    exactly what I had. Stop number appears only after a certain time the laptop running.

    The problem is INTEL MANAGEMENT ENGINE RELATED V.11!

    I fixed it with uninstall Intel Management Engine Version 11. Windows will then install version 9.5 automatically. After that I turned off the automatic update of the driver for this device. You can also install 9.5 without uninstalling the old one, it wil crushed.

    Other manufactures also have this problem, but while Acer is still asleep, they provide a solution (including download links):

    http://h30434.www3.HP.com/T5/notebook-operating-systems-and-software/sleep-and-shutdown-issues-after...

    Maybe there are any other issues that result in the same problem. But in most cases, it's the answer. The thread Starter maybe forgotten to disable the automatic driver update or made installation of v9.5 evil?

    TEPCO

  • Anyone know how to solve my problem? I can't import my photos from Iphone to computer. Sign says: Photos in the camera cannot be imported because the IPhone is locked with a password or read. My phone is unlocked. I've tried everything

    Anyone know how to solve my problem? I can't import my photos from Iphone to computer. Sign says: Photos in the camera cannot be imported because the IPhone is locked with a password or read. My phone is unlocked. I tried everything, every single idea. Without success! Any other idea?

    For example, you specify that the device does not display the lock screen, correct? Do you use Touch IDS? If so, try to put your finger on the device to see if it's what he wants.

    See you soon,.

    GB

  • My mac does not detect my hard drive after the upgrade. How to solve this problem?

    My mac does not detect my hard drive after upgrading to Mac OS Sierra. How to solve this problem?

    Please provide more detailed information. You can read write an effective communities of Apple support question. Maybe you could open disk utility and take a screen snap so that we can see what you see.

    To post a screenshot

    1. Press command + shift + 4, that will change the cursor to the line of sight.
    2. Hold down the mouse button and the collimator allows you to select the part of the screen you want to capture.
    3. Release the mouse button and the image will be saved on your desktop.
    4. Click on the camera icon in the toolbar of the message forum Editor.
    5. Drag the image on the button select a file and click the Insert button.
  • My Macbook Air uses El Capitan 10.11.5. This operating system repeatedly freezes and the computer must be turned on / repeatedly.  How to solve this problem?

    My Macbook Air uses El Capitan 10.11.5. This operating system repeatedly freezes and the computer must be turned on / repeatedly.  How to solve this problem?

    Hello

    Check if the hard disk needs repair.

    Open the disk utility, located app in HD > Applications > utilities

    Select Macintosh HD on the left then click the first aid tab, and then click Run.

  • Sent items from MS outlook do not appear in Thunderbird, but it works in the reverse (envoys since Thunderbird appears in Outlook). How to solve this problem?

    Sent items from MS outlook do not appear in Thunderbird, but it works in the reverse (envoys since Thunderbird appears in Outlook). How to solve this problem?

    I guess you have a pre existing account using the POP Protocol, that not only downloads the contents of the Inbox.

    Hotmail, Live, MSN, Outlook dot com now support IMAP which is a synchronized messaging service, changes in one are reflected in the other.

    File menu (alt + F) > New > existing e-mail account and add your account to the Thunderbird again. Make sure you have "account type selected IMAP and your all synchronized will.

    If it's like my account, your IMAP e-mail account will come with a subfolder under the pop called deleted folder that contains all mail I have downloaded in the past years.

    If you right-click your \new IMAP account in the folders pane on the right immediately after you create it and choose to subscribe you can unsubscribe from this folder if you don't see it

  • Someone broke into my computer informing me that he has been infected with malware, viruses, etc. and advising me to contact a phone number, also send me a live conversation on how to solve the problem. He claims to be an Apple / Safari servic

    Someone broke into my computer informing me that he has been infected with malware, viruses, etc. and advising me to contact a phone number, also send me a live conversation on how to solve the problem. He claims to be an Apple / Safari servic

    This kind of message is a scam. Do not meet it.

    Force Quit Safari, then restart Safari while holding the SHIFT key.

  • Updated the macbook pro of el capitan and now will not start. Instead, I get the error message "your computer restarted due to a problem". Someone at - it suggestions on how to solve this problem?

    Updated macbook pro today for the latest version of el capitan and now will not start. Instead, I get the error message "your computer restarted due to a problem". Someone at - it suggestions on how to solve this problem?

    It would be helpful to post what the screen says.

    -Try to reset memory NVRAM/PRAM and SMC

    MacIntel: Reset of the controller (SMC) system management

    https://support.Apple.com/en-us/HT201295

    Subject of memory NVRAM and PRAM

    https://support.Apple.com/en-us/HT204063

    -Try to start safe mode

    OS x: what is Safe Boot, Safe Mode?

    https://support.Apple.com/en-us/HT201262

    -Start to recovery and repair the startup disk

    OS X: on OS X Recovery - Apple Support

    https://support.Apple.com/en-us/HT201314

    -If it is repairable reinstall the OSX

    How to reinstall OS X on your Mac - Apple Support

    https://support.Apple.com/en-us/HT204904

    -If you do not have a backup using disk utility to restore the internal drive to an external drive, so that you can try to recover the data.

  • Hello, I have a big problem with Firefox: Session Manager &amp; Undo Closed Tab addons don't work, synchronization is not working do not. The story works. How to solve this problem?

    Firefox remembers the story, but doesn't remember the closed tabs, sessions.
    It happened after the Fox update to v. 19.0.2 on a single computer.

    In Options of Firefox is set to use Custom Settings For History, everything is checked except always use Private Browsing Mode. So I'm not in private browsing.

    When I press to Undo Closed button nothing happens, & in the Manager session Save Session button is grayed. I tried to install other add-ons that remembers the tabs. tried to reinstall/disable these 2 modules. Did ' t help. On my 2nd computer I have same modules, same settings and they work normally. the 3rd closed computer undo works tabs also. How to solve this problem? I decided to ask before Firefox Reset...

    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------
    

    Sync is a separate issue. It works, but quite often it connects me sync account. Then I can connect only using the recovery key password and long (option choice I have no device with me because he does not accept the key to pairing device).

    Thanks for reading.

    In case you use "clear history of Firefox closing:

    • do not erase browsing history

    Note that compensation "Preferences of Site" clears all exceptions for cookies, images, windows pop up, installation of software and passwords.

  • When I run Mozilla Firefox I get the error message "ReferenceError: Globalstorage is not defined." How to solve this problem?

    When I run Mozilla Firefox I get the error message "ReferenceError: Globalstorage is not defined." How to solve this problem?
    -Vinayak

    GlobalStorage is no longer supported in the current Firefox (removed in Firefox 13), versions so the extension or Web site that uses it needs an update and use localStorage instead.

  • I'm unable to delete obsolete email addresses of mail. When I change a card email address Contacts outdated address appears at the top of the queue. Is it a problem of Contacts or a mail problem. How to solve this problem?

    I'm unable to delete obsolete email addresses of mail. When I change a card email address Contacts outdated address appears at the top of the queue. Is it a problem of Contacts or a mail problem. How to solve this problem?

    Have you tried to go to the recipients of mail/window/previous and delete e-mail addresses it?

  • I have updated to ios 9.3.1 now I have no sound for text messages alerts and alert sounds no calendar! I just missed a meeting disaster. Any ideas how to solve this problem, all the settings are correct.

    I have updated to ios 9.3.1 now I have no sound for text messages alerts and alert sounds no calendar! I just missed a meeting disaster. Any ideas how to solve this problem, all the settings are correct.

    Try a reset...

    Force restart your iPhone: tap on and hold the Home and Sleep/Wake buttons for at least ten seconds, until you see the Apple logo.

    If this does not help, tap settings > general > reset > reset all settings

  • The toolbar with Firefox parameters (0ptions, etc.) have disappeared. How to solve this problem?

    Maybe it's a virus problem. Firefox no longer displays its toolbar, even after I download a new version. Only a black space appears where it used to be. I can't change the security or history or other settings. Any ideas how to solve this problem?

    • In versions of Firefox 3.6 on Windows and Firefox 4 on Windows and Linux, it is possible to hide the "menu bar" by "view > toolbars" or via the context menu of a toolbar.
    • Press F10 or press and hold the Alt key to bring up the 'Menu Bar' temporarily.
    • Go on "view > toolbars" or right-click the 'menu bar', or press Alt + V T to select the toolbars to show or hide (click on an entry to switch from the State).

    See also:

  • iPhone 5 s to connect with blue tooth in the car for hands-free calling does not connect to the speaker, it works very well with the iPhone 5. How to solve this problem?

    IPhone 5 IOS 9.2 (13 c 75) I can log in my car with Blue Tooth to make phone calls, but it does not connect to the speaker. To establish the connection with the car, the procedure has been completed correctly. With the iPhone 5 it works perfectly correct.

    How to solve this problem? Is there someone who has the same problem?

    Howdy,

    Thank you for using communities Support from Apple.

    I see you try to get your iPhone to interface with the stereo in your car via Bluetooth.  For setting this up, please follow the steps below.

    If you use Bluetooth

    1. Consult the user manual of your car stereo to get the procedure to a Bluetooth device.
    2. On your iOS device, drag up to open Control Center, then press ontwice to turn on Bluetooth and turn it back on.
    3. Restart your iOS device.
    4. On your iOS device, Cancel the twinning of your car radio. On the screen of your car désapparier your iOS device and any other device. Restart your car and your iOS device, then pair and connect again.
    5. Update your iOS device.
    6. Install the updates to the firmware of your car radio.
    7. If you still not connect, contact Apple technical support.

    Help to connect your iPhone, iPad or iPod touch with your car radio

    See you soon.

  • My messages send and receive txt messages not iMessage on my iPhone and I don't know how to solve the problem to send and receive messages as iMessage

    My messages send and receive txt messages not iMessage on my iPhone and I don't know how to solve the problem to send and receive messages as iMessage

    Settings > messages > iMessage turn off then turn it back on...

    If it does not sign of your apple under messages ID.  Settings > General > reset > reset all settings (will not erase data).

    Then log in messages

Maybe you are looking for

  • DeskJet 3630: HP DeskJet 3630 doesn't recongize 803 black carteidge int

    Hello. I met a problem when I using 803 ink cartridge black (instead of 63 black cartridge int) in my DeskJet 3630. The printer cannot detect the 803 even black ink cartridge, I tried two new 803 black ink cartridges that have been purchased in the s

  • iTunes movies take place HD - options

    Hi all My iTunes movie downloads are taking too much space on my hard drive. The obvious option is to move to an external hard drive, but then I lose the ability to watch them when I take my MacBook out of the House (unless I take an external hard dr

  • Microsoft Updates consistently fail

    I try to download and install the latest Microsoft updates on a regular basis.  Almost always, they fail to complete and update my PC.  I've seen on this forum that Excel 2003 known issues and that is one update I've seen failure, but it seems that i

  • SOFTWARE TO INFORM YOU OF ALL THE EMAILS THEN.

    IS THERE THAN A SPEECH THAT ME SAID WHENEVER I GET AN EMAIL? WHERE CAN I FIND SUCH SOFTWARE AND HOW CAN I INSTALL IT.

  • Any who save a pre-installed Windows xp home edition that crashed...

    HelloMy cousin had this pre-installed windows xp that the computer crashed recently, keep promptingfor a recovery disc for repair, but this machine is pre-installed with a windows xp. Now to makethe store that sold this machine went crashing too wors