How can I make a new item in left column in iPhoto?

I would like to add an item in the left column of iPhoto list of Library, Albums, etc. for "Folders" because when I sort "Albums", folders are not sorted with it.
Is there a way to do that?
If not, how can I separate albums from folders or have folders sorted amont the albums?
Thanks for your help,
Vernon

You can not "create" new source catagories
Folders hold either albums or other folders - so you can create an "all folders" folder and place all of your folders in it
LN

Similar Messages

  • How can I make a new genius mix? Apple has made two automatically, but I would like one based on other genres within my iTunes library. I have tried updating my genius mixes to no avail.

    How can I make a new genius mix? I do not want to make a genius playlist. Genius has already created two mixes but I would like another based on other genres within my extensive music library. I have tried updating Genius from Store>Update Genius but to no avail. Thank you!

    Hi. The two user tips both describe a sequence of steps that should get your library from the point where it threatens to wipe data from your device to where it is syncing normally, while recovering as much information as possible. It may still be necessary to wipe and reload the device but this should only take place once all the data that can be recovered has been recovered.
    Doing step 1 of 8 and then complaining things aren't the way you want them to be yet strikes me as premature...
    Since you appear to have all your media content, and we are discussing an iPod classic, not an iOS device, the main worries are already taken care of. What's left is ratings, playcounts, playlist membership and checked status. Since your device holds only part of your library at best you could only recover the missing data for the content that is on the device using third party tools.
    Recreating the previous checked/unchecked status of every track in your library from where you are now may not be that easy. Syncing with selected playlists has many advantages, one of which would have been that you would have a named playlist that could have been retrieved by 3rd party software if you had used this method.
    You haven't explained what caused your problem in the first place, but if you have a Previous iTunes Libraries folder holding old copies of your iTunes database (generated with each iTunes update) then it would be possible to restore the most recent of these and then update the library with any changes in your media folder.
    BTW Apple doesn't offer free support for this kind of issue with iTunes.
    tt2

  • I want to transfer my music to a new account, as of now my dad and i share an account, if i transfer my music to a new account id lose it all. How can i make a new account but yet still keep all my music?

    I want to transfer my music to a new account, as of now my dad and i share an account, if i transfer my music to a new account id lose it all. How can i make a new account but yet still keep all my music?

    "I want to transfer my music to a new account"
    You cannot.
    "How can i make a new account but yet still keep all my music?"
    Authorize your computer  for your Dads account as well as for yours.  That's it
    Put the music on your computer

  • How can i create a new item in the app "health"?

    how can i create a new item in the app "health"? I need a field for documentation of "Waist-to-height ratio", exactly for "circumference".
    It's a matter of common knowledge, that the Waist-to-height ratio (WHtR) has more significance then the Body-Mass-Index (BMI).

    If you mean you want to change a color of a calendar category or create a new one, you cannot do that, what is pre-loaded is what you get and cannot be edited.

  • HT2534 How can I make a new iTunes account so I can use the computer to download  music on my ipad

    How can I make a new iTunes account so I can use the computer to download  music on my ipad

    Why not use your previous iTunes account (Apple ID)? Explain a little more, please.

  • I forgot my passcode lock for the ipod touch 4th generation. How can i make a new one?

    I forgot my passcode lock for the ipod touch 4th generation. How can i make a new one?

    If you cannot remember the passcode, you will need to restore your device on the computer that you Usually Sync with...
    http://support.apple.com/kb/HT1808

  • How can I make a bullet item with a custom Bullet character such as a check mark ?

    Hi Everyone,
        I'd like to make a list with Bullets, but I can find a bullet character which I am looking for. Especially I'd like to make Bullet characters available in PowerPoint, such as check mark, and others. How can I make a bullet item with a custom Bullet character or picture such as a check mark ?
      Regards
      Cem

    Cem777 wrote:
    Hi Everyone,
        I'd like to make a list with Bullets, but I can find a bullet character which I am looking for. Especially I'd like to make Bullet characters available in PowerPoint, such as check mark, and others. How can I make a bullet item with a custom Bullet character or picture such as a check mark ?
      Regards
      Cem
    Search InDesign help for "change bullet characters" (without quotes,) and use the technique described there with the Zapf Dingbat font as suggested by Peter S.
    You can also use InDesign's glyphs panel (Window > Type & Tables > Glyphs) to scroll through all the character sets in all the fonts that InDesign has access to on your system, to look for check mark characters.
    After you have created a paragraph style that applies the customized check-mark-bullet that you want, every time you apply that paragraph style, the custom bullet appears. So, while it's a few steps to set up the style the first time, from then on it's automatic.
    If you really need a particular bullet that's not in any font you have, you'll need to search for fonts that have check mark characters and buy one or use a free one. Caution: free fonts aren't always created to the same strict standards that commercial fonts from reputable font foundries observe; free fonts sometimes cause problems when printing or exporting to PDF. You can search Google for "fonts with check mark" (without quotes.)
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • How can I make my query to compare only columns of two tables... not the storage information?

    11GR2
    =-----------------------------------
    I am using below querry to compare two table that has same name, under two different users... But after making storage information false like below and  if the storage information is different on column level than it create "Alter modify " statements for the column ... How can I make my query to compare only columns of two tables... not the storage information?
    begin
    DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'PRETTY', TRUE);
    DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'SQLTERMINATOR',TRUE);
    DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'SEGMENT_ATTRIBUTES', FALSE);
    DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'STORAGE', FALSE);
    DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'TABLESPACE',FALSE);
    DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'CONSTRAINTS',FALSE);
    DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'REF_CONSTRAINTS',FALSE);
    DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'CONSTRAINTS_AS_ALTER',FALSE);
    End;
    select REGEXP_REPLACE(dbms_metadata_diff.compare_alter('TABLE','TABLE_NAME_A','TABLE_NAME_A','USER1','USER2'),('USER1...'),'', 1, 0, 'i') from dual

    I am using below querry to compare two table that has same name, under two different users... But after making storage information false like below and  if the storage information is different on column level than it create "Alter modify " statements for the column ... How can I make my query to compare only columns of two tables... not the storage information?
    If you want help you have to SHOW us what you are doing and how you are doing it; you can't just try to tell us in your own words.
    We can't see your computer screen.

  • When i plug in my ipod a message says I can only have one ipod per computer, but my last computer broke. How can I make my new computer my actual Itunes library?

    when i plug in my itouch, a message pops up and says my ipod is already registered on another computer (my old computer that broke). How can I make it so that the message won't pop up again and i can freely sync songs from my computer to my itouch and vice versa?

    Copy everything from your old computer, or your backup copy of your old computer, to your new one.

  • How can I make a new admin account without the password or cd?

    I got this Mac 5 off ebay, and it works fine.. but I can't download Silverlight, or update itunes.
    I've the reboot, terminal thing, but either I'm stupid and not doing it right, or it doesn't work.
    I can't make a new user, or change the password, and PLEASE help.

    We need a better description of what you bought. "Mac 5" doesn't ring a bell with me and I've been her a long time. Do you mean "iMac G5?"
    If so, the latest versions of SilverLight require a Mac with an Intel processor--the G5 iMac is not an Intel-based computer so it will not install.
    If it's a really a G5, neither can it run OS10.6 as shown in your equipment line. 10.5.8 is as high as it can go.
    I can't make a new user, or change the password,
    Call the seller and get the gray system install/restore disks that originally shipped with that computer, They are as much a part of the computer and the hard drive, and needed for resetting the password. I consider any used Mac sold without tose disk to be missing a part and therefore worth much less money.
    So---right now we're fighting conflicting info. Please do "About this Mac" from your Apple menu and post what is says about the processor and the OS version. If the processor description includes the word "Intel," you have a much newer Mac than the pre-2006 iMacs this forum covers and should repost in the forumfor newer iMacs here:
    iMac (Intel)

  • HT1766 How can I make a NEW backup WITHOUT getting prompted for a (forgotten) password?

    Hello! 1st post here,
    How can I backup iPhone A to iTunes and then restore into iPhone B without getting prompted for a backup password that I do no know or remember ever setting?
    To clarify, I am not trying to read an encrypted backup. I would like to make a NEW backup but I do not want it to be encrypted as I do not know nor remember how a password was set in the 1st place. If I unclick the encryption checkbox, I am prompted to enter the password. Defeats the purpose of clicking on the box, no?
    Thanks,
    Henry

    Have you tried deleting the encrypted back up?

  • How can I make the new update more colorful my mother can't read the white pages with tiny lines we hate it

    How can get the color back on my iPad 2 retina  my mother can not read the new white pages with tiny line or the text messages

    You can go into the settings and make the fonts bigger, also in the accessibility, make the contrast better and fonts bolder.
    There is also the 'invert colors' but it's not the best thing since it inverts everything.
    unfortunately this doesn't seem to be a good update for those with visual issues.
    http://www.apple.com/feedback/
    You can let Apple know. They won't answer but at least you can be added to the talley of those that have issues.

  • How can i make a new map on my mail? The way apple has in the manual doesn't work!

    I want to make a new map for my mails, but the way tha apple gives in the manual doesn't work!

    If you mean other folders then you need to create them in your email client e.g. in a browser (which you can only do in IMAP accounts, not POP account) - you can't create new folders in the Mail app itself

  • Library on PC was restored, how can I make a new library?

    My PC was restored as it had unrecoverable viruses and spyware etc on it. Im wanting to make a new library on my laptop for my iPhone - i dont mind about all the music not going to my laptop, i know this cant happen (i would like all the present things on my iPhone to stay though). But id still like to be able to add music and stuff to my iPhone and be able to sync it. Any help is much apprectiated.

    Depending on what you have selected under the various tabs for your iPhone sync preferences with iTunes on your restored PC, nothing else on your iPhone will be touched or lost.
    iTunes includes an option to transfer iTunes content from an iPod or iPhone that was purchased from the iTunes store, but this is for iTunes content that was purchased from the iTunes store only.
    First you need to re-authorize your computer with your iTunes account with iTunes. After doing so, with your iPhone connected and without syncing, at the iTunes menu bar go to File and select Transfer Purchases From - the name of your iPhone.
    If any 3rd party apps do not transfer from your iPhone to your iTunes library, you can re-download the apps with iTunes on your computer and you won't be charged again for a purchased app as long as you use the same iTunes account to re-download the app that was used to purchase the app originally.
    Regarding any photos that were transferred from your computer to your iPhone, the transfer process for these photos is a one way transfer process only - from your computer to your iPhone. If the photos that were stored on your computer were not included with your computer's backup, there are 3rd party apps available that provide for transferring these photos from your iPhone to your computer, but the original resolution of these photos will be lost. Photos transferred from your computer to your iPhone are optimized for viewing on your iPhone as part of the iTunes sync process, so the original resolution of these photos are reduced on your iPhone.
    Such a 3rd party app also provides for transferring iTunes content from your iPhone to your computer that was not purchased from the iTunes store, but these apps are not supported by Apple.
    If you are syncing contact info with a supported application on your computer and you did not include this data with your computer's backup, before syncing contact info with the supported application on your computer, enter one unique contact in the supported application on your computer. Make this contact up if needed, which can be deleted later. This will provide a merge prompt when syncing contact info, which you want to select. The same applies to syncing calendar events if you have Outlook 2003 or 2007 available and you are syncing calendar events with Outlook on your computer.

  • HT2500 How can I make a new template in mail stationery(OS 10.6.8) with my own logo and background?

    Is it possible to make a new template with my own logo and background?

    Welcome to Apple Support Communities.
    Open Mail, Help
    So, create your template from scratch or edit an existing Mail template and re-save it with a new name.
    Your own saved or edited/re-saved templates are stored in the Custom list at the bottom of the Stationery types.
    The default templates remain with original names in the original folders.
    Then to use your template in a New Message, select it from Show Stationery, Custom.
    To make it easier to select Stationery templates, first open Mail, New Message, View, Customize Toolbar, and then drag the Show Stationery button to the New Message toolbar. (It will not ever appear in the default Mail toolbar, only the New Message toolbar, and can only be added to the New Message toolbar.)

Maybe you are looking for

  • TREX Migration from HP-UX to Windows

    Hi Experts, I want to migrate TREX 7.0 on HP-UX to TREX on Windows. Is there a way to transfer existing indexes from the HP-UX system to the new TREX system running on Windows? Thank you, Rainer Walter

  • IPod's Frozen, but I've tried all suggestions posted in other threads

    After using this first gen iPod nano since around the time of it's debut, it's served me well enough. Well, I guess that doesn't count the terrible experiences I've had with iTunes and other iFaggotry, but we're trying to be optimistic here, so I'll

  • Sync between iphone and Outlook not working

    When i was on itunes 9 using i phone version 4 and 4.01 everything was fine, as soon as the latest iphone firmware update happened it all went wrong. When i try to Sync outlook contacts or Calender it says would not do it and just freeze. So i follow

  • Incopy crashes when opening large Indd-files

    We are publishers of a magazine. One layouter on Indesign, and two writers on Incopy. What happens frequently is, that after a while, when the Indd-file becomes fairly big, Incopy stalls on opening the file. Sometimes it opens it in text-mode, but we

  • SAPResourceAdapter listResourceObjects multiSelect list

    Hi, I am customizing the SAPForm.xml for my IDM-SAP integration, I was able to show the dynamic list of activity groups and profiles, but I want to add more multiselect list like parameters and user groups. If I enter infromation on SAP interface, I