Help with creating photo folders!!!

I have a 30 gig photo and I finally got around to loading photos on the thing. The only problem is that I can figure out how to create seperate folders. Right now, all of my photos are all lumped together in the "Photo Library" link on my pod and I would really like to organize them.
Does anyone know how to do this. I am using Adobe Photoshop elements 4.0. Any help would be appreciated since I can't find any other info on apples site. Thanks

slaphappysnapper wrote:
That doesn't help. I tried it and all the images in one folder went straight into the library. I need to be able to see each folder's name on my iPod so I can runa slideshow of that folder - not every single image on my iPod. Is this possible?
Sorry, no.

Similar Messages

  • Help with creating photo albums

    Hi Guys..
    I'm pretty new to dreamweaver and am using a trial version at the moment but love it so far...
    My problem is that every time i try to create a jpg photo gallary the and select the source and destination file folder,dreamweaver keeps giving me the error message that 'No images files found in image file folder'...
    I know that there are plenty of images in the folder and have followed a few youtube instructional videos,but still cant seem to find out what this problem is.
    The only element of testing that seemed to work is when i used a folder full of .gif files. the album created then, but used lots of little gif images...
    Is there anything i'm missing ?
    hope you can help
    thanks in advance
    Paul
    I've attached a file showing the issue ...

    Thanks for that Nancy,
    yes I've done all that the site is up and all created wih several pages.
    I created t in fronpage first and have been editing it and 'Put'ing files up for the past few days.
    The only thing that doesn't seem to work for me is creating this photo album
    I'm trying to create the folder by poiting the source files at a local files folder which I'm sure is the correct way.
    When you select folders with images in are oyu able to see previews of the files
    Hope this makes sense..
    thanks
    P

  • Need Help with creating photo CD's

    PSE 7.0....using "share", I created a few CDs the other day with no problem.  Now it doesn't see the blank CD...I've tried several and it just doesn't see it...it sees the drive, but not the blank CD when I put one in...I ran a registry cleaner in between when it worked and when it didn't.  Did that cause a problem?  Any fixes?

    Open the Photos app, select Albums then Camera Roll.

  • How do I create photo folders in my iPad

    How do I create photo folders in my IPad ?

    You have to create the folders on your iMac first, then sync with your iPad using iTunes.  Then, the folders show up as albums on the iPad.

  • I need help with Creating Key Pairs

    Hello,
    I need help with Creating Key Pairs, I generate key pais with aba provider, but the keys generated are not base 64.
    the class is :
    import java.io.*;
    import java.math.BigInteger;
    import java.security.*;
    import java.security.spec.*;
    import java.security.interfaces.*;
    import javax.crypto.*;
    import javax.crypto.spec.*;
    import au.net.aba.crypto.provider.ABAProvider;
    class CreateKeyPairs {
    private static KeyPair keyPair;
    private static KeyPairGenerator pairGenerator;
    private static PrivateKey privateKey;
    private static PublicKey publicKey;
    public static void main(String[] args) throws Exception {
    if (args.length != 2) {
    System.out.println("Usage: java CreateKeyParis public_key_file_name privete_key_file_name");
    return;
    createKeys();
    saveKey(args[0],publicKey);
    saveKey(args[1],privateKey);
    private static void createKeys() throws Exception {
    Security.addProvider(new ABAProvider());
    pairGenerator = KeyPairGenerator.getInstance("RSA","ABA");
    pairGenerator.initialize(1024, new SecureRandom());
    keyPair = pairGenerator.generateKeyPair();
    privateKey = keyPair.getPrivate();
    publicKey = keyPair.getPublic();
    private synchronized static void saveKey(String filename,PrivateKey key) throws Exception {
    ObjectOutputStream out= new ObjectOutputStream(new FileOutputStream(filename));
    out.writeObject(key);
    out.close();
    private synchronized static void saveKey(String filename,PublicKey key) throws Exception {
    ObjectOutputStream out= new ObjectOutputStream( new FileOutputStream(filename));
    out.writeObject(key);
    out.close();
    the public key is:
    �� sr com.sun.rsajca.JSA_RSAPublicKeyrC��� xr com.sun.rsajca.JS_PublicKey~5< ~��% L thePublicKeyt Lcom/sun/rsasign/p;xpsr com.sun.rsasign.anm����9�[ [ at [B[ bq ~ xr com.sun.rsasign.p��(!g�� L at Ljava/lang/String;[ bt [Ljava/lang/String;xr com.sun.rsasign.c�"dyU�|  xpt Javaur [Ljava.lang.String;��V��{G  xp   q ~ ur [B���T�  xp   ��ccR}o���[!#I����lo������
    ����^"`8�|���Z>������&
    d ����"B��
    ^5���a����jw9�����D���D�)�*3/h��7�|��I�d�$�4f�8_�|���yuq ~
    How i can generated the key pairs in base 64 or binary????
    Thanxs for help me
    Luis Navarro Nu�ez
    Santiago.
    Chile.
    South America.

    I don't use ABA but BouncyCastle
    this could help you :
    try
    java.security.Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider());
    java.security.KeyPairGenerator kg = java.security.KeyPairGenerator.getInstance("RSA","BC");
    java.security.KeyPair kp = kg.generateKeyPair();
    java.security.Key pub = kp.getPublic();
    java.security.Key pri = kp.getPrivate();
    System.out.println("pub: " + pub);
    System.out.println("pri: " + pri);
    byte[] pub_e = pub.getEncoded();
    byte[] pri_e = pri.getEncoded();
    java.io.PrintWriter o;
    java.io.DataInputStream i;
    java.io.File f;
    o = new java.io.PrintWriter(new java.io.FileOutputStream("d:/pub64"));
    o.println(new sun.misc.BASE64Encoder().encode(pub_e));
    o.close();
    o = new java.io.PrintWriter(new java.io.FileOutputStream("d:/pri64"));
    o.println(new sun.misc.BASE64Encoder().encode(pri_e));
    o.close();
    java.io.BufferedReader br = new java.io.BufferedReader(new java.io.FileReader("d:/pub64"));
    StringBuffer keyBase64 = new StringBuffer();
    String line = br.readLine ();
    while(line != null)
    keyBase64.append (line);
    line = br.readLine ();
    byte [] pubBytes = new sun.misc.BASE64Decoder().decodeBuffer(keyBase64.toString ());
    br = new java.io.BufferedReader(new java.io.FileReader("d:/pri64"));
    keyBase64 = new StringBuffer();
    line = br.readLine ();
    while(line != null)
    keyBase64.append (line);
    line = br.readLine ();
    byte [] priBytes = new sun.misc.BASE64Decoder().decodeBuffer(keyBase64.toString ());
    java.security.KeyFactory kf = java.security.KeyFactory.getInstance("RSA","BC");
    java.security.Key pubKey = kf.generatePublic(new java.security.spec.X509EncodedKeySpec(pubBytes));
    System.out.println("pub: " + pubKey);
    java.security.Key priKey = kf.generatePrivate(new java.security.spec.PKCS8EncodedKeySpec(priBytes));
    System.out.println("pri: " + priKey);
    catch(Exception e)
    e.printStackTrace ();
    }

  • Help with creating a form, I want to add a check box to enable me to unlock certain fields and deselect the block again

    Help with creating a form, I want to add a check box to enable me to unlock certain fields and deselect the block again

    Look to the right under "More Like This". Your issue has been discussed many many times. The error you are seeing is because you do not have enough free "contiguous" space on your hard drive. Read the other threads that address this issue to find how to solve the issue.
    Or, put "The disk cannot be partitioned because some files cannot be moved" into the search box at the upper right of this page.

  • I need help with the photo stream. Everytime I try to open it on my PC it says photo stream is unable and I have tried everuthing to enable it but it doesn't work. Any help, please?

    I need help with the photo stream. Everytime I try to open it on my PC it says photo stream is unable and I have tried everuthing to enable it but it doesn't work. Any help, please?

    Freezing, or crashing?
    ID on the Mac can produce reports that may (or may not) prove helpful in diagnosing the problem. I suspect this is something not directly related to InDesign, and maybe not to any of the Adobe apps directly since you seem to be having a problem in more than one. That often inidcates a problem at the system level.
    Nevertheless, it won't hurt to try to gather the reports. You'll find driections for how to generate them, and to post them on Pastebin.com (then put a link to them here) so we can see what's going on at Adobe Forums: InDesign CS5.5 Not Responding
    Do you happen to run a font manager? If so, which one, and waht version?

  • Help with creating a Quiz

    Hey i need help with creating a quiz with scoring and all.
    I need a helping hand so if you can get me started that
    would help a lot.
    Use the Question class to define a Quiz class. A
    quiz can be composed of up to 25 questions. Define the add method
    of the Quiz class to add a question to a quiz. Define the giveQuiz
    method of the Quiz class to present each question in turn to the user,
    accept an answer for each one, and keep track of the results. Define
    a class called QuizTime with a main method that populates a quiz,
    presents it, and prints the final results.
    // Question.java Author: Lewis/Loftus/Cocking
    // Represents a question (and its answer).
    public class Question implements Complexity
    private String question, answer;
    private int complexityLevel;
    // Sets up the question with a default complexity.
    public Question (String query, String result)
    question = query;
    answer = result;
    complexityLevel = 1;
    // Sets the complexity level for this question.
    public void setComplexity (int level)
    complexityLevel = level;
    // Returns the complexity level for this question.
    public int getComplexity()
    return complexityLevel;
    // Returns the question.
    public String getQuestion()
    return question;
    // Returns the answer to this question.
    public String getAnswer()
    return answer;
    // Returns true if the candidate answer matches the answer.
    public boolean answerCorrect (String candidateAnswer)
    return answer.equals(candidateAnswer);
    // Returns this question (and its answer) as a string.
    public String toString()
    return question + "\n" + answer;
    }

    Do you know why this lazy f&#97;rt-&#97;ss is back? Because when he posted his homework last week, some sorry-assed idiot went and did it for him.
    http://forum.java.sun.com/thread.jspa?threadID=5244564&messageID=10008358#10008358
    He didn't even thank the poster.
    It's the same problem over and over again. You feed the bears and it only teaches them to come back for handouts.
    My polite suggestion to the original poster: please do your own f&#117;cking homework.

  • Need help with creating a brush

    Hi guys,
    I wanted to ask for help with creating a brush (even a link to a tutorial will be goon enough ).
    I got this sample:
    I've created a brush from it, and i'm trying to get this kind of result:
    but it's only duplicates it and gives me this result:
    Can someone help me please understand what i need to define in order to make the brush behave like a continues brush instead of duplicate it?
    Thank you very much
    shlomit

    what you need to do is make a brush that looks like the tip of a brush. photoshop has several already but you can make your own that will be better.
    get a paintbrush and paint a spot kind of like what you did but dont paint a stroke. make it look kindof grungy. then make your brush from that, making sure to desaturate it and everything.
    EDIT:
    oh, and if you bring the fill down to like 10-20% your stroke will look better

  • I need help with creating PDF with Preview...

    Hello
    I need help with creating PDF documetns with Preview. Just a few days ago, I was able to create PDF files composed of scanned images (notes) and everything worked perfectly fine. However, today I was having trouble with it. I scanned my notebook and saved 8 images/pages in jpeg format. I did the usual routine with Preview (select all files>print>PDF>save as PDF>then save). Well this worked a few days ago, but when I tried it today, I was able to save it, but the after opening the PDF file that I have saved, only the first page was there. The other pages weren't included. I really don't see anything wrong with what I'm doing. I really need help. Any help would be greatly appreciated.

    I can't find it.  I went into advanced and then document processing but no batch sequence is there and everything is grayed out.
    EDIT: I realized that you cant do batch sequences in standard.  Any other ideas?

  • Can anyone help with uploading photos from iPad to Facebook.  Thanks

    Can anyone help with uploading photos fom iPad to Facebook?  Thanks

    What app are you to trying to use ? You can't upload photos to Facebook via Safari, but a number of the Facebook apps support it e.g. the 'official' app : http://itunes.apple.com/us/app/facebook/id284882215?mt=8 (thought it's optimised for the iPhone/iPod Touch it does support uploading photos), Friendly For Facebook (http://itunes.apple.com/us/app/friendly-for-facebook/id400169658?mt=8)

  • I need help with creating some formulas

    I'm not sure if anyone around here can help me, but I'm trying to create a Numbers document and need some help with creating a formula/function.
    I have a column of amounts and I would like to create a formula which deducts a percentage (11.9%) and puts the result in another column.
    If anyone can help me, it would be greatly appreciated.

    Here is an example that shows one way to do this:
    The original data is in column A.  In column B we will store formulas to adjust the amounts:
    1) select the cell where you want to formula (in this case cell B2)
    2) Type the "=" (equal sign):
    3) click cell A2:
    4) now type the rest of the formula which is: "*(100-11.9)/100"  that is asterisk, then open parenthesis, 100 minus eleven point nine close parenthesis forward slash  one hundred
    The Asterisk is the multiply operator  (times) and the forward slash is the division operator (divide)
    now hit return.  select cell B2 and hover the cursor over the bottom edge of the cell:
    drag the little yellow dot down to "fill" the formula down as needed.

  • Help with putting photos on my ipod!!!

    i need help with putting photos on my 20 gig ipod. Model number is MA079LL. and i have versions 1.1 what is the up to date version?

    anyone help?

  • Help with Create Folders and Sort Applescript

    Hi guys! I'm sure this is an easy fix but I can't seem to find the right things to add to to this script. I am using a script that Jacques Rioux kindly helped me out with a couple days ago. I altered his script a little to complete a different task I needed to create a shortcut for. The script below first creates two folders (TIFF & JPEG) and then it sorts files with an extension .tif into the 'TIFF' folder and files with the extension .jpg into the folder named 'JPEG'. This works great but I would like the script to effect multiple folders. Can anyone help me add to the script so when you click it, a prompt will pop up allowing you to choose multiple folders to apply the script too? As of now it will only work on one folder at a time. I would greatly greatly apprecaite the help. Thanks!!
    try
              tell application "Finder" to set targetFolder to (target of the front Finder window) as string
    on error -- no window
    end try
    do shell script "cd " & (quoted form of POSIX path of targetFolder) & "; mkdir -p TIFF/ JPEG/"
    tell application "Finder"
              move (every file of folder targetFolder whose name extension is in {"tif"}) to folder "TIFF" of folder targetFolder
              move (every file of folder targetFolder whose name extension is "jpg") to folder "JPEG" of folder targetFolder
    end tell
    Best,
    Anthony

    All you need to do is choose multiple folders (instead of just getting the target of the front Finder window), then repeat through the list of chosen folders, for example:
    set targetFolders to (choose folder with multiple selections allowed)
    repeat with aFolder in targetFolders
       do shell script "cd " & (quoted form of POSIX path of aFolder) & "; mkdir -p TIFF/ JPEG/"
       tell application "Finder"
          move (every file of aFolder whose name extension is in {"tif"}) to folder "TIFF" of aFolder
          move (every file of aFolder whose name extension is "jpg") to folder "JPEG" of aFolder
       end tell
    end repeat

  • Help with Creating Playlists or similar- Zen Visio

    I am starting to feel very frustrated with my Zen Vision M and the software. I have years of experience with computers but little with non-photo media or software. I ripped some 250 CD using various ripping software and no internet connection. The files are fine and are stored on my computer in folders by category...classical, new age, etc. Each folder contains a sub-folder for the individual cd's files. I want to transfer the files (data) to the ZEN so that I can go to a category and then see the individual albums and then select and play an album....seems pretty basic. However, I can not obtain a solution with either Windows Media player or the Creative Software. The play list function seems to add only tracks and not access to a particular CD. I find WM and the Creative software to be very confusing. I downloaded and printed the tech sheets on creating play lists, but I still couldn't solve my problem. I thought I could use Windows explorer to transfer folders and sub- folders to the ZEN, but everything ended in the "album" area as an alpha listing by album (folder) names, which isn't very helpful. Creative tech support wasn't helpful either. Can the ZEN do what I want? How? This is too much time and aggravation for the benefit. Thanks!?Greg

    i did some web searching and found several references to the problem. one recommendation i found was to use windows media player to organize the zen vision instead. i toyed with it one evening and it seems like it will work well. things have been too busy lately for me to really take a good look at how flexible it will be.

Maybe you are looking for

  • Migrating/recreating existing iTunes functionality on a new drive

    I have an apparently-unusual and somewhat complicated problem. I have two drives on my PC, and iTunes is currently installed on my (now-too-small) C drive. I want to get rid of "everything iTunes" on my C drive to free up much-needed space there, and

  • Finder Issue - Folders in reverse descending order

    When Finder is open, and I select the Documents tab, I see, on the right, my folders and can open those folders to see the files within. Here, the files are alphabetically arranged from A through Z, in descending order (A at the top, and Z at the bot

  • Cannot Create a New Enhancement with SMOD

    Hi Gurus, I can't find any buttons/functions to create a new enhancement in SMOD, ECC 6. Does SAP disallow people to create new a new enhancement in ECC 6.0?

  • Tv remote issues

    the remotes suddenly stops working, no power, nothing. new batteries are not helping. this is the second one to have this problem and customer service is of little help except to say get a new one. can anyone help?

  • Sharing podcasts between pc & a mac.

    I listen to a majority of my podcasts on my 21 inch Imac.  Is there a way to share podcasts to ICloud & laptop pc?  I'd like to listen to the same podcasts on my laptop.