Problem with showing My Computer in Bridge

Just upgraded PS CS4 to CS5.  When I click on the favorites or the Folders tabs in Bridge and select My Computer, the program displays the drives and then starts adding My Documents over an over without stopping...after 1 minute I had >50 icons for My Computer.  It was annoying because it kept displacing the drives to the right as it inserted a new My Doc icon, and I couldn't catch the icon for the other drives to open them!
In Minibridge, it displays just three duplicate My Documents icons???
Anyone have an inkling as to what might be happening here, or how to prevent it?
Many thanks,
A

Thanks for the help.  I was the cache.  I tried purging from "Edit -> Camera <br />Raw Preferences...", and that didn't fix it.  Then, I tried deleting the <br />files manually (I must have missed some), and that didn't work.  Finally, I <br />purged from "Edit -> Preferences -> Cache" and everything works!<br /><br />Thanks again!<br />- Jeff<br /><br /><br /><[email protected]> wrote in message <br />news:[email protected]..<br />> Jeff<br />><br />> You should read the part about ACR install on Windows, I Use Mac and can't <br />> tell you where to put it but it is a very critical install, Not difficult <br />> but you have the follow the instructions carefully and then it will work.<br />><br />> Bridge 2 has a different cache management with it's own problems, there <br />> are many treads about that in the Bridge forum. However, it does work!<br />><br />> You should go to the Bridge preferences and check the box with <br />> "Automatically Export Caches to Folder When Possible."<br />><br />> Remember that the files are by default invisible, in the menu go to View <br />> and select "show hidden files". If your cache is written to the folder <br />> there should be 2 files (blank paper with above right corner folded) and <br />> named:<br />> .BridgeCache and<br />> .BridgeCacheT

Similar Messages

  • Problem with showing mp3 album art in list view.

    Hello.
    I have litle problem with showing mp3 album artwork in list view.
    In SNOW LEOPARD all work fine, and all mp3 files have album art's preview in list mode in finder.
    But in LION i have only default preview mp3 icon.
    Option "Show icon preview" is already on!

    I have the fix!!!!
    I have had the same issue ever since Lion. Its been very painful not having album art preview in finder or the play button when rollover the file for so many versions of OSX. Today I worked hard in trying to solve the problem since Applecare support hasn't helped much, all they did was tell me to bring the computer in. The other main reason I got so motivated to try and fix this is because the DJ app for Mac only reads album art from the finder even if iTunes can display the album art. The other reason that got me curious is that my friends macbook pro album art worked fine, so I cross checked with his computer until I figured out a few things that helped and ultimately fixed the issue. FINALLY!
    My set up:
    - I have my full iTunes library folder on my external as I have over 700GB of music.
    - It includes all my database files in there, which is very important as I have many playlist settings from over 7 years of iTunes activity.
    SOLUTION:
    1. With every new computer I have purchased, I use to just pressed option on Mac and press iTunes to locate my folder (which I have said is located on my external drive).
    2. I tried today to press option again BUT locate and selected the default library in the user/music folder of my internal drive (standard setting from Apple).
    3. Miraculously, all the album art appeared in both my external drive library and also today's downloaded songs on my Macbook pro. Ofcourse with the new default location I don't have any songs or data.
    4. So I tried to find a way to keep this library data on my internal drive since it can help the finder display all my files properly, yes even have the play on rollover button but as well link it back to my external drive with all my 700GB songs.
    5. I then went into iTunes Preferences/Advance tab and in iTunes Media folder locationredirected the location to my external drive iTunes/ iTunes Media folder. If it asks to collate data, press NO.
    6. Then I quit iTunes.
    7. Next I copied the 4 files to my desktop from my external drive as I want to keep the data I have made with all my playlists etc. The four files are iTunes Library Extras.itdb ,iTunes Library Genius.itdb , iTunes Library.itl , iTunes Library.xml
    8. I then went to my internal drive User/Music/Itunes/ and dragged these 4 files I copied from my external drive into here and making sure to REPLACE the four existing files already there.
    9. Next open iTunes and you will find all your presettings appear with all your music linked to your external. What this does is keep the important library files on your internal drive (that somehow makes your finder files album art appear), BUT to read also all the music mp3 files located in the external drive (action from step 5)
    Presto!! All your music files whether on internal drive or external all the album art has appeared.
    Hope this helps!! Let me know if there are any other questions.
    I am on 10.8.1 running retina macbook pro.

  • Hi! I´m having problems with showing video files in Qlab on my Macbook Air. A sound/video technician told me to "blow out" my Mac. Was told to use  cmd+ r  when restarting. Is this the right way?

    Hi! I´m having problems with showing video files in Qlab on my Macbook Air. It started suddenly. Consulted a sound/video technician who told me to "blow out" my Mac. Was told to use cmd+r  when restarting. Is this the right way to clean up my Mac? And is it likely that some kind of bug is causing problems for Qlab to show video files? I´ve already tried with a bunch of different video files and sometimes Qlab plays them and sometimes not. I need the Qlab playlist for a theatre show and only have a week until showtime so starting to really worry. Is there anyone out there who can help?

    Your Mac runs maintenance in the background for you.
    Command + R gives you access to restore, repair, or reformat the drive using OS X Recovery
    No idea why that was suggested.
    You may have a third party video player installed that's causing an incompatibility issue.
    Check these folders:
    /Library/Internet Plug-Ins/
    /Library/Input Methods/
    /Library/InputManagers/
    /Library/ScriptingAdditions
    ~/Library/Internet Plug-Ins/
    ~/Library/Input Methods/
    ~/Library/InputManagers/
    ~/Library/ScriptingAdditions
    The first four locations listed are in the root-level Library on your hard disk, not the user-level Library in your Home folder.The tilde (~) represents your Home folder.
    To access the Home folder in OS X Lion or Mountain Lion, open the Finder, hold the Option key, and chooseGo > Library.

  • We have problem with showing warnings "Inline with Field"s.

    We have problem with showing error messages "Inline with Field"s.
    1. We have a package ERROR, that collects all errors/warnings. It has a procedure PUT, that saves errors in the variables of the package.
    Package ERROR
    procedure put(ptable in varchar2, pcolumn in varchar2, pcode in varchar2, pmsg in varchar2);
    end;
    2. We have a database table. Its values are validated by a trigger (saving business rules).
    If an error occurs, then the trigger calls the procedure PUT ( to save an error message).
    For example ...
    CREATE TRIGGER ...
    --- Rule 21
    if substr(:new.ka_kood,1,1) != :new.s_kat then
    error.put('TABLE1','COLUMN1', -20167, ' MESSAGE 1 !');
    end if;
    END;
    3. I have a form of HTML DB that updates the table TABLE1
    I want to show this error message with the field COLUMN1 (Inline with Field) .
    I need same validations before and after updating values.
    Before update - to validate same input; after update - to show errors saved in the package ERROR.
    I also tried to use the global variables. For example ...
    WWV_FLOW.g_validation_ids_in_error(1):= 192645056564169139;
    WWV_FLOW.g_item_ids_in_error(1):= 192644674113169137 ;
    WWV_FLOW.g_validation_message(1):='MESSAGE1';
    And this did not help.
    To rise errors in programs - is there same API ?
    Or there is some other solutions ?
    How can I do this in HTML DB?

    Andres,
    I'm not sure exactly what you are trying to do. But perhaps this will help some. If your after-submit process runs DML that causes triggers to fire, which result in error messages to be accumulated in package variables, you could create a branch on the page that would be conditional on the existence of error messages in the package variables. The branch could be back to the same page or to a more customized error page. The page you branch to would use the error messages in the package variables to determine how to format the page with the error text. The key to doing this is to run it all in the same database session. The way to do that is to use a "direct" branch, i.e., one that does not do a URL redirect. You create this type of branch with the Create Branch wizard (Branch to Page) and do not check the "Branch to page using redirect" checkbox when you see it.
    Be sure to roll back any changes you do not want committed before the branch.
    Using HTML DB global package variables for anything like what you described is not supported.
    Scott

  • Problem with showing caller information on E90

    I recently purchased an E90 and it appears to have a problem with showing the information of the caller (name) for those numbers that have been synchronized with Outlook 2003 or using Bluetooth from a Sony-Ericsson. The presentation of the caller information for the numbers that I have punched in manually works just fine.
    Does anybody have the same problem and if so what is the solution if it is a configuration issue as it sure sounds like a software bug..
    Regards,
    -mats-

    unfortunately the quick office solution bundled with the E90 is very much inferior to the ones found in the older communicators. you Must PAY to upgrade to a better version w/c to my mind is still inferior to the basic version found in the 9X00/i series communicators
    9110,9210,i,9500,9300,i,E90 I still miss my 9300i , E71, E72 But......

  • I Just upgraded to mountain lion os x to 10.8.1 and I have a problem with restart my computer

    I Just upgraded to mountain lion os x to 10.8.1 and I have a problem with restart my computer.
    Now my computer is stuk on restart and wont turn on.
    Can somone help me with it?
    Thanks.

    If Mende 1's suggestion doesn't solve it you might find the following useful:
    I would first reset the SMC:
    Shut down and unplug the Mac.
    Keep the Mac unplugged for at least fifteen seconds.
    Plug the Mac back in and do not turn it back on for at least five seconds.
    Press the power button to turn the Mac back on.
    Then I would reset the PRAM by rebooting the iMac while simultaneously holding the Command-Option-P-R keys until the machine restarts a second time.
    Hope this helps

  • I am having problems with my old computer so syncyed my ipod to my new computer. all the appliance/games synched but not my music. I have somehow manged to wipe all my music from my ipod and it will not synch with my music libary from my old computer

    Hi
    I am having problems with my old computer so syncyed my ipod to my new computer. all the appliance/games synched but not my music. I have somehow manged to wipe all my music from my ipod and it will not synch with my music libary from my old computer. Any suggestions.

    ? Anyone have any suggestions?

  • More Problems with my new computer

    Well I'm beginning to think this new machine is acting very much like what happened back in 1996-97 when I rebuilt a Packard Bell Legend 1956 only to have the computer croak better than either a frog or my cartoon namesake on "South Park" because the recovery disk didn't recognize the new componentry.
    after I thought I revived it with this forum's assistance. after 5 days it started acting up with "turn off computer" icon going AWOL. since I didn't have a backup I went to system restore which promptly froze midway thru the process.
    so what I did was to take out my Digital Lifeguard software and try and reconfigure the I:\ drive to a C:\
    eventually it said that Windows couldn't start because it needed a pci driver.
    so on July 5th a technician showed up & it came back.
    now on the 11th when I started it up. & changed the secondary drive to a C:\
    so now I figured why not reformat the I:\ & and put XP Pro on the C:\ so my programs won't start a revolt
    especially since I only had 1 day left before activation.
    Now the computer is in an infinite loop saying that Windows cannot install because the hard drives are not available to install the temp files.
    by thw way the chip head was wondering why both of the optical drives were on the master cable & the HD's were on the slave. he also warned me that this computer's configuration was problemaic and I will have errors.
    I wanted this type of computer because I wanted to know what was the differences between an OEM & a custom built especially since they recovered quite differently as well.
    In retrospect, I think I would've did much better with another OEM because I would've had recovery CD's/DVD's
    and for 1 year tech support would've help me thru the transition from the old one to the new.
    I've been reading the manual to this motherboard trying to figure out how to not send this computer into orbit along with the shuttle! & wasting $1600. so far nary a clue could be discerned.
    the builder says that I shouldn't of tinkered with it and run the computer as he built it but the way I see it 1. If I didn't tinkered I would not be advancing my computing frontiers. 2. I would be a hostage to the builder & that is unacceptable because I would rather try & solve this myself than either pay good money waiting for somebody to fix it.
                                                                                           Thanks yet again
                                                                                           spacechild(Ken Greene)
    PS. as far as the registration goes I guess I'm screwed yet again because of no receipt but this reinforces my point about being dependent on somebody else.
    I appreciate very much all the efforts you've done for me as far as this computer goes
                                                                                           spacechild

      To Maesus, Emperor & Blazer:I have the MSI 925XE Neo Platinum 54g
    & I plan to use both of the Hard Drives meaning RAID 0.
    and the 11-1 card reader is an ATF Pro 9 model
    in addition my Power supply is a 450 watt Xion model with 18 Amps at +12v
    if that further helps you.
    Last night when I attempted to solve this I got this at the end of the startup process
    "Windows XP Professional Setup"
    "Windows cannot find the temporary installation files"
    "The Hard Drive on which Setup placed temporary files is not currently available to Windows XP.
    You may need a manufacturer supplied device driver or you may need to run setup again and select a drive that is compatible with Windows XP for the temporary installation files.
    See your Windows XP documentation for more information.
    On x86 based computers, floopy disks generated by setup for non CD installations are not suitable for installing from CD
    Setup cannot continue. To quit press F3
    then a 2nd screen with a red progress meter appears saying that the computer will reboot in 15 seconds then it reboots with the same message going in an infinite loop.
    what does this mean?
    also I think one of the reasons why I'm having this problem is that not only are the two optical drives are are on the Primary Master & Slave channel
    but the BIOS indicates that there are 3 more Master\Slave channels as well and the HD's are on the 3rd one
    again I truly appreciate this forum trying to be the Tech support that I'm not getting with the builder.
    I'm truly sorry about this as well but at least I'm learning in the same way that I did with the other computers I've had since 1994.
                                                                                        spacechild

  • Problems with running Photoshop CS6 and Bridge with Lightroom 4 also on the same PC

    I was running Photoshop and Bridge, then purchased Lightroom 4. Before installingt 4 I had no problems with Bridge, but since installing 4 all of the photo's that were held in bridge are now gone, but they are in Lightroom. With Lightroom, you are able to edit photos out of Lightroom and into Photoshop when necessary, save and close and it automatically changed the Lightroom picture.
    I have two PC's, one has Bridge on it (this one) and the other without, but both have both editing prgrams installed. On the other PC I can switch between Lightroom and Photoshop with no problems, but when I try to switch with this PC, the one with Bridge installed, it will open Photoshop, but the photo will not transfer. If I close Photoshop program and go back to Lightroom, it will tell me that the picture could not be transfered to Photoshop because it would not launch. If I close that message window, it will then launch Photoshop and the picture transferes over allowing me to edit and save as normal.
    My question is; does anyone know if Lightroom and Bridge should run side by side, or should I delete Bridge from this PC and see what happens. Bridge is just a holder and organizer of photos, wherease Lightroom does the same, but also has post editing capabilities. The two programs seem redundant, but if your running Photoshop, it's hard to get files out of Lightroom. It seems that you need to open Lightroom first, then you can view and chose a photo to work on, then move it back and forth between the two programs. This seems to make Bridge redundant.
    Thanks for any help or suggestions.
    he_b_gb1947

    Hi, Yes, but that actually wasn't the problem. I start out in Lightroom,
    then move to Photoshop if I have something that can't be fixed in
    Lightroom. The problem was that when I tried to edit, out of Lightroom and
    into Photoshop, I was getting an error message that Lightroom couldn't
    prepare files for transfer because Photoshop wouldn't open. But, it had
    opened, the picture just wouldn't transfer. If I closed Photoshop,
    Lightroom would try again and it would open and transfer the second time. I
    ended up going to the Adobe help, chat line, and they looked into my PC and
    located the problem, it's now working fine. Thanks to everyone for your
    inputs. Most appreciated.
    Gary

  • Tran.FBL1N - problem with showing correct amount regarding partial paymants

    Hello,
    Every day at my workplace I use transaction FBL1N which I use to see how much money I own to vendors and also to se how much is payed. However I have problem whit showing payed amounts for partial paymants (transaction F-59). For example:
    I own some vendor EUR 20.000,00 and I decide to pay him EUR 15.000,00 using partial paymant option (transaction F-59) because that's amount I have at the moment on my bank account. After that, when I choose that vendor using transaction FBL1N (with enabled option Open items on current date) so I coiuld see how much it is left to pay him, amount EUR 15.000,00 is not subtracted and reprt is still showing me that I own him EUR 20.000,00 which ofcourse is not correct.
    I also must note that in case I payed that vendor full amount I wouldn't have this problem and transaction FBL1N would show correct amount.
    I hope someone can advise me about this and help me solve my issue.
    Any help is appreciated and many thanks in advance for prompt replys.
    Cheers;)
    Adi
    Edited by: samnovice on Jul 18, 2011 1:22 PM

    thnx loky46, I understand it better now - I hva one more important question regarding this:
    Is there any way I can found total amount I own to one or more vendors (_regardless_ if it is full or partial paymant or combination of both paymants)? For example:
    Line 1 || VENDOR I || Eur 20.000,00 RE
    Line 2 || VENDOR I || Eur 15.000,00 AB
    TOTAL                     Eur   5.000,00
    but without using this option:
    you have to add the field "invoice reference" to your line layout and make a subtotal on it.
    Also, is it possible for line Eur 15.000,00 to become Close item because that part is payed and for rest of amount of Eur 5.000 to be Open item because is still not payed. I assume this can't be done but on this way I could now exact total amount of money which I own to my vendor(s) and it would be a of great help to me in every-day work.
    Thank you.
    Edited by: samnovice on Jul 19, 2011 3:26 PM

  • Problem with showing palette component which contains swing components

    hello, I have found a simple problem with jdeveloper IDE but this simple problem delays my project and it make late a big project so help me please. I want to add somes swing components to a JFrame
    but when I try to show the palette component as usual I didn't find the swing components like habit.
    Best Regards

    duplicate
    Frank

  • Problem with showing unit-label

    Hi All,
    i just have a problem with controls that have two displays (like
    slider). I need the digital display with an unit-label. But when I
    enable showing the label it appears two times and I have no chance to
    disable one. Is there a methode that I can reach my target?
    bye
    Henrik

    There is a way but it rather looks like a bug in LabVIEW...
    The object must be a control and the VI must be in Run Mode or running:
    Select the text in the unit label of the digital display and delete it.
    It can generate insane object errors if you manipulate the object further,
    thus it is safer just to hide the label.
    Jean-Pierre Drolet
    John Lum a écrit dans le message :
    [email protected]..
    > Henrik Skupin wrote:
    >
    > > i just have a problem with controls that have two displays (like
    > > slider). I need the digital display with an unit-label. But when I
    > > enable showing the label it appears two times and I have no chance to
    > > disable one. Is there a methode that I can reach my target?
    >
    > Others may have a more
    elegant way of getting around this, but one quick
    > workaround is to edit the control to hide the unit label that you don't
    > want to see.
    >
    > Let's say you want to hide the unit label next to the slider part of the
    > control: simply select the control, do Edit >> Edit Control, move the
    > offending unit label over top of the digital display, then select Move to
    > Back from the Reorder menu.
    >
    > Regards,
    > John Lum
    > National Instruments
    >

  • I have problem with authorizing my computer. After i entered my AdobeID click authorize, it starts loading, but then it announces that an error has occured; Connection error. make sure you are connected to internet! haloo, I am. what can i do. its not the

    help

    Unfortunately I am running in circles as the result is the same.
    Thank you for the link but I have already had this page provided to me by my school. Nevertheless, I followed your advise, downloaded the latest version once again and restarted my computer. Again, I am not able to get my computer authorised, with or without an ID. I get either of the two messages : 1) Microsoft tells me there is a problem with my computer. 2) Adobe tells me I have no internet access and in order to proceed I should gain internet access.
    That is the reason why I have today purchased an AVG software. I have additionally purchased the service of having the AVG software installed on my computer by an AVG representative remotely by allowing him temporary access to my laptop. Subsequently he installed the software successfully, run all necessary checks, optimised my computer and there are currently no problems with it whatsoever.  
    I have then asked him for this additional favour to watch me trying to download the e-book using your software, just in case I am doing something incorrectly. He agreed and upon my attempting to download the e-book again, the same problems occurred. He followed the steps himself - again no joy. He then advised me to ask Adobe for help. In his opinion the program Adobe stops responding and there is nothing more he could do to help me. I had his reassurances that my computer is in full working order and the problem does not lie here.
    I am back to you asking you for help. I am attaching here photos of the two messages that keeping popping up whenever I try to download the e-book.
    Is there anything at all you can do to help me? I quite need this e-book for my exam which is fast approaching. I would be really grateful if you could sort something out...
    Thank you in advance. I look forward to hearing from you.
    Stela

  • Problem with authorize my computer

    Hi I am having problems with the authorization of my computer every time I go to "shop" "authorize computer"and the itunes asks me apple ID and password and I type it and later itunes says that this computer is Allow 1 of 5
    but when I go through my applications that I bought in itunes store the itunes says tah my computer is not authorized...
    What can I do to pass applicatives to my iPhone?

    I'm also having the same problem. They started after I replaced a hard disk.
    i-tunes wants authorization and gets...tells me the computer is already authorized and refuses to recognize the phone. If I run the sync it cleans out all of the apps from the phone and wont send any to the phone.

  • Problems with Russian characters in BB Bridge

    Some time ago my contact list on BB 9800 was updated using Desktop software for Mac. Some of contacts were written in Russian. Same updates were made for MemoPad as well in the same manner. Everything was good on the smartphone side before I made an attempt to sync my phone with Playbook. Both sections refused to sync! After removing manually all contacts and memos with Russian font, the sync went normal again. There are a lot of problems with Playbook, which cost me my time and money. This was just one of them... Why not to say it clear - do not try to sync Russian characters?

    Same problem when I use Chinese.
    The only thing we can do now is to wait for an update! Which is hopefully make the Playbook worth something!

Maybe you are looking for

  • Time Machine Backup to Shared Firewire Drive Not Working

    Hello I know this may have been posted before, but I am looking for a simple troubleshooting / diagnostic process I can follow to resolve my issue: I have a Imac running Lepoard with all possible software updates. A WD Studio 500GB drive is attached

  • Help Setting Up File and Web Server in OS 8.6

    I have an OS 8.6 400mhz G3 B&W with 512mb RAM and an 80GB HD. It has the OEM operating system which is 8 on it. First I can't access the computer via afp from a Leopard Machine (Yes appletalk is enabled.). It gives me the error -36. Which is "The Fin

  • Creating playlists from a remote mac mini

    I have most of my music ripped to a Mac Mini using iTunes. when I use my G5, i can see of the music and play it on the G5 (or any other Mac in the house). I'm sure i've done this next thing before, but I can't remember how i did it. I want to create

  • Solaris 10 boot oddity

    I'm pretty new to Solaris, but I have a pretty solid background in unixy/linuxy type OSes. I've been getting into Java lately so I figured I might as well install Solaris just cuz'. So I have my root account, and my "poweruser" account that's simply

  • Error MDX_PARSER

    Hello. When i try to execute the connection MDX_PARSER in SM59 occurs the follow error: ERRO                 connection to partner broken LOCALIZ.             SAP-Gateway on host ashb01wa06qa / sapgw42 DETAL.               NiPRead (127.0.0.1/0, hdl 7