How do I save library preferences?

This should be simple but I cannot make it happen.  When I upgraded last night to the new version of iTunes, "podcasts" was unchecked as a category to display in my library.  I can re-check the box, but the preferences/general dialog box doesn't have an option to save my changes--and the changes aren't saved if I close the box.  How do I save these preferences?

Thanks..... However, I cannot get Firefox to come up, so I cannot find the folder that has the info.

Similar Messages

  • How do I save my preferences so I can totally remove FireFox

    Since I apparently cannot run Firefox until I eliminate everything, including my preferences, from my system, and since I really need Firefox, how do I save my preferences so I can restore them after I get Firefox running again?

    Thanks..... However, I cannot get Firefox to come up, so I cannot find the folder that has the info.

  • How can I save my preferences?

    I am preparing to install a new hard drive in my computer and I don't want to lose all of my preferences.  How can I save these to reload after the install?
    I am using Adobe CS4 Extended v. 11.0.2 on a WIN XP Pro sp3 machine.
    Also, will my preferences carry over to Adobe CS6 Design & Web Premium?
    Thanks!
    Susan
    P.S. My current hard drive has sufferend two crashes already so I'm hoping to get the hard drive switched over as soon as it arrives (next day or 2).  Thanks!

    Thanks Curt, but I'm still confused by one statement in the article from the link you posted above.  The author states, "You can do this by making a new action set (folder) within PS, then drag your favorite actions into it from other sets, then save your favorites set in a safe place."
    I have created a "favorite actions" folder with my most used and self-created action sets in it.  But how do I save that favorite set?
    I have been able to find the other items as well, so thanks for the link...AND the tip about deactivating my products before pulling the drive.  (That's a step I'm certain my IT staff would have overlooked!)
    Susan

  • How can I save the preferences in Adobe Acrobat Standard XI?

    Hello,
    I'm not able to save any preferences in Acrobat. (like Units, display preferences, the locations of the tools...)
    Each time I exit and open again Acrobat, the preferences are not saved, which is very annoying
    Kind regards,
    Nicolas

    Try the forum for Adobe Acrobat.

  • How can I save general preferences?

    Not tool specific.  Things like grids, image interpolation, ect.
    I want to have a workspace specifically for pixel art, and do not want to have to reset all of the general preferences when I want to create a pixel art file.  Is there a way to save the general settings?
    Thanks!
    DC

    When I saved the new Workspace (Pixel Art), and reload my normal Workspace (Dana Standard), it saved the menu locations, but not specific tool presets nor anything under the General Preferences, like Grids, etc.  This is CS4, btw. 
    As a test, I saved the new workspace (Pixel Art) with grid settings at 8pixels/8subdivisions.  I then quit photoshop.  I relaunched, and the 8/8 settings remained.  When I reloaded my usual Workspace (Dana Standard), the menus changed, but all of the Photoshop general preferences remained the same, including the 8/8 grid settings.
    All of this means that Workspace does NOT save General Preferences. 
    Noel, when I save the Workspace, it only gives me three things to select and save:
    Panel Locations
    Keyboard Shortcuts
    Menus
    ...none of these are part of PS General Preferences.

  • How should I find my Screen Saver's preferences?

    I'm writing a screen saver that basically draws stuff the user types into a box. I have not completed it yet, because I have not been able to locate where the screen saver preferences are located. Here's the code that takes care of the preferences:
    //PrefControl.m
    //I wrote this on my brother's school computer. Go !:
    #import "PrefControl.h"
    //define what you have - not defined in header file because there is no need to access the predefined text in any other file:
    #define DISPLAYED_TEXT @"com.nodomain.Saver.DISPLAYED"
    @implementation PrefControl
    @synthesize displayed;
    -(id) init{
    self = [super init];
    if(self){
    //read user defaults
    NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
    displayed = [defaults stringForKey: DISPLAYED_TEXT];
    return self;
    -(void) writePrefs{
    //write preferences the way the UserDefaults guide says to:
    NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
    NSMutableDictionary* defs = [NSMutableDictionary dictionaryWithCapacity:1];
    [defs setObject:displayed forKey:DISPLAYED_TEXT];
    [defaults registerDefaults:defs];
    -(void) dealloc{
    [self writePrefs];
    [super dealloc];
    +(void) initialize{
    //set up user defaults for the first time:
    NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
    NSMutableDictionary* defs = [NSMutableDictionary dictionaryWithCapacity:1];
    [defs setObject:@"Hello, World!" forKey:DISPLAYED_TEXT];
    [defaults registerDefaults:defs];
    +(PrefControl*) prefs{
    return [[[PrefControl alloc]init]autorelease];
    @end
    and its header:
    //PrefControl.h
    //I wrote this.
    #import <cocoa/cocoa.h>
    @interface PrefControl:NSObject{
    NSString* displayed;//the text my Screen Saver displays.
    @property(readonly, nonatomic) NSString* displayed;
    -(id) init;//sets up all the properties. done over time.
    -(void) writePrefs;//writes the defaults.
    -(void) dealloc;
    +(void) initialize;//sets up the defaults.
    +(PrefControl*) prefs;//makes and autoreleases a new PrefControl.
    @end
    Now on to my question: Where can I find my preferences file? Is it the System Preferences preferences PLIST or is it my own Screen Saver's PLIST? How can I change the file so I can test if it saves properly? I am going to edit it with the PLIST editor that came with XCode.
    I prefer to do the behind-the-scenes work before working on the major GUI if I can.

    I just did a little test and changed something in my Screen Saver settings and looked to see what changed (just had a Finder window open in my ~/Library/Preferences and had the "Date Modified" column selected so that the most recent change would appear at the top) and noticed that the file called com.apple.screensaver.xxxx.plist file changed (the xxxx is a hex number that is part of your UUID, or perhaps the whole UUID, as have seen it both ways). This screensaver preferences file is located in ~/Library/Preferences/ByHost which makes sense, as every user would need their own set of screen saver preferences on each host.
    Looking at this file in TextWrangler it looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>askForPassword</key>
    <integer>0</integer>
    <key>idleTime</key>
    <integer>300</integer>
    <key>lastNonRandomModuleName</key>
    <string>Flurry</string>
    <key>moduleName</key>
    <string>Flurry</string>
    <key>modulePath</key>
    <string>/System/Library/Screen Savers/Flurry.saver</string>
    <key>tokenRemovalAction</key>
    <integer>0</integer>
    </dict>
    </plist>
    Hope that helps.
    One thing I did have a question about is how to find the UUID. On a Mac Pro system the command:
    system_profiler | grep -i uuid
    returned the expected number that was part of the com.apple.screensaver.xxxx.plist file, but this did not work on a MacBook Pro. No luck trying to find out why so far. Anyone have any ideas? There is also a UUID associated with a disk volume, that appears to have nothing to do with the UUID associated with the system. So the UUID I'm talking about here is for the system, not a disk.
    -Bob

  • How do I save photos from email to the photo library?

    How do I save photos from email to the photo library? I've seen an online demo of users that hold their finger or thumb over the image for a few seconds and a "save photo" window option appears. That doesn't work on my 6-month old iphone. It's version 1.1.4 (4a102) ???? Help! Anybody with an answer?

    Never mind. I figured out the 2.0 update. My system wasn't updating I-tunes...and the I-phone update option window was hidden behind some other system information. I figured it out. The download, install and re-synch took about an hour. Lots of horror stories out there about people trying to activate their new I-phones. Glad this worked for me!

  • HT204088 How do I save my itunes library to an external flash drive?

    How do I save my itunes library to an external flash drive?

    Backup iTunes to an External Drive
    http://support.apple.com/kb/HT1751

  • I have a new computer. How can I save my music from my IPod to the new computer since it isn't in my Library. I don't want to sync and lose music.

    My old computer crashed and I have a new computer. How can I save my music from my IPod to the new computer since it isn't in my Library. I don't want to sync and lose music.

    Then you will need to search for a 3rd party program to transfer content
    Pasted from another thread
    https://discussions.apple.com/thread/2234756?start=0&tstart=0
    One of the most recommended is Yamipod. This is a free program that transfers music from iPod back to the computer. However, it does not transfer playcounts/ratings etc.
    Other free programs are Pod Player, SharePod and Floola and iDump andiPodRobot.
    If you want to recover just the structure of playlists from the iPod (and not the actual song files themselves), there's iRepo for Windows. which I understand has this feature along with all the standard features for these programs.
    iPodRip also has the feature enabling you to reconstruct playlists.
    There is also CopyTrans. This does preserve ratings/playcounts etc if those are important to you but this program is not free. It also supports video transfer.
    More information is contained here.
    Copying content from your iPod to your computer - The Definitive Guide.

  • My mac 10.8 does no have the file, com.apple.desktop. plist   I wentto lIbrary, preference and look  for it and it is not where in my mac.  I also launch time machine and file is no where on my Mac.  How do I get this file back?

    My mac 10.8 does no have the file, com.apple.desktop. plist   I wentto lIbrary, preference and look  for it and it is not where in my mac.  I also launch time machine and file is no where on my Mac.  How do I get this file back?
    thanks

    System files are hidden by default in Finder now, search for what you want then click the little + button on the top right of the bar that appears when you do a search. A new bar comes up and click the first box (that says "Kind"), change it to "System Files". Then change the box that says "aren't included" to "are included" and your file should show up.
    http://osxdaily.com/2009/02/25/show-hidden-files-in-os-x/

  • How do I save items in library but not copy to ipod?

    How do I save items in library but not copy to ipod?

    If the item is in your iTunes library then it is already saved.
    With the iPod plugged in then select the items that you want to sync to the iPod. You can sync your entire library to the iPod - space permitting - or just selected content.
    MJ

  • How do I save preferences for automatically filled in text box?

    G'day
    I've got a popup button that lists all the external disks on my computer, and when a user picks a particular file on one of them, the path is displayed in a text field.
    If I edit the field, it's saved automatically, but how do I save/update the preference bindings without editing please?
    Regards
    Santa

    it's OK, I figured it out. For posterity...
    First define the property...
    property NSUserDefaults : class "NSUserDefaults"
    then to read...
    tell standardUserDefaults() of NSUserDefaults
    set tempDiskPath to objectForKey_("DiskPath")
    set tempDayReportDisplay to objectForKey_("DayReportDisplay")
    set thetempYears1 to objectForKey_("theYearsStrings")
    set tempYear to objectForKey_("tempYear")
    set theDayYears1 to objectForKey_("theDayYearsStrings")
    set tempdayYear to objectForKey_("tempdayYear")
    end tell
    the to write...
    on applicationShouldTerminate_(sender)
    -- Insert code here to do any housekeeping before your application quits
    set tempDiskPath to DiskPath's stringValue() as text
    set tempDayReportDisplay to DayReportDisplay's stringValue() as text
    set thetempYears1 to (theYear's itemTitles()) as list
    set tempYear to theYear's titleOfSelectedItem() as text
    set theDayYears1 to (DayReportYear's itemTitles()) as list
    set tempdayYear to DayReportYear's titleOfSelectedItem() as text
    tell standardUserDefaults() of NSUserDefaults
    setObjectforKey(tempDiskPath, "DiskPath")
    setObjectforKey(tempDayReportDisplay, "DayReportDisplay")
    setObjectforKey(thetempYears1, "theYearsStrings")
    setObjectforKey(tempYear, "tempYear")
    setObjectforKey(theDayYears1, "theDayYearsStrings")
    setObjectforKey(tempdayYear, "tempdayYear")
    end tell
    return true -- current application's NSTerminateNow
    end applicationShouldTerminate_

  • Saving a Pages document: when I first save a pages document it saves and I don't know where it goes or what its name is.  I want to be asked every time I save a pages document what to name it and where to save it. How do I set this preference?

    Saving a Pages document: when I first save a pages document it saves and I don't know where it goes or what its name is.  I want to be asked every time I save a pages document what to name it and where to save it. How do I set this preference?

    I'll guess that you've used a page layout document & pasting created a text box. You can add more pages & create linked text boxes, but I think you'd be better of using a word processing document. In word processing documents there is a basic text layer & additional pages will be created as needed to fit the text. Take a look at the toolbar of your document. If it says "sections" for the +page icon it's a word processing document, if it says "pages" it's a page layout document.

  • How do I save pictures from my library to the external sd card on my droid x2

    How do I save pictures from my library to the external sd card on my droid x2?

    Are the pictures already in the iPhoto Library?  If so just drag them onto the slideshow title in the left hand source pane.
    OT

  • How do I save a portion of a song to my Itunes library?

    how do I save a portion of a song to my Itunes library?

    First put the whole song into the library.  Right-click it, Get Info, go to the Options tab and set the Start and Stop times to include just the portion you want.  OK out.  Now right-click again and choose Create XXX version (where XXX is your preferred format).  This will cause iTunes to create a new file with just the desired portion.
    When you are done, you can either keep or delete the original (full-length) file.

Maybe you are looking for

  • Why can't I open IPhoto library stored on Time Capsule?

    Our old iMac G5 was struggling with the 27k of photos on it and couldn't accept a software update, so I have bought a 2T Time Capsule and a MacBook, in the hope that I could copy my music and photos onto the Time Capsule and use the MacBook just to a

  • SDK 3.0 : code signing error : more than one certificate for my profile ?!

    Hi all, Since I installed the SDK3 with OS3.0, I'm not able to develop on the device because of a provisionning profile issue. So, I've revoked all my certificates, created properly a new dev certificate, associated to a developer provisioning profil

  • HTML Conversion

    Hello, I have written a simple ABAP program  which produces a summary list. I am now trying to convert this list into an HTML output. I am using the FM  WWW_LIST_TO_HTML, which seems to be working fine. However, when I look at the html output file I

  • How to turn off alternate character suggestions as I type?

    Recently when I use my wireless keyboard, as I type ,French alternate letters appear above my text. In addtion, the keyboard will get stuck on a letter and type 50 of the same letter. I think I must have turned a feature on by mistake but what featur

  • JTextPane/JEditPane  ‘opaque=true’ is NOT really works.

    Hi everyone! I’ve created a JTextPane editable area. Unfortunately, some border appears from top to bottom of the editable area which moves from the left to right when I enter some text. What is it? This border appears as separator between two colors