Sub-directories / albums

Is it possible to create sub-directories of albums in iPhoto 4? Looks like you can create Folders in iPhoto 5 which then contain separate albums, but can you do something similar in iPhoto 4? Basically I want to group all photos from a holiday in Egypt ('master' album/folder called 'Egypt') and the subdivide this into separate albums called e.g. Cairo, Giza, Red Sea etc.) - or is this one of the enancements in iPhoto 5 which couldn't be acieved in earlier versions?
Neil

Neil,
If you have lots of photos have you thought of multiple library folders to speed things up.
These two apps make it a snap to create multiples and switch between them:
For using multiple library folders:
buddy/ manager
http://nofences.net/iphotoBuddy/
http://homepage.mac.com/bwebster/iphotolibrarymanager.html

Similar Messages

  • Index.html pages in local sub-directories will not load automatically when sub-directory name entered into address field, followed by a forward-slash

    I am in the process of designing a website-on-a-CD. In order to make things easier for my clients, I decided to organize this site into local sub-directories with an index.html page in each one. However, when I try to enter the local sub-directory name, followed by a forward-slash, the index page does not open automatically. Instead, I get a raw directory listing that includes the index.html file, and anything else that is present within it. I would like to know if there is any way to force this page to load automatically within Firefox from a local storage medium as it would load from a web-server.

    You need to use file:// as the protocol instead of C:/. The latter may never work (C:\ might).
    Where is the main HTML located ?
    Easiest if to store the images in a sub folder of the location because you can't go back via ../ beyond that root location for security reasons.
    See:
    *http://kb.mozillazine.org/Links_to_local_pages_do_not_work

  • How to correct SpryAssets/SpryMenuBar paths in template for sub-directories?

    I recently converted my real estate web site to CSS using Dreamweaver CS4. I use a primary template for most of my pages, which have both a horizontal and a vertical spry menu bar. When I create a page with the template and save it in a sub-directory (not at root level), after a page view,  I get errors on the server such as:
    File does not exist: /home/I_DELETED_THIS/public_html/homes_for_sale/SpryAssets, referer: http://locatehome.com/homes_for_sale/10-2264.htm
    (I replaced part of the URL with "I_DELETED_THIS" since this is posted publicly)
    The SpryAssets directory is at the root level of my site. The template includes the code further below at the bottom of the source code in a non-editable area of the template, which I think is the source of the problem, especially since I get two error messages for each page view and the SpryAssets directory is referenced twice in the following code after the last div. Part of the code is commented out:
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    Can I delete this code from the template or will my menu bars not function if they have sub-menus?
    The template changes the file path for other CSS scripts in the head of the template and links, etc. in the body, but not for this section of code. Is there a way to modify my template so that the path files will be correct when a create new pages in sub-directories?
    I saw one suggestion in the Forum to another user with a related problem that he should manually change the code in this section of the template to have a file path relative to the root, but it seems that the program should automatically be taking care of things like that.
    Many thanks,
    Dave K.

    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var
    MenuBar2 = new Spry.Widget.MenuBar("MenuBar2",
    {imgDown:"SpryAssets/SpryMenuBarDownHover.gif",
    imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    No you cannot delete the menu constructors, they are the ones that call the menus. The comment tags are purely for browsers that do not have JavaScript enabled.
    As far as template behaviours are concerned, I am afraid that this is not a very helpful forum. You will need to go to the Dreamweaver Forum for that http://forums.adobe.com/community/dreamweaver/dreamweaver_general
    I hope this helps.
    Ben

  • List all files in a directory, not including the sub directories if any

    Hi,
    I have been looking around php.net for a bit and can not work
    out how i list the files that are in a directory i.e.
    www.site.com/directory/
    I would like the names of each file to be placed in an array,
    but not to have the sub directories in this list should there be
    any.
    I was given some code a while ago that done this but it
    listed the sub directories and i would like them not in this list.
    I do not have this code anymore and do not know where i got
    it, so i can not get it amended to what i need.
    please can someone tell me what line of code i should be
    using.
    thank you in advance for your help.

    (_seb_) wrote:
    > not very clever wrote:
    >> Hi,
    >>
    >> I have been looking around php.net for a bit and can
    not work out how
    >> i list the files that are in a directory i.e.
    >>
    >> www.site.com/directory/
    >>
    >> I would like the names of each file to be placed in
    an array, but not
    >> to have the sub directories in this list should
    there be any.
    >>
    >> I was given some code a while ago that done this but
    it listed the
    >> sub directories and i would like them not in this
    list.
    >>
    >> I do not have this code anymore and do not know
    where i got it, so i
    >> can not get it amended to what i need.
    >>
    >> please can someone tell me what line of code i
    should be using.
    >>
    >> thank you in advance for your help.
    >>
    >>
    >>
    >
    > The follwoing PHP code will do just that. Just replace
    "pathToFolder"
    > with the path to your folder.
    > I made the list of files also link to each file. Just
    remove the link
    > echo if you don't them to be links.
    >
    > <?php
    > // FUNCTION TO LIST FILES:
    > function listFiles($path){
    > if($handle = opendir($path)){
    > while(false !== ($file = readdir($handle))){
    > if (is_file($path.'/'.$file) &&
    !preg_match('/^\./',$file)){
    > $files_array[]=$file;
    > }
    > }
    > }
    > return($files_array);
    > }
    > $path = 'pathToFolder';
    >
    > // CALL THE FUNCTION:
    > $files_array = listFiles($path);
    > foreach($files_array as $file){
    > echo '<p><a
    href="'.$path.'/'.$file.'">'.$file,'</a></p>';
    > }
    >
    > ?>
    >
    I spotted one error:
    foreach($files_array as $file){
    echo '<p><a
    href="'.$path.'/'.$file.'">'.$file,'</a></p>';
    should be:
    foreach($files_array as $file){
    echo '<p><a
    href="'.$path.'/'.$file.'">'.$file.'</a></p>';
    (a dot after $file, not a coma)
    seb ( [email protected])
    http://webtrans1.com | high-end web
    design
    Downloads: Slide Show, Directory Browser, Mailing List

  • Loop through sub-directories

    Hi,
    I want to loop through the sub-directories of one given folder. How to correct the following problems?
    dir = args[0];
    try
    string [] dirlvl2Ent = Directory.GetDirectories(dir);
    for (string dirlvl2 in dirlvl2Ent)
    Error 1 ; expected F:\App8\Program.cs 50 37 ProcessSWFile
    Error 2 ; expected F:\App8\Program.cs 50 40 ProcessSWFile
    Error 3 Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement F:\App8\Program.cs 50 40 ProcessSWFile
    Many Thanks & Best Regards, Hua Min

    for should be foreach.
    string [] dirlvl2Ent = Directory.GetDirectories(dir);
    foreach(string dirlvl2 in dirlvl2Ent)
    jdweng

  • Include all sub-directories and files?

    I did search, so don't complain that this has been asked a billion times.
    I am using Automator to replace text for files and folders. But this only works with the files and or folders I select, it doesn't do it with the sub-directories and sub-files. How can I config. Automator to do this?
    Thanks.

    The various actions operate on whatever is input to them. If you are referring to the *Rename Finder Items* action, you can use the *Get Folder Contents* action to go into sub folders, but be careful, since this action will go into bundles/packages such as applications and RTFD files.

  • Sub-directories in the PDBooks

    Hi,
    I use the distribution list to edit some of my reports and place them in a designated folder.
    When I create a new distribution list, I save it in the PDBooks section by doing this : ePublish > Manage distribution list > Save under. Here we have the possibility to create sub-directories in the PDBooks section. That's what I did.
    We also have the possibility to save the distribution list in the PDBooks section of my team.
    However, when we edit the distribution list (ePublish > Offline Distribution Wizard and then Lockdown and Save to folder), we only have access to the distribution lists saved in the company PDbooks directory (not the directory of my team and not the sub-directories).
    Do you have a solution to classify my distribution list according to the users?
    Thanks
    Christelle

    Hello Joris,
    I am an administrator on BPC and I check that I am a teamleader in my team. Moreover, I have access to publisk books.
    Indeed, I can publish distribution list, but only when they are saved in the company PDBooks.
    Do you have another idea?
    thanks.
    Regards,
    Christelle

  • Jad in sub directories

    Hello all,
    How can i use JAD to de-compile all the class files in java files in a
    directory and also in its sub-directories in a single statement instead of
    going to each directory and decompile.
    Thank You.
    KK

    Nope... DW wants to find all of its templates in one place.
    Can't you just name the file admin.dwt and keep it in the default
    folder? Then tell your admins that's the one to use?

  • Sub directories foto's

    I use the IPOD Video, and want to try to get all my foto's on the IPOD. This is not a problem. I give the name of the directorie where the foto's are, and all the foto's are on the IPOD. But I have one probleem. My First level directory, named Holiday have al lot of subdirectory's under it. Example Hollyday Jamaica, Holliday Europe, etc. Whats happen: When I open foto's, Holidays than I see all the pictures, and not the posibilty to open the sub-directories. How can I do this. Please let me know. Thanks

    Ik weet niet over Photo Organizer. Voor mijn gebruik, ik meestal bijsnijdenen vergroten of verkleinen. Ik gebruik "PS Express ". Ik heb ookPhotoPad, ColorSplash, Photobucket en ArtStudio.
    Niet zeker wat is zoals iPhoto, heb ik niet een gevonden. Hopelijk werkt Apple aan een, zoals ze vrijgegeven voor iMovie op de iPhone en iPad 2.
    Ik gebruik translate.google.com te vertalen naar het Nederlands. Ik hoop dat het juist is.

  • Sub-directories

    I am new to iWEB having finally moved over from MS FrontPage. So far so good. I can even work out all the ftp settings etc However, how do I set up sub-directories? So far all my pages are under the home page and are therefore in the nav. bar. I have about 60 pages in my web and I really need to have them in a hierarchical structure.
    Thanks for any help.

    He did it in the Inspector/Page/Page pane:
    Click to view full size
    OT

  • How I search only sub directories in my bookmarks?

    If I do search Firefox searches through all my bookmarks. I only want it to search in the current directory and/or sub directories.
    I do not want to use tags. I just want to search for the name.

    Is there any add-ons that I can use to make searching my bookmarks useful. It is now getting beyond frustrating. I can not believe this program doesn't have a useful way to search.

  • Calling forms from sub-directories

    Greetings,
    I have 19 different apps that are on a Solaris Application server in separate directories. I do have the FORMS_PATH set to the "root" but I was wondering if it is possible to call forms in one of the sub-directories without having to add that sub-directory to the FORMS_PATH.
    So far have tried CALL_FORM('ats/ats_ro_2') and CALL_FORM('/ats/ats_ro_2')
    Regards,
    Bill Chadbourne

    It may be possible, but i would not recommend to do so. What happens if you at some point decide to restructure your applicarion? You would have to adjust all your calls.
    if you really want to go that way and you have only one path in your FORMS_PATH, you could read the FORMS_PATH using TOOLENV.GETVAR and then use the full qualified path to call your forms.

  • Infuriating sub-directories

    When importing from digital camera, I get all my photos arranged into sub-directories (one for each new shooting session), each with its own data and thumbs folder. Fine for iphoto, but when wanting to burn onto CD for storing/playing on TV, using on other computers, etc, it's an absolute pain. Is there any way I can just import all the images on the camera into one straight folder?

    I'm not aware that iPhoto 4 (or earlier) does what you describe -- Which version of iPhoto are you using?
    Secondly, if you're wanting to burn images to a CD (and not as an iPhoto Library), then it's a simple matter to export the desired images to a folder on the desktop, and all you'll have is the JPG images -- burn that folder to CD.
    Another alternative is to download your camera's contents directly to a folder in the Finder using Image Capture, and leave iPhoto out of the loop entirely.

  • How do we refer Sub directories using UTL_FILE command

    Hi Gurus,
    I have created a DIRECTORY My_project using CREATE DIRECTORY COMMAND. This directory is linked to my OS D:\My_project folder.
    There are several sub directories under My_project folder such as D:\My_project\Outfile folder which I would like to refer while using UTL_FILE command to process files.
    When I try to run the following PLSQL
    DECLARE
    out_file utl_file.file_type;
    l_line VARCHAR2(100);
    BEGIN
    out_file :=UTL_FILE.FOPEN('My_project\Outfile','abc.txt','w');
    l_line := 'HELLO TESTING';
    utl_file.put_line(out_file,l_line);
    UTL_FILE.FCLOSE(out_file);
    EXCEPTION
    WHEN no_data_found then
    UTL_FILE.FCLOSE(out_file);
    when others then
    raise_application_error(-20912, 'Others ' ||sqlerrm);
    END;
    I get
    ORA-29280: invalid directory path
    error.
    As there are many directories involved under My_project folder and there will be new directories created in the future as well, so I was wondering if there is a way to read files from any sub directory of My_project directory
    Please advise. Thanks for all your help.

    Hi Anto!
    Try it like this:
    out_file :=UTL_FILE.FOPEN('My_project','Outfile\abc.txt','w');I hope this helps!
    your sincerely
    Florian W.

  • Class not found - from jsp sub-directories

    Hello:
    Main-Issue:
    - I have some java-class files in the \<my-web-app>\web-inf\classes directory. These classes do not belong to any packages.
    - I have some jsps in the \<my-web-app>\ directory and also in some sub-directories in the \<my-web-app>\ directory. Example: \<my-web-app>\test\index1.jsp.
    - The jsps in the \<my-web-app>\ directory can invoke the classes in the \<my-web-app>\web-inf\classes directory with no issues. But, the jsps in the sub-directories CANNOT see the classes in the \<my-web-app>\web-inf\classes directory. I get a "class not found" error. (this is just in oc4j).
    First of all, just a background to the issue:
    - I am trying to port a web application from JRUN to OC4J.
    - I want to do this with minimal changes to the existing code.
    - The application has been running on JRUN for a while. I only see the above mentioned error (class not found) error when trying to run it on oc4j.
    - As a test, I created my own test application to verify:
    (-) I wrote a simple java class (test.class) with no package and placed it in the web-inf\classes directory
    (-) I wrote a jsp file (index.jsp) to invoke test.class. I placed the jsp at the top-level directory of the web-app.
    (-) I wrote another jsp file (index1.jsp) to invoke test.class as well. I placed that jsp file in a sub-directory in the top-level directory of the web-app.
    (-) index.jsp worked without any problems. index1.jsp gave the "class not found" error.
    (-) As another test, I then modified the class to be in a package (com.benny). I then changed the jsps to call "com.benny.test" rather than just "test". This time, both index.jsp and index1.jsp worked fine.
    So, I guess my question is, do these classes have to be in a package? I am trying to avoid having to make a lot of changes to the app. If they do have to be in packages, then I have re-compile a lot of class files, add import statements to jsps, etc.
    Any help/suggestion would be appreciated.
    Thanks,
    Benny

    So, I guess my question is, do these classes have to be in a package?Answer: yes.
    As of Java1.4, classes in the "unnamed" package were no longer accessible.
    What version of java were you running with JRun?
    What version are you running with OC4J?
    Read all about it here:
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4361575
    If you have to repackage the classes, the IDE Eclipse has excellent support for refactoring, and wil let you put classes into packages with a minimum of fuss.

Maybe you are looking for