Bridge halts on program start

CS6 (revision number unknown -- it's the latest), 64-bit on Windows 7. Start program, freezes, throws error: "Adobe Bridge CS6 has stopped working and will now stop." Have tried trouble-shooting suggestions to no avail. (Even the ones that make no sense. Work has stopped while this hangs us up. What causes this? How to fix it?
Mark Alger

A likley reason for the media folder appearing on the desktop is that it can't be accessed/created where it is supposed to be. This can sometimes happen with libraries that have been migrated from one user or system to another.
Repair Permissions for the iTunes & iTunes Media folders
Right-click on your main iTunes folder (normally in <User's Music> and click Properties,  then go to the Security tab and click Advanced. Use the Change Permissions... button grant to your account (or the Users group) and SYSTEM full control of this folder, subfolders and files, then tick the option to Replace permissions entries... which will repair permissions throughout the library. When complete switch to the General tab, click in the Read-only check box to clear it, then click Apply.
If you don't have the option to change the permissions then use the Owner tab and Edit... button to take ownership from an account with administrator privileges. Tick the option to Replace owner on subcontainers and objects.
Repeat with the media folder if it isn't stored inside the main iTunes folder. Check under Edit > Preferences > Advanced if you're not sure.
Obviously if the media folder is set to the desktop in preferences that would also account for your observations...
tt2

Similar Messages

  • Bridge CD5 will not start

    I am unable to start Bridge CS5. After some weeks of using Photoshop CS5(but not Bridge) with no problems until I tried to open Bridge on my Windows 7computer. A bessage asked if I wanted to link HDR Efex 2 to Bridge which I accepted. Sine then Bridge has bee inaccessible.
    I uninstalled Photoshop CS5 and reinstalled it, getting a message that it had been installed successfully but it wouldn’t run, neither would Bridge. A look in the Program files folder revealed only about two or three folders scattered between the PS and Bridge entries. Started the uninstall program again but this time only the Preferences were available so I selected those. Then I reinstalled Photoshop CS5, this time getting a fuill reinstall of Photoshop and and Bridge.
    Photoshop CS5 opens normally, but Bridge will not, even if I double click Bridge.exe in Program Files\Bridge.
    At no time have I been able to uninstall Bridge as it does not appear in the Control Panel listing of programs.
    I am able to work on images in ACR by opening it through CS5. MiniBridge will open but I get a message saying that it is waiting for the full Bridge.
    Any assistance will be appreciated.
    Details:
    Adobe Photoshop Version: 12.0.4
    Operating System: Windows 7 32-bit Service Pack 1
    Note: already submiitted today before I found the sign-in

    Bridge is a part of PS so if you uninstalled CS5 you uninstalled Bridge also.
    It appears you need to uninstall HDR Efex2 as it is a NIK plug in and don't see what it should do for Bridge.
    Then unistall CS5, run the Adobe Script Cleaner and reinstall CS5.

  • How do you clear the chart in an AI Waveform Scan VI upon program start?

    I am using a waveform scan vi in a program. The output of the vi is set to "Waveform". What I want to do is have the program automaticly clear the waveform chart each time the program starts. Currently I must start the program, right click on the chart and select clear. I have attempted to use the chart history property node, which I assumed is the correct path to take but so far my attempts have been unsuccessful.

    Ahhh, waveforms... These got better in LV 7 I hear.
    Will this do it?
    2006 Ultimate LabVIEW G-eek.
    Attachments:
    Problem_example.vi ‏41 KB

  • Why are the buttons not visible at program start?

    Can anybody tell me why the buttons are invisible at Program start? They are only then visible, if the client are is invalidated, in other words, if i resize/minimize the window etc.
    public class Calculator extends Frame
    private Button[] button;
    private Panel p_button;
    public Calculator()
    super();
    SetWindowProperties();
    button = new Button[10];
    p_button = new Panel();
    CreateButtons();
    AddPanels();
    AddButtons();
    SetButtonProperties();
    addWindowListener(new WindowHandler());
    private void SetWindowProperties()
    setTitle("Calculator");
    setBackground(Color.white);
    setLayout(new BorderLayout());
    setSize(400,400);
    setLocation(250,200);
    setVisible(true);
    private void CreateButtons()
    for (int i=0; i<=9; i++)
    button = new Button(String.valueOf(i));
    private void SetButtonProperties()
    for (int i=0; i<=9; i++)
    button.setSize(50, 50);
    button.setBackground(Color.gray);
    private void AddButtons()
    p_button.setLayout(new GridLayout(5, 3, 5, 5));
    for (int i=1; i<=9; i++)
    p_button.add(button);
    for (int i=1; i<=9; i++)
    button.addActionListener(new ButtonHandler());
    private void AddPanels()
    add(p_button, BorderLayout.CENTER);
    }

    First, use code tags.
    Second, your code doesn't even compile. Please create a Short,Self Contained, Compilable and Executable, Example Program

  • I'v just installed creative cloud 64 bit windows. How can I make bridge the default program to upload pictures rather than lightroom?

    I've just installed creative cloud 64 bit windows.  How can I make bridge the default program to upload pictures rather than lightroom?

    Usually the default program associated with an image file extension is an image developing Program like Lightroom or an image editing program like Photoshop. If you want to change the default associated program to Adobe Bridge you would use Window's Controls Panel file association applet.

  • Program start/restart when windows startup

    Hi, I have a java program which I currently compile and run using "Command Prompt".
    However, I would like my program start running every time the window startup. How can I do that?
    Thanks in advance.

    http://jakarta.apache.org/commons/daemon/
    http://wrapper.tanukisoftware.org/doc/english/introduction.html

  • How do I Initialize a button to be enabled when the program start and if pressed then disable and gray it until a certain action is taken then comeback to the enabled state?

    Hi!!!
    I'm doing a program with the following buttons: Run, Abort, Repeat and Exit. When the program starts from the first time only Run and Exit button will be enabled and not disabled so the user doesn't press the Abort and Repeat button. The user has to select from a menu bar the test he wants to make then if he presses the Run button a pop up window will come up asking for the serial number and his name, and will comeback to the main program with the entered information. The user now has to press the Run button again to start the test, when the test starts the Abort button now will be enable
    d and not disabled, when the test ends the Repeat button will be enabled and disabled. If the user selects new test from the menu bar the whole process will come again. I'm having problems with the menu bar because it has a time-out and when that occurs the program gets crazy. Also I'm not sure about what mechanical action I have to use for the Run. Do I need to count the times the Run button is press so the 2nd time is pressed it will be disabled. Do I need to use a sequential and where I initialize the buttons so the first time they are like I want (Inside or OUtside the while loop that ends with the Exit button) Any help wil be appreciated.

    I'm not sure about the menu bar because i've never used them..i tend to go for listboxes instead.
    As for the buttons, if you want to wire the button to a local variable then the button must be a switch, otherwise a latch is ok. But remember you will probably need to reset the button at the end of a run (ie. wire a constant through the while loop to the local variable for the switch). To initialize the buttons at the start, wire constants to their locals outside the main execution while loop.
    Put the disabling/enabling functions in the parts of the program the button has activated. For example, you say the 2nd time the Run button is pressed you run the 'test', enable the Abort button and want to disable the Run button - put these property nodes into th
    e 'test' sequence/loop.
    Sequences are useful to control when you want buttons to be modified. I use them if i cant sequence the order of execution any other way. But try and avoid using multiple frames as it can get confusing if you start hiding code.
    If you are still having problems, post an example of your program in no higher than LV 6.0.2 and i will try and adapt it for you.
    Kim

  • Main program start before splash screen, help

    hi:
    below is the splash screen code:
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.io.PrintStream;
    import java.util.Random;
    class Splash extends JWindow {
         public Splash(String filename, Frame f, int waitTime) {
              super(f);
              JLabel l = new JLabel(new ImageIcon(filename));
              getContentPane().add(l, BorderLayout.CENTER);
              pack();
              Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
              Dimension labelSize = l.getPreferredSize();
              setLocation(screenSize.width / 2 - (labelSize.width / 2), screenSize.height / 2 - (labelSize.height / 2));
              addMouseListener(new MouseAdapter() {
                   public void mousePressed(MouseEvent e) {
                        setVisible(false);
                        dispose();
              final int pause = waitTime;
              final Runnable closerRunner = new Runnable() {
                   public void run() {
                        setVisible(false);
                        dispose();
              Runnable waitRunner = new Runnable() {
                   public void run() {
                        try {
                             Thread.sleep(pause);
                             SwingUtilities.invokeAndWait(closerRunner);
                        } catch (Exception e) {
                             e.printStackTrace();
                             // can catch InvocationTargetException
                             // can catch InterruptedException
              setVisible(true);
              Thread splashThread = new Thread(waitRunner, "SplashThread");
              splashThread.start();
    below is the constructor that started the splash and the main:
    public static void main(String args[])
    PictureViewer PV = new PictureViewer();
    standaloneApp = true;
    splash Splash sw = new Splash("prestigestetho.gif",null, 5000);
    the splash appear just fine, the problem is that it appears after
    my main program appear first.
    I try to shift the priority of splash, which is sw first and then PV,
    in that case the splash screen appear first then PV, but this time PV
    stay in front of sw makes it totally not viewable.
    is there any method to make splash screen appear first and on the screen you can see the process of main program starting up (for example
    : loading this ...., loading that.....) something like acrobat reader's
    startup screen, and then splash screen disappear and then main program
    pop up.

    okay, I got it, it's under SwingSet2.java the related code is as follow:
    // Used only if swingset is an application
    private JFrame frame = null;
    private JWindow splashScreen = null;
    // The tab pane that holds the demo
    private JTabbedPane tabbedPane = null;
    private JEditorPane demoSrcPane = null;
    private JLabel splashLabel = null;
    * SwingSet2 Constructor
    public SwingSet2(SwingSet2Applet applet, GraphicsConfiguration gc) {
    // Note that the applet may null if this is started as an application
         this.applet = applet;
    // Create Frame here for app-mode so the splash screen can get the
    // GraphicsConfiguration from it in createSplashScreen()
    if (!isApplet()) {
    frame = createFrame(gc);
    // setLayout(new BorderLayout());
         setLayout(new BorderLayout());
    // set the preferred size of the demo
         setPreferredSize(new Dimension(PREFERRED_WIDTH,PREFERRED_HEIGHT));
    // Create and throw the splash screen up. Since this will
    // physically throw bits on the screen, we need to do this
    // on the GUI thread using invokeLater.
    createSplashScreen();
    // do the following on the gui thread
         SwingUtilities.invokeLater(new Runnable() {
         public void run() {
              showSplashScreen();
    initializeDemo();
         preloadFirstDemo();
         // Show the demo and take down the splash screen. Note that
         // we again must do this on the GUI thread using invokeLater.
         SwingUtilities.invokeLater(new Runnable() {
         public void run() {
              showSwingSet2();
              hideSplash();
         // Start loading the rest of the demo in the background
         DemoLoadThread demoLoader = new DemoLoadThread(this);
         demoLoader.start();
    * Show the spash screen while the rest of the demo loads
    public void createSplashScreen() {
         splashLabel = new JLabel(createImageIcon("Splash.jpg", "Splash.accessible_description"));
         if(!isApplet()) {
         splashScreen = new JWindow(getFrame());
         splashScreen.getContentPane().add(splashLabel);
         splashScreen.pack();
         Rectangle screenRect = getFrame().getGraphicsConfiguration().getBounds();
         splashScreen.setLocation(
    screenRect.x + screenRect.width/2 - splashScreen.getSize().width/2,
              screenRect.y + screenRect.height/2 - splashScreen.getSize().height/2);
    public void showSplashScreen() {
         if(!isApplet()) {
         splashScreen.show();
         } else {
         add(splashLabel, BorderLayout.CENTER);
         validate();
         repaint();
    * pop down the spash screen
    public void hideSplash() {
         if(!isApplet()) {
         splashScreen.setVisible(false);
         splashScreen = null;
         splashLabel = null;

  • Bridge cc does not start

    cannot open bridge cc!  updated app and os, reinstalled no luck

    You have CS5 running in background.  In Bridge preferences/advanced uncheck "start bridge at login".

  • Program start-up slow under JWM

    I'm running JWM on my home computer owing to its lightness and configurability, and because I was able to configure it to look like gnome2--which I'd managed to get my wife to use--which is a less intimidating interface to certain members of my household. It's working ok, though it's not nearly as snappy as I'd expect it to be on this machine (which is a bit dated now, though with plenty of oomph for this lightweight desktop [early dual core, 2GB RAM]). Terminals and pcmanfm open fairly quickly--somewhere around 1 second or a bit less. I'd expect it to be closer to instantaneous, though.
    But when it comes to more substantial applications like firefox, chromium--even midori--or lowriter, the lag gets really noticeable. It takes something like 7 seconds for an application like midori or chromium to open after I've clicked on the respective icon. This is, of course, not a show-stopper: I can use the computer fine, despite the delays I'm seeing. But it does make me wonder whether something's misconfigured on this system.
    I recently did a long-overdue pacman -Syu on this system, so it's now using systemd. I also decided during that process that I wanted to get rid of the login manager (slim) to lighten things up a bit further. So I set the system up to log me in automatically, then boot to the GUI (using instructions found at https://wiki.archlinux.org/index.php/St … h_profile).
    I guess my .xinitrc file could be relevant, so I'll post its content below:
    #!/bin/sh
    # ~/.xinitrc
    # based on /etc/skel/.xinitrc as wiki says
    # Executed by startx (run your window manager from here)
    [[ -f ~/.Xresources ]] && xrdb -merge ~/.Xresources
    if [ -d /etc/X11/xinit/xinitrc.d ]; then
    for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
    done
    unset f
    fi
    xmobar &
    exec /usr/bin/jwm
    # exec ck-launch-session /usr/bin/jwm
    Anything look out of whack there? The final, commented line was entered from the Arch wiki entry for JWM, which appears quite out of date now, since consolekit seems to be deprecated. So I commented out that line. Can anyone spot any problems with this file?
    Also, I recently started Chromium from a terminal to see if it would output any error messages that could help me track down why I'm seeing these delays in program start-up. Following is what was output:
    Fontconfig warning: "/etc/fonts/conf.d/50-user.conf", line 9: reading configurations from ~/.fonts.conf is deprecated.
    [5586:5600:0201/113155:ERROR:object_proxy.cc(608)] Failed to get name owner. Got org.freedesktop.DBus.Error.NameHasNoOwner: Could
    not get owner of name 'org.freedesktop.NetworkManager': no such name
    [5586:5608:0201/113157:ERROR:object_proxy.cc(608)] Failed to get name owner. Got org.freedesktop.DBus.Error.NameHasNoOwner: Could
    not get owner of name 'org.chromium.Mtpd': no such name
    [5586:5608:0201/113157:ERROR:object_proxy.cc(608)] Failed to get name owner. Got org.freedesktop.DBus.Error.NameHasNoOwner: Could
    not get owner of name 'org.chromium.Mtpd': no such name
    Fontconfig warning: "/etc/fonts/conf.d/50-user.conf", line 9: reading configurations from ~/.fonts.conf is deprecated.
    [5586:5586:0201/113200:ERROR:object_proxy.cc(513)] Failed to call method: org.chromium.Mtpd.EnumerateStorage: object_path=
    /org/chromium/Mtpd: org.freedesktop.DBus.Error.ServiceUnknown: The name org.chromium.Mtpd was not provided by any .service files
    I think I understand about the fontconfig error and how to fix that. But the freedesktop.DBus stuff is not very comprehensible to me. Could that relate in some way to the unusual delays I'm seeing in program start-up?
    Input will be appreciated.
    Thanks,
    James

    Information on why the boot time is/maybe longer.
    Startup - Slow Boot
    Startup - Slow Boot (2)
    Startup - Slow Boot (3)

  • Configurat​ion value on program start

    I am not sure that it is a right thread or should it be in just LabView section.
    I have USB 6008 and I have created procedure of writing configuration file on exit (it writes values of different controls, Double, Boolean,string, etc.) and works fine. I have created procedure of reading of configuration file as well and it works. But I can not wire it to controls. I would like to have this values loaded and made default on program start. Is it possible? I have placed this procedure outside main while loop. Can somebody help me to make it right.
    Thanks. Sergey.

    Hi sergey,
    You need to place the local variables before you enter the loop- not in the while loop.
    Inside the loop everytime you go through another itteration, the local variable to reinitiate the values.  That is what's going wrong.
    Write to all of the local variables before you enter the while loop and the values will only be written to once. (at the start of the program)
    I have have attached the solution to your problem.  (You do however need to tidy up the code)
    Is that what you need?
    Hope it helps
    Many thanx
    AdamB
    Applications Engineer
    National Instruments
    Applications Engineering Team Leader | National Instruments | UK & Ireland
    Attachments:
    Basic20control-feedback5[1].vi ‏619 KB

  • NSView/NSBox in IB will not instantiate at program start

    Here's what I have:
    I have a view manager. This view manager is set as the class to an NSObject in IB. I have a view called MyView which is assigned a class called MyViewController in IB. In my MainMenu.xib in the window I have a NSBox that I use for my main view. It is this NSBox that I have linked to the Outlet in the MainViewManager shown below. (I hope the diagram below helps.)
    MYView NIB
    MYViewController.view ---> MYView
    MainMenu NIB
    In MainViewController (IB Object)
    <<IBOutlet>> MainViewController.mainView ---> NSWindow.NSBox
    The problem occurs when in tryToEndCurrentEdits the window is retrieved from the mainView. The mainView is nil and therefore no window is returned. The object below is set up as a NSObject in IB and has its mainView Outlet linked to the NSBox in the window in the MainMenu.xib. When the program starts the NSBox in the window should be instantiated and its reference linked to the mainView Outlet in the MainViewController; correct? The MainViewController is instantiated as it should be through IB and the window displays, but the NSBox does not display.
    I have used this technique before but I have never had it do this. I need the NSBox to instantiate so I can place views in it. Could this be a bug in 3.2.2? Has anyone used this before?
    Any help on this will be greatly appreciated.
    Thanks in advance,
    Rob
    #import <Cocoa/Cocoa.h>
    #import "MYViewController.h"
    @interface MainViewManager : NSObject {
    NSBox *mainView;
    #pragma mark Initializer
    - (void)init;
    #pragma mark Outlets
    @property (assign) IBOutlet NSBox *mainView;
    #pragma mark Instance
    - (MYViewController *)createView:(NSManagedObject *)mo;
    -(void)displayMainViewWithController:(NSViewController *)viewController;
    -(BOOL)tryToEndCurrentEdits;
    #pragma mark Notifications
    - (void)showMyView:(NSNotification *)notification;
    @end
    #import "MainViewManager.h"
    @implementation MainViewManager
    #pragma mark Initializer
    - (void)init{
    if (self = [super init]) {
    NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
    [nc addObserver:self selector:@selector(showMyView:) name:@"ShowView" object:nil];
    #pragma mark Destructors
    - (void)dealloc{
    NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
    [nc removeObserver:self forKeyPath:nil];
    [super dealloc];
    #pragma mark Outlets
    @synthesize mainView;
    #pragma mark Instance Methods
    - (MyViewController *)createView:(NSManagedObject *)mo{
    MYViewController *newView = [[MYViewController alloc]initWithNibName:@"MYView" bundle:nil];
    [newView setRepresentedObject:mo];
    return newView;
    -(void)displayMainViewWithController:(NSViewController *)viewController{
    if ([self tryToEndCurrentEdits]) {
    // Put the view in the box
    NSView *vw = [viewController view];
    // Set the new view
    [mainView setContentView:vw];
    // This method attempts to end any current edits. It returns YES if successful.
    -(BOOL)tryToEndCurrentEdits{
    // Try to end editing
    NSWindow *win = [mainView window];
    BOOL endedEditing = [win makeFirstResponder:win];
    if(!endedEditing){
    NSBeep();
    return NO;
    return YES;
    #pragma mark Notifications
    - (void)showMyView:(NSNotification *)notification{
    NSManagedObject *mo = (NSManagedObject *)[[notification userInfo]objectForKey:@"addedObject"];
    [self displayMainViewWithController:[self createView:mo]];
    @end

    I thought I would let everyone off the hook. I finally found the problem. I can't explain the problem, but I was able to fix it. It appears that my application got corrupted somehow. The way I finally found this was I built a test application and built that part the same way. It worked perfectly including fully instantiated view objects. So now everything is working.

  • I have a problem with elements 8. When ever I start a new project, the program searches for the old, latest used filmmaterial, I have used before. That means, if I use a different DVD, it take so much time, until the program starts. So how can I stopp the

    I have a problem with elements 8. When ever I start a new project, the program searches for the old, latest used filmmaterial, I have used before. That means, if I use a different DVD, it take so much time, until the program starts. So how can I stopp the automatically uploading of old material?
    Thanks

    You have 2 unreachable statements in this method.
    public static int eval(String s2, String op, String s3) {
    return lookup(s2);
    return lookup(op);
    return lookup(s3);
    } You're missing a } at the end of this method:
    public static int lookup(String s) {
        for(int k = 0; k < symbols.length; k++){
            String symbol = symbols[k];
            if(s.equals(symbol))
                return k;
        }You have some loose } and ; at the end of the file:
    public static void main(String args[])
    commandline();
    }

  • How do you make the program start?

    I have installed PSE 11 twice, now; the second time after an uninstallation of the first installation.  Both times, the program started immediately FROM the installation.  After exiting from the program, I have not been able to restart the program.  I click on it; I double click on it (which should start 2 copies of the program!); I right click and click Open; I right click and click "open as administrator".  Absolutely NOTHING happens.  Is there some sort of glitch that means you have to leave the program open permanently?  Please, how do I open the program? 
    Thank you.
    Cherie Brumfield

    Thanks so much for responding.  As it happens, I had already tried that
    approach, with no results.  I also spent some time last evening with a tech
    on the Adobe Chat page, also with no results.  So I just reloaded my PSE 8
    program, which does still work!  And this morning I get a notice of an
    Adobe update to PSE 11 and, guess what?!--NOW PSE 11 works just fine!!  Go
    figure!
    All of which has nothing to do with you having responded to my plea for
    help.  I really appreciate someone responding; it's nice to know that
    people "out there" really do care.  Thank you.
    Cherie
    On Wed, Feb 6, 2013 at 4:55 AM, bridge_mastero

  • Internal Communication Error at Program start.

    Hi experts,
    We are using the FM 'SXPG_COMMAND_EXECUTE' to execute the external command.Some times the program got canceled  and error is 'Internal communication error at program start (see system log)'. But when rerun the same program it get executed successfully. Does anybody have the idea why this is happening.
    Thanks in Advance.
    Abhishek.

    Hi Abhishek,
    I recommend to look for the error codes contained in the syslog and for their meaning. Maybe the following SAP Notes might be helpful for you:
    [202227|https://service.sap.com/sap/support/notes/202227] Recommended login shells
    [10403|https://service.sap.com/sap/support/notes/10403] Starting external programs
    Best regards,
      Andreas

Maybe you are looking for