Labels not working...bridge doesn't remember labels

Adobe Bridge doesn't remember labels in CS4 in two computers...both Vista?

You could look at it another way.  Make your settings and folder selection then use file/exit. 
Then no matter how you close it in future, or where you are at, it will open at your default setting.
Be aware however that it is always running in the background and must be closed to install updates.

Similar Messages

  • USB flash disk is not mounting, Xfce doesn't remember the setting

    Hello,
    I'm new in Archlinux and I think I can't set up it well. I use Linux for four years /Ubuntu, Debian/.
    Now I have installed system with X server, Slim and Xfce.
    1/ I have one big problem. I want to automount my flashdisk but it doesn't work like in Debian. I don't know what is wrong. When I put my flashdisk to USB, it's blinkig but nothing else happened. But I see the flashdisk in lsusb
    [root@arch martin]# lsusb
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 004 Device 003: ID 04d9:048e Holtek Semiconductor, Inc. Optical Mouse
    Bus 001 Device 003: ID 1005:b113 Apacer Technology, Inc. Handy Steno 2.0/HT203
    2/ Xfce doesn't remember the settings... When I log out and log in again, the panel, desktop and keyboard have the default settings all the time.
    3/ All is in english. I'm from Czech Republic /excuse my bad english/ and I want to have applications in czech language. I've set up and generated locales but nothing happened...
    Thank you a lot to solve those problems!!
    Some files...
    rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # DAEMON_LOCALE: If set to 'yes', use $LOCALE as the locale during daemon
    # startup and during the boot process. If set to 'no', the C locale is used.
    # HARDWARECLOCK: set to "", "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # Note: Using "localtime" is discouraged, using "" makes hwclock fall back
    # to the value in /var/lib/hwclock/adjfile
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # Note: if unset, the value in /etc/localtime is used unchanged
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="cs_CZ.utf8"
    DAEMON_LOCALE="no"
    HARDWARECLOCK="localtime"
    TIMEZONE="Europe/Prague"
    KEYMAP="cz-qwertz"
    CONSOLEFONT="lat2-16"
    CONSOLEMAP="8859-2"
    USECOLOR="yes"
    # HARDWARE
    # MODULES: Modules to load at boot-up. Blacklisting is no longer supported.
    # Replace every !module by an entry as on the following line in a file in
    # /etc/modprobe.d:
    # blacklist module
    # See "man modprobe.conf" for details.
    MODULES=(nvidia)
    # Udev settle timeout (default to 30)
    UDEV_TIMEOUT=30
    # Scan for FakeRAID (dmraid) Volumes at startup
    USEDMRAID="no"
    # Scan for BTRFS volumes at startup
    USEBTRFS="no"
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="arch"
    # Use 'ip addr' or 'ls /sys/class/net/' to see all available interfaces.
    # Wired network setup
    # - interface: name of device (required)
    # - address: IP address (leave blank for DHCP)
    # - netmask: subnet mask (ignored for DHCP) (optional, defaults to 255.255.255.0)
    # - broadcast: broadcast address (ignored for DHCP) (optional)
    # - gateway: default route (ignored for DHCP)
    # Static IP example
    #interface=eth0
    #address=192.168.0.2
    #netmask=255.255.255.0
    #broadcast=192.168.0.255
    #gateway=192.168.0.1
    # DHCP example
    interface=eth0
    address=
    netmask=
    gateway=
    #interface=
    #address=
    #netmask=
    #broadcast=
    #gateway=
    # Setting this to "yes" will skip network shutdown.
    # This is required if your root device is on NFS.
    NETWORK_PERSIST="no"
    # Enable these netcfg profiles at boot-up. These are useful if you happen to
    # need more advanced network features than the simple network service
    # supports, such as multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    # If something other takes care of your hardware clock (ntpd, dual-boot...)
    # you should disable 'hwclock' here.
    DAEMONS=(hwclock syslog-ng dbus udev evdev network netfs crond slim)
    eth0="dhcp"
    INTERFACES=(eth0)
    ROUTES=(!gateway)
    /etc/X11/xinit/xinitrc
    #!/bin/sh
    userresources=$HOME/.Xresources
    usermodmap=$HOME/.Xmodmap
    sysresources=/etc/X11/xinit/.Xresources
    sysmodmap=/etc/X11/xinit/.Xmodmap
    # merge in defaults and keymaps
    if [ -f $sysresources ]; then
    xrdb -merge $sysresources
    fi
    if [ -f $sysmodmap ]; then
    xmodmap $sysmodmap
    fi
    if [ -f "$userresources" ]; then
    xrdb -merge "$userresources"
    fi
    if [ -f "$usermodmap" ]; then
    xmodmap "$usermodmap"
    fi
    # start some nice programs
    if [ -d /etc/X11/xinit/xinitrc.d ] ; then
    for f in /etc/X11/xinit/xinitrc.d/* ; do
    [ -x "$f" ] && . "$f"
    done
    unset f
    fi
    #twm &
    #xclock -geometry 50x50-1+1 &
    #xterm -geometry 80x50+494+51 &
    #xterm -geometry 80x20+494-0 &
    #exec xterm -geometry 80x66+0+0 -name login
    exec ck-launch-session startxfce4
    /etc/slim.conf
    # Path, X server and arguments (if needed)
    # Note: -xauth $authfile is automatically appended
    default_path /bin:/usr/bin:/usr/local/bin
    default_xserver /usr/bin/X
    xserver_arguments -nolisten tcp vt07
    # Commands for halt, login, etc.
    halt_cmd /sbin/shutdown -h now
    reboot_cmd /sbin/shutdown -r now
    console_cmd /usr/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/issue; exec /bin/login"
    #suspend_cmd /usr/sbin/suspend
    # Full path to the xauth binary
    xauth_path /usr/bin/xauth
    # Xauth file for server
    authfile /var/run/slim.auth
    # Activate numlock when slim starts. Valid values: on|off
    numlock on
    # Hide the mouse cursor (note: does not work with some WMs).
    # Valid values: true|false
    # hidecursor false
    # This command is executed after a succesful login.
    # you can place the %session and %theme variables
    # to handle launching of specific commands in .xinitrc
    # depending of chosen session and slim theme
    # NOTE: if your system does not have bash you need
    # to adjust the command according to your preferred shell,
    # i.e. for freebsd use:
    # login_cmd exec /bin/sh - ~/.xinitrc %session
    #login_cmd exec /bin/bash -login ~/.xinitrc %session
    login_cmd exec ck-launch-session startxfce4
    # Commands executed when starting and exiting a session.
    # They can be used for registering a X11 session with
    # sessreg. You can use the %user variable
    # sessionstart_cmd some command
    # sessionstop_cmd some command
    # Start in daemon mode. Valid values: yes | no
    # Note that this can be overriden by the command line
    # options "-d" and "-nodaemon"
    # daemon yes
    # Available sessions (first one is the default).
    # The current chosen session name is replaced in the login_cmd
    # above, so your login command can handle different sessions.
    # see the xinitrc.sample file shipped with slim sources
    sessions xfce4,icewm,wmaker,blackbox
    # Executed when pressing F11 (requires imagemagick)
    screenshot_cmd import -window root /slim.png
    # welcome message. Available variables: %host, %domain
    welcome_msg Welcome to %host
    # Session message. Prepended to the session name when pressing F1
    # session_msg Session:
    # shutdown / reboot messages
    shutdown_msg The system is halting...
    reboot_msg The system is rebooting...
    # default user, leave blank or remove this line
    # for avoid pre-loading the username.
    default_user martin
    # Focus the password field on start when default_user is set
    # Set to "yes" to enable this feature
    #focus_password no
    # Automatically login the default user (without entering
    # the password. Set to "yes" to enable this feature
    #auto_login no
    # current theme, use comma separated list to specify a set to
    # randomly choose from
    #current_theme default
    current_theme archlinux-darch-white
    # Lock file
    lockfile /var/lock/slim.lock
    # Log file
    logfile /var/log/slim.log
    locale -a
    [root@arch martin]# locale -a
    C
    POSIX
    cs_CZ.utf8
    en_US
    en_US.iso88591
    en_US.utf8
    Last edited by Zelva (2011-09-05 18:19:15)

    With xfce4 I use .....mount /dev/sd(xx) /mnt/md...
    Setup .../mnt/md in /mnt with ..cd /mnt...mkdir /mnt/md
    This will mount the flash drive.
    I do not know automount for xfce4.

  • External speakers not working/option doesn't appear in pref panel

    My external speakers suddenly stopped working for all sounds. When I go under the system preferences --> output, it only lists headphones. The headphones do work and nothing is muted. The external speakers themselves also work on a different computer. I reset the PRAM, which did not work.
    Any help would be greatly appreciated!
    Thanks!
    iMac G4   Mac OS X (10.3.9)  

    Given the number of reports I see on macbook pro audio jack problems I get the impression that that jack is not that reliable.  Look at the More Like This section n the right for possible related issues and fixes.
    Since I have a mac pro, not a macbook pro (you posted in th wrong forum, should have been the macbook pro forum) I won't comment further than to try the software suggestion of trying a smc reset.

  • HTML in Analysis column prompt's label not working

    Hi all,
    In 11.1.1.6, I have an Analysis column prompt (not a dashboard prompt).
    In the prompt label property I have html, which the help dialog box says can be used, however, the html is not displaying as intended. It's showing the html tags along with the text. Even something simple, like just having a bold tag or font color tag doesn't work - it displays this literally.
    In 10g, I had the html in the description property and it worked fine. It seems in 11g the description property is for tool tip text.
    Any ideas on how to fix this?
    Thanks.
    Edited by: djflo on Jul 18, 2012 5:34 PM

    Use one prompt. Make it a dashboard prompt instead of a column prompt save it to a presentation variable. Then you can apply two filters to the column, one "less than or equal to" your presentation variable and one "greater than or equal to" your presentation variable. Although the default operand is "AND," just click on it and it will change to "OR."
    You can also do one filter and just make it "not in/not equal to."

  • Script Labels Not Working In CC

    Any time I attempt to edit a script label in InDesign CC, the change is not applied.  Clicking off the element results in anything typed being erased. This was a persistent problem for us in CS5 (hitting tab after entering the content made it stick), but was completely resolved in CS6, but is back rearing its ugly head in CC.

    Have you tried searching the forum? There have been several questions regarding this.
    Searching has changed between CS2 and CS4.
    Try putting the script in folder: Applications/Adobe InDesign/Scripts/Scripts Panel/Version 4.0 Scripts

  • Targeting symbol with on off labels not working

    Hi,
    I am trying to have this gray button on the right turn the "What is NeoGraft" symbol to white when moused over, and show hide some content.
    Content show hide  is working, but the nested symbol q1_off with the on and off labels isn't working. I think my code is certainly targeted wrong.
    This is the code applied to my ugly gray button:
    sym.$("q1_off").stop("off");
    What am I missing to target the q1_off symbol and tell it to go to the frame I want?
    Here's a link to where I'm at. http://newhairutah.com/edge/res_faqs_01.html
    thanks,

    Hey,
    Is there a protective case or film on the iPhone? If there is try testing without it.
    Then try the general tips in this article: http://support.apple.com/kb/HT1650#faq22
    If the issue persists, the iPhone may need hardware repair. Make a reservation to have a Genius at a local Apple retail store take a look at it or call AppleCare.
    http://www.apple.com/retail/geniusbar/
    U.S. iPhone technical support: 1-800-MY-IPHONE (1-800-694-7466)
    -Jason

  • Timerjob is not working - it doesn't show up in central admin monitoring tab

    Dear all,
    I have enabled the timer job using the following class file and event receiver file. After enabling in powershell - the job is not appearing in job definition in central administration.
    Any inputs are highly appreciated. Since I am new to SP2010 - I will then try to debug the timer job.
    C# class fileusing System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Net.Mail;
    using System.Text;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Administration;
    namespace TrainingTimerJobs
    public class TJ_ProcessInstructorSchedules : SPJobDefinition
    public TJ_ProcessInstructorSchedules() : base() { }
    public TJ_ProcessInstructorSchedules(string jobName, SPService service, SPServer server, SPJobLockType targetType) : base(jobName, service, server, targetType) { }
    public TJ_ProcessInstructorSchedules(string jobName, SPWebApplication webApplication) : base(jobName, webApplication, null, SPJobLockType.ContentDatabase) { this.Title = "Training Registration Portal - Process Instructor Schedules"; }
    public override void Execute(Guid targetInstanceId)
    //Access the Trainers list
    SPWebApplication webApp = this.Parent as SPWebApplication;
    SPSite trainingSite = webApp.Sites["sites/training"];
    SPWeb rootWeb = trainingSite.RootWeb;
    SPList trainersList = rootWeb.Lists["Trainers"];
    SPListItemCollection trainers = trainersList.Items;
    foreach (SPListItem trainer in trainers)
    //Store the trainer's email address
    string trainerEmail = trainer["E-mail Address"].ToString();
    //Store the trainer's full name for future use
    string trainerFullName = trainer["Full Name"].ToString();
    //Access the Classes list and retrieve classes for this trainer that occur in the future
    SPList classesList = rootWeb.Lists["Classes"];
    SPQuery getClassesForTrainer = new SPQuery();
    getClassesForTrainer.ViewFields = "<FieldRef Name='CourseTitle'/><FieldRef Name='Trainer'/><FieldRef Name='Venue'/><FieldRef Name='Registrations'/><FieldRef Name='StartDate'/><FieldRef Name='_EndDate'/>"; //CAML
    getClassesForTrainer.Query = "<Where><And><Eq><FieldRef Name='Trainer' /><Value Type='Lookup'>" + trainerFullName + "</Value></Eq><Geq><FieldRef Name='StartDate'/><Value Type='DateTime'><Today /></Value></Geq></And></Where>";
    SPListItemCollection classesForTrainer = classesList.GetItems(getClassesForTrainer);
    //Iterate through the classes and build an email to send to the Trainer
    string emailSubject = "Instructor Schedule for " + trainerFullName;
    string emailBody = "";
    emailBody += "Hello " + trainerFullName + ",<br/><br/>";
    emailBody += "Here is your upcoming schedule. If you have any questions, please contact Judy Moore ([email protected]) or Amanda Stevenson ([email protected]).<br/><br/>";
    foreach (SPListItem scheduledClass in classesForTrainer)
    emailBody += scheduledClass["CourseTitle"].ToString().Remove(0, 3) + " at " + scheduledClass["Venue"].ToString() + " starting at " + scheduledClass["StartDate"].ToString() + " and ending at " + scheduledClass["_EndDate"].ToString() + ", which has " + scheduledClass["Registrations"].ToString() + " registrations.<br/>";
    emailBody += "<br/>Thank you!<br/><br/>";
    emailBody += "Do not reply to this message; it is an automatically generated system message.";
    //Send the email
    MailMessage instructorScheduleEmail = new MailMessage("[email protected]", trainerEmail, emailSubject, emailBody);
    instructorScheduleEmail.IsBodyHtml = true;
    SmtpClient smtpClient = new SmtpClient("inmaa3bms0036");
    smtpClient.Send(instructorScheduleEmail);
    }Event Receiverusing System;
    using System.Runtime.InteropServices;
    using System.Security.Permissions;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Administration;
    using Microsoft.SharePoint.Security;
    namespace TrainingTimerJobs.Features.Feature_TrainingTimerJobs
    /// <summary>
    /// This class handles events raised during feature activation, deactivation, installation, uninstallation, and upgrade.
    /// </summary>
    /// <remarks>
    /// The GUID attached to this class may be used during packaging and should not be modified.
    /// </remarks>
    [Guid("6824fc32-2347-49b2-9a85-fbe53e7c8cee")]
    public class Feature_TrainingTimerJobsEventReceiver : SPFeatureReceiver
    // Uncomment the method below to handle the event raised after a feature has been activated.
    public override void FeatureActivated(SPFeatureReceiverProperties properties)
    SPWebApplication webApp = properties.Feature.Parent as SPWebApplication;
    if (webApp.Name == "tandoor.ifmr.co.in")
    foreach (SPJobDefinition job in webApp.JobDefinitions)
    if (job.Name == "Training Registration Portal - Process Instructor Schedules")
    job.Delete();
    TJ_ProcessInstructorSchedules tjSendSchedules = new TJ_ProcessInstructorSchedules("Training Registration Portal - Process Instructor Schedules", webApp);
    tjSendSchedules.Title = "Training Registration Portal - Process Instructor Schedules";
    SPWeeklySchedule weeklySchedule = new SPWeeklySchedule();
    weeklySchedule.BeginDayOfWeek = DayOfWeek.Friday;
    weeklySchedule.BeginHour = 16;
    weeklySchedule.EndDayOfWeek = DayOfWeek.Friday;
    weeklySchedule.EndHour = 17;
    tjSendSchedules.Schedule = weeklySchedule;
    tjSendSchedules.Update();
    // Uncomment the method below to handle the event raised before a feature is deactivated.
    public override void FeatureDeactivating(SPFeatureReceiverProperties properties)
    SPWebApplication webApp = properties.Feature.Parent as SPWebApplication;
    if (webApp.Name == "tandoor.ifmr.co.in")
    foreach (SPJobDefinition job in webApp.JobDefinitions)
    if (job.Name == "Training Registration Portal - Process Instructor Schedules")
    job.Delete();
    // Uncomment the method below to handle the event raised after a feature has been installed.
    //public override void FeatureInstalled(SPFeatureReceiverProperties properties)
    // Uncomment the method below to handle the event raised before a feature is uninstalled.
    //public override void FeatureUninstalling(SPFeatureReceiverProperties properties)
    // Uncomment the method below to handle the event raised when a feature is upgrading.
    //public override void FeatureUpgrading(SPFeatureReceiverProperties properties, string upgradeActionName, System.Collections.Generic.IDictionary<string, string> parameters)

    Hi sathyaav,
    Based on your code, I suggest you debug your code step by step to see to check whether the variables are valid.
    Also, I suggest you check if you have actived web application feature in Central Administartion ->"Manage Web Applications"->select web application and click manage feature in ribbon->Active your timer job.
    Here is a detailed code demo for your reference:
    Create and Deploy Custom Timer Job Definition in SharePoint Programatically
    Best Regards
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Zhengyu Guo
    TechNet Community Support

  • The 'Clear search history' button in mygoogle search box is not working; it doesn't clear the searches. I can clear them by going to the firefox tools 'Clear recent history' button. Why is this? How to fix it please.

    The 'Clear History' button in my 'Google' search box has stopped working. it does not clear the searches. I have to go to Tools - 'Clear recent history' in the toolbar to clear the 'Google' searches. Why is this?How to fix it please. James McGunn

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    * [[Troubleshooting extensions and themes]]

  • Output to PDF module not working - Bridge CS4

    In Bridge the Output module (sidebar) does not display, as well I cannot output a selection of images to a PDF file.
    I tried to update the program and received the following error message:
    "Adobe Output Module 2.1: Failed to Install"
    Has anyone here encountered a similar problem?
    Cheers,
    Michael

    Richard
    Glad to see I'm not the only one.
    Having dealt with our friends (Adobe Support), who although willing to respond, have not been able to solve this issue. Now it appears I will not longer receive their kind (but not so helpful) suggestions unless I fork over more money to assist in debugging the product :-(
    Since acquiring the Master Suite, there have been a number (5 in all) updates that simply won't install, and the Output Module is flaunted as a relatively important part of the collection for creating WEB sites.
    Hopefully, there are others who have this issue and are willing to post here. It seems it may be the only way we are going to see something done about this.
    Cheers,
    Michael

  • Restoring,from,Phone,4's,BIOS,7.04,to,Phone,6,BIOS,8.1,using,Tunes,11.4,not,work ing.,Doesn't,know,Phone,6,is,been,restored

    HHow do I fix this if not practical to upgrade mac to Yosemite and iTunes 12 doesn't run on Mac OS 10.6.8.

    I want to be able to use iTunes to manage the setup and use of my wife's new iPhone 6. Right now, even though I restored my wife's phone from a backup of her prior iPhone 4S onto the iPhone 6 my iTunes (11.4) does think I've done so. When I plug the phone into the Mac using the USB, iTunes asks me if I want a new phone or restore from a backup. I don't want it to delete all the stuff on her phone. My wife would be very upset. I just want it to manage the rest of the setup (if any) and then let me administer her phone in iTunes.

  • Bridge doesn't remember my import photos location

    Everytime I install photos into Bridge from my cardreader, I have to insert the location folder of where they are to be saved to which is on my D drive. The next time that I install images from my card reader, it points to the default folder on my C drive and I have to locate the D drive folder again that I want my imagas to go to.
    The popup that I'm getting to do all of this comes from when I attach my cardreader to the computer and a popup comes up and asks me if I want to intall or open in one of serveral places. I choose Adobe bridge and that's when the Get photo box comes up to where I need to give it a location to be saved.
    Please help

    I unchecked the auto load Bridge at startup, then imported an image to
    bridge from my card and told it where to save to. I deleted that image once
    imported into Bridge. Then imported again from the card and the default
    location is still the C drive instead of where I had directed it to the D
    drive previously. So still didn't work.

  • ACR is not working, it doesn't appear, i get an error message in spanish [my language] that says something like: It's not the right kind of document. Is just a 5DmkIII Raw...

    Can anyone help me please?
    I already uninstalled it. Rebooting, dont know what to do. No chat online in adobe?

    What version of Photoshop are you running?
    First you need to determine when Adobe released support for your Canon EOS 5D Mark III camera in Photoshop.  To do that, look at these two pages.  Specifically, you'll want to find out the earliest version of Camera Raw that can support your camera, then what version of Photoshop can run that version of Camera Raw.
    Camera Raw plug-in | Supported cameras
    Camera Raw-compatible Adobe applications
    If your version of Photoshop CAN support your camera, but you don't presently have the latest Camera Raw, use Help - Updates in Photoshop to get it.
    If your version of Photoshop CANNOT support your camera directly, you can download and install the latest version of the free Adobe DNG Converter, which can take your raw files as input and put out DNG format files, which your version of Photoshop can open.
    Photoshop Help | Digital Negative (DNG)
    The DNG converter does work, and you will be able to open the converted DNG files with an older version of Photoshop, but if you want maximal quality from your raw files (not to mention the convenience and ease of use of directly opening your raw files) you'll want the latest version of Photoshop. Adobe has made substantial improvements in raw conversion quality in recent years.
    Note the availability of the low cost Creative Cloud Photography bundle:
    Creative Cloud free trial & plans : Adobe Creative Cloud
    -Noel

  • ITunes not working, reinstalling doesn't help

    iTunes has stopped working on my computer. When I run it, it starts up normally. As soon as I select any option, it hangs showing the "moving circle" cursor.
    I have completely uninstalled iTunes (using the instructions on the website including iTunes, Quicktime, Bonjour, Apple mobile devices, and apple shared software) and removed all directories associated with iTunes.
    When I reinstalled iTunes it come up logged into my iTunes account so apparently the instructions on the website do not completely remove it. I also had the same problem.
    Over the last few weeks my problems with iTunes have gotten progressively worse.
    They began with my iPad. At this point iTunes itself was fine. I'd plug the iPad into iTunes (either starting up with it conneceted or plugging it in after iTunes was running) and iTunes would hang. This would last for about 5 minutes and then iTunes would become responsive again, but the iPad would not show up. After I would get control of iTunes back, I ran the diagnostics under help and the iPad was recoginized. My iPad also showed up as a device under windows. My iPhone 4 and iPod nano both still worked properly.
    I uninstalled and reinstalled iTunes using the instructions on the website and it didn't help.
    I left the situation as it was for a couple weeks, not syncing my iPad. Then today, my iPhone 4 began doing the same time. iTunes would hang for 5 minutes with my phone connecetd and then the phone would fail to show up when I got control back.
    I again uninstalled iTunes, but this time I renamed the iTunes directory so that it would build a new one when I reinstalled.
    After reinstalling, iTunes comes up. Shows an empty library which I expected, shows me logged into my iTunes account which I didn't expect, and it hangs (with the moving blue circle cursor) whenever I try to do anything.
    I also tested plugging my iPad and iPgone into another computer with iTunes installed and they work fine.
    Any help would be really appreciated.
    Thanks

    I did follow the instructions and deleted the preference files. This didn't help, but did get iTunes to treat the installation as a new one.
    A new version of iTunes came out today, so I did a complete uninstall and reinstall. I again removed the preference files. After installing, iTunes itself seemes to be working. I can log in with my Apple ID and it does not hang anymore. Unfortuantely the problem with attaching my iPhone 4 and iPad still occurs. When I plug them in iTunes "hangs" for about 5 minutes. When iTunes becomes responsive again, the devices do not show up. Windows recognizes the devices and iTunes diagnostics also reconize the devices even down to the serial number. Maybe resetting the devices would help, but you can understand I how reluctant I am to do anything that could make them inoperable.
    My iPod nano still connects to iTunes fine.
    So I have a functioning iTunes program with nothing in the library, a functioning apple ID, and no way to sync, upgrade, or backup my iPad and phone.
    BTW polydorus ... thanks for taking the time to help. It's a thankless job trying to help the frustrated.

  • The camera on my iPod will not work, it doesn't even open. How do I get it to work?

    I tried resetting my iPod the camera worked then but when I tried to flip it to the front camera it closed and now it doesnt work again.

    Just what are you saying? You are not not the person who posted the problem/question.
    just219 wrote:
    lllaass wrote:
    If you restored to factory defaults/new iPod and still have the problem that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    yes and it works most of the time after the restore

  • My lock button is not working,it doesn't click what should I do to fix this

    My lock button is not clicking and it won't lock unless I push really hard and I really want to fix it how do I do that or do I have to buy a new one

    Have you considered taking it in for service?

Maybe you are looking for

  • Is time capsule no longer supporting IP cam setup?

    My IP cam used to work with my Time Capsule. However, since i update firmware, i find my IP cam no longer work with my time capsule. I even can not find IP cam set up from Airport tools.

  • Help with Creating a list based on conditions

    Hi, im doing a project in java at college, and this is what the project says; Every November, on the last Wednesday of the month, Salchester Primary School holds its annual school games competition. The school is very small and pupils from all classe

  • Can i run the pakage from other method

    dear i want to know and how work the following job. i have four jar files which include in my classpath. but when i deploy the application to the user i want that no need to set the classpath by the user. i think there is two ways 1.classpath added a

  • Yosemite/Aperture 3.6 No Support for Nikon D810/ Raw-S Files ?

    I am thoroughly confused.  I only recently began "drinking the Apple Kool-Aid" and am quite disturbed to learn (after upgrading to Yosemite & Aperture 3.6) that Nikon d810 Raw-S files are NOT supported.... What gives ?  I mean you pay premium dollars

  • S1000d - Business Rule validation

    Hi- I have just started using S1000d, i created  a rule in my business module( eg //description/para/emphasis) with allowedObjectFlag=0 , i have also set my Data module pointing to the business module. And so, when and how does my Data module get val