Folders Filter for "Include Images in Sub Folders"

The Shoots Tab in the Beta Version had a filter in the Tab to decide whether to include images in sub-folders/shoots within the Grid View.
I need this function back for the Folders Tab!

Already on the list. When it comes is something else.
Don
Don Ricklin, MacBook 1.83Ghz Duo 2 Core running 10.4.9 & Win XP, Pentax *ist D
http://donricklin.blogspot.com/

Similar Messages

  • [Mac OSX / JS] How to find images inside sub folders using getFiles?

    Hi,
    My script uses the variable myFolder to store the path for the images Folder. But when I try to use myFolder.getFiles() to retrieve images that are in sub folders the script fails. The result is null. What can I do to force myFolder.getFiles() to search inside all sub folders?
    var myFolder = Folder().selectDlg("Select images Folder");
    var myFiles = myFolder.getFiles();
    I will appreciate any help.
    Thanks,
    Candido

    Hi John,
    Thanks for your help.
    I'm rushing to my work  so I don't have enough time to sort it out at the moment.
    If I understand you correctly, it should be something like so:
    var files;
    var folder = Folder.selectDialog( "Select a folder with images" );
    if (folder != null) {
         files = GetImages(folder);
         if (files.length > 0) {
              alert("Found " + files.length + " image files");
         else {
              alert("Found no image files");
    function GetImages(theFolder) {
         var imageFiles = [],
         fileList = theFolder.getFiles(),
         i, file;
         for (i = 0; i < fileList.length; i++) {
              file = fileList[i];
              if (file instanceof Folder){
                   GetImages(file);
              else if (file instanceof File && file.name.match(/\.(jpg|psd|tiff|pdf|eps)$/i)) {
                   imageFiles.push(file);
         return imageFiles;
    But it doesn't work.
    Regards,
    Kasyan

  • Is there a FIND search filter for SHARED folders?

    I believe Archiving will only archive the users emails not any messages displayed in a shared folder.
    But when I do a FIND search by date, I still see all those messages from shared folders that other users own.
    Is there a FIND search filter for SHARED folders?
    Further is there a way to differentiate or filter in a FIND search for shared folders that only I own, or shared folders that are owned by other people?

    condor wrote:
    > The Archiving process knows not to move messages from folders that are owned
    > by other people. How does it know?
    The archiving process isn't "allowed" to move messages from folders that are
    owned by others. This is a different matter altogether. Archiving systems
    typically use either IMAP or SOAP for their access, and cannot access folders
    shared by other users (Nexic Discovery is different in this if you use the API
    version of it, because it can see shared folders, and will archive if you
    request it).
    You are comparing apples and oranges unfortunately, and the client was built to
    be able to manage shared folders unlike the archiving program.
    As Michael says, you can choose to not "look in" shared folders if you do not
    want them to show up in a find results.
    Danita
    Novell Knowledge Partner
    Moving GroupWise to Linux?
    http://www.caledonia.net/gwmove.html

  • PDF 1.2 Filter for a wmf image stream

    Does anybody know how to embed a wmf image as a stream in the PDF 1.2? I saw a filter for jpeg but it's not what I need. Thanks in advance!

    Thanks for your reply!

  • Can we use drop shadow filter for reflection of a n image

    i just want to know can i use drop shadow filter for
    reflection of a image if yes then how
    if not then suggest me any other filter

    "tausif d" <[email protected]> wrote in
    message
    news:gbsrbm$8ag$[email protected]..
    >i just want to know can i use drop shadow filter for
    reflection of a image
    >if yes then how
    > if not then suggest me any other filter
    http://www.quietlyscheming.com/blog/components/tutorial-displayshelf-component/

  • Can I search for multiple images simultaneously in Aperture?

    Can I search for multiple images simultaneously in Aperture?  For example, search for 'Image2.jpg, Image3.jpg, Image5.jpg' by image name, out of different folders? 

    dusan -- your best procedure is likely to be to type the first file name (without extension) in the search field of the Photos View, and then mark that file either with a Flag or a color label.  (You might clear all Flags prior.)  If you have a lot of images or a slow computer (or both ) you may have to wait a few seconds.  Aperture will show "Loading ... " on the left side of the tool strip while it churns through your images.
    Then hit backspace twice, and type "60".  Mark the file found.
    Repeat with variations.
    Then go to Flagged view, or filter the whole Photos view for the color-label you used.

  • Filter for history entries

    i use LR 4.1,  as well as Photoshop CS6. i am on iMac i7 and use LION.
    I have exported numerous LR4 images to various folders on my hard drive.
    I have come to realize that many of these were exported with incorrect PPI and/or incorrect dimensions. They must be corrected.
    It would be helpful to search history for all images that have "EXPORT-Hard Drive.......or what ever..." in history module. This to help in at least finding these erroreous images for repair, rather than having to open each image in LR develop to see if it has been "Exported."
    JOHN ELLIS' "any filter" comes close but will not find this entry in history.
    ANY HELP?
    thanks in advance.
    vince

    HI Bharati,
    If u want to do filtering from code, just implement the condition in the code at the time of adding elements
    For example, if u want to add only the names which satrts with Bharati, then
    IPrivate<view>.IMasterNode masterNode=wdContext.nodeMasterNode();
    IPrivate<view>.ITableNode tableNode=wdContext.nodeTableNode();
    IPrivate<view>.ITableElement tableElement;
    for(int i=0;i<masterNode.size();i++)
      String name=masterNode.getMasterElementAt(i).getName();
      if(name.startsWith("Bharati")
        tableElement=tablenode.createElement();
        tableElement.setName(name);
        tableNode.addElement(tableElement);
    Regards,
    Fahad Hamsa

  • How to include in the sub-menu a table specifies of the user - UDO

    hi, forum  
    how to include in the sub-menu a table specifies of the user 
    I created a table '@ IA_RELAT' in User-Defined Obejcts but I don't know as including in the sub-menu that I created  
    it follows my code
      Private Sub SBO_Application_MenuEvent(ByRef pVal As SAPbouiCOM.MenuEvent, ByRef BubbleEvent As Boolean) Handles SBO_Application.MenuEvent
            If (pVal.MenuUID = "MySubMenu") And (pVal.BeforeAction = False) Then
                Try
                           <u201DmyTableName->@IA_RELATu201D>
               Catch
                    SBO_Application.MessageBox("The Form already exists")
                End Try
            End If
    thank you
        End Sub

    Hi David
    Excuse me but I didn't find in MenuCreationParams Objects how to do this call of the table '@ IA_RELAT' created in User-Defined Obejcts 
    It follows my code 
    in AddMenuItems I set up the Menu and Submenu 
    in SBO_Application_MenuEvent it is where I am having difficulties of showing the table '@ IA_RELAT' created in User-Defined Obejcts 
    Thank you for any help
        Private Sub AddMenuItems()
            Dim oCreationPackage As SAPbouiCOM.MenuCreationParams
            oCreationPackage = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_MenuCreationParams)
            oMenuItem = SBO_Application.Menus.Item("43520") 'moudles'
            Dim sPath As String
            sPath = Application.StartupPath
            sPath = sPath.Remove(sPath.Length - 3, 3)
            oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_POPUP
            oCreationPackage.UniqueID = "MyMenu01"
            oCreationPackage.String = "Standard cost"
            oCreationPackage.Enabled = True
            oCreationPackage.Image = sPath & "UI.bmp"
            oCreationPackage.Position = 15
            oMenus = oMenuItem.SubMenus
            Try ' If the manu already exists this code will fail
                oMenus.AddEx(oCreationPackage)
                '// Get the menu collection of the newly added pop-up item
                oMenuItem = SBO_Application.Menus.Item("MyMenu01")
                oMenus = oMenuItem.SubMenus
                '// Create s sub menu
                oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_STRING
                oCreationPackage.UniqueID = "MySubMenu"
                oCreationPackage.String = "Auxiliary Table"
                oMenus.AddEx(oCreationPackage)
            Catch er As Exception ' Menu already exists
                SBO_Application.MessageBox("Menu Already Exists")
            End Try
        End Sub
    Private Sub SBO_Application_MenuEvent(ByRef pVal As SAPbouiCOM.MenuEvent, ByRef BubbleEvent As Boolean) Handles SBO_Application.MenuEvent
    If (pVal.MenuUID = "MySubMenu") And (pVal.BeforeAction = False) Then
        Try
    SBO_Application.ActivateMenuItem(menus.Item(1).UID.IndexOf("@IA_RELAT"))
        Catch
                    SBO_Application.MessageBox("error")
        End Try
    End If
    End Sub

  • What are the Best Practices for Optimizing Images in InDesign Files

    Is there a best practice for using images InDesign to optimize the document before converting to a PDF? Specifically, what I'm asking is, will the PDF file compress better if the images are cropped prior to placing them in Indesign? I'd like to know the answer for both creating PDF files for printing using images that are 300dpi and for creating PDF files for online delivery using images that are 72dpi. I have an employee that insists images need to be cropped to actual dimensions before placing in the InDesign document. I've never done it that way and believe that her recommended process is way too time consuming and leaves you with no leeway to tweak your page design since the images are tightly cropped.

    As for absolute cropping, I agree with your stance. Until the layout is fixed, preserving your ability to easily manipulate photo size and positioning is key.
    Some clever image management methods have been described in the discussion forums, and one that appealed most to me was the use of duplicate linked image folders. Having a high-res (CMYK) folder and a low-res (RGB) folder to switch between for different output enables you to use both to your advantage. Use the low-res images for layout, for internal proofing, and for EPUB/online PDF/HTML output. Then it's simply a quick switch to the high-res image folder for print purposes. You can easily prepare the alternate collection of images with a Photoshop batch convert script or with the Photoshop Image Processor. Save your presets!

  • How to include images in my app

    hi all.
    I'm using Apex 2.1 over XE.
    I'm sorry but i can't find any thread related to how to include images in my app.
    I've uploaded several trough shared componentes / files / images, but don't know how to use it, for example, in an HTML region, as header of the page.
    Thanks a lot for your help.
    Fernando

    Hi,
    I have used four different ways to display images in my applications depending on which method is the fastest to refresh.
    1. Under Application Attributes > Edit Standard Attributes > Substitutions enter your substitution string (MY_IMAGE_URL) and substitution value(http://somewhere/img)
    and then in the region or template use the following syntax &MY_IMAGE_URL. in your html tags eg. img src="&MY_IMAGE_URL./banner.png" width="x" height="x">)
    I have found this the best for image refresh speed, especially if the image is already cached.
    2. Load your image up into Apex and don't associate it with any application and use the following tag img src="#WORKSPACE_IMAGES#banner.png" width="x" height="x" alt="">
    Good for development as all images not associated to an application are available.
    3. Load your image up into Apex and associate it with an application and use the following tag img src="#APP_IMAGES#banner.png" width="x" height="x" alt="">
    This can be a pain during development when your application numbers continually change.
    4. Use standard http address <img src="http://somewhere/banner.png" width="x" height="x">
    Ben
    Message was edited by:
    Benton

  • Adding/Deleting keywords for multiple images

    Well, I'm finally paying the price for bad keyword management and I'm trying to clean up my nightmare of a system now but running into trouble.
    I'm using Lightroom 3.2.
    My workflow follows one of two types:
    1) I'm shooting something specific (soccer games) and I import the shots and immediately assign the appropriate keywords (soccer, which kid it is, which tournament it is)
    2) I've taken shots of multiple events/subjects and I haven't had time to download and organize.  I will then import with a 'file later' tag so I can easily search and keyword them later and then re-use the card.
    Well 'file later' is now about 3000 images!  Doh!
    I'm going through and properly assigning them but I'm having a lot of trouble with what I *think* should work in Lightroom.
    There are several things here:
    First, if I choose the 'File Later' keyword, it will pull up the metadata filters options on the top of the grid view.  No matter what I do, I can't make it go away.  If I do get it to go away, I wind up viewing ALL my pictures which is not what I want.
    Second, if I choose multiple pictures by ctrl-clicking or shift-clicking, It appears I can assign a keyword to multiple shots.  I cannot REMOVE a keyword from multiple shots. Lightroom seems to only want to remove the keyword from one picture at a time even if they are all selected.
    Third, the painter tool does not work...at all.  Enabling it and then selecting and applying or removing does nothing.
    So, what am I looking for here? 
    Organizing for these should be pretty easy since most are in blocks and I can apply the same keywords quickly.  However, removing the keywords one at a time is a huge pain. 
    What am I doing wrong?
    Thanks

    First, if I choose the 'File Later' keyword, it will pull up the metadata filters options on the top of the grid view.  No matter what I do, I can't make it go away.  If I do get it to go away, I wind up viewing ALL my pictures which is not what I want.
    This is the filter dialog - of course if you close it you turn back to All Photographs. Try creating a Smart Collection based on your File Later keyword - this collection will automatically populate all your images that have that particular keyword. Once you have keyworded the pictures from e.g. one particular shot, just remove the File Later-KW and those images will disappear from the collection.
    Second, if I choose multiple pictures by ctrl-clicking or shift-clicking, It appears I can assign a keyword to multiple shots.  I cannot REMOVE a keyword from multiple shots. Lightroom seems to only want to remove the keyword from one picture at a time even if they are all selected.
    I'm not sure why you can't remove keywords from multiple images - it just works fine here by selecting multiple images and delete the keyword.
    Most of the times I use the Keyword List to assign/delete keywords because in my opinion it is the easiest way - I just browse thru my list or filter for a particular kw and tick the box on the left.
    Creating a hierarchical keyword list can further simplify your work. For example the location: organize the final keyword xyz-Soccer Stadium into other keywords like Town>County>State>Country>Continent>Places, then you only have to tick the last keyword xyz-Soccer Stadium and with that assign all of those keywords in the hierarchy (I know thats kind of a complicated explanation...but I suggest you play around a bit and then you will get the full picture ).

  • Processing several images in a batch action to apply their individual auto camera raw auto setings individualy for each image selected.

    Hi,
    I have a folder with several images that I want to apply Camera Raw auto settings to all of then according to their individual parameters.
    When you open a single file in Camera Raw you can click on the "auto" option to make an start point correction for that image.
    I want to select all images in a folder and apply this procedure to every selected file without having to open every file individually and clicking in the auto option.
    Can this be done from Bridge CC 6.1.0.116?
    Appreciate comments on the viability of this task

    kbarre wrote:
    Auto Sync is functioning as expected, unless I choose Auto Tone first.
    If I choose Auto Tone first, a small portion of the selected images will be updated, but most will not.
    Lightroom's handling of auto-tone leaves something to be desired - I have a lot of experience with it, trying to make reliable develop-setting plugins which include auto-toning. Those plugins have a bewildering amount of logic - something like this: initiate auto-toning, check back to see if it has properly settled, issue the auto-toning again if it never seems to be properly settling... - usually it works out after a while, but even sometimes it never does, and generates an error: can't get auto-toning to settle across all photos.
    The point of all this is that there are bugs in Lr's handling of auto-toning, as you are growing aware.
    Try this:
    * do the auto-toning, then let it percolate for a while.
    * then visit each photo at 1:1 (to force Lr to finalize settings...), and confirm auto-toning has settled...
    Then try auto-syncing that preset (make sure process versions are all the same, and preset does NOT include auto-toning - I would leave process version OUT of your presets).
    Better?
    I don't expect this is a workflow you'll want to do all the time, but as a test it might help shed some light on the problem.
    Rob

  • How do you filter for photos with develop adjustments?

    I wanted to put this information out there, because it was difficult for me to find an answer to the question of "how do you quickly filter for photos that have develop adjustments?"
    Some earlier posts in this forum observe that a smart collection has the ability to filter files wherein "has adjustments" is "true." Yes, it can do that. And it can also add in a "date" parameter for more specific targeting. But it cannot simply say, "in the current folder," or "in the selected folder." And frankly, that's the exact situation when I need to filter down to the files I want: I'm in a folder—typically the current folder that I've just imported—and I've done a smattering of develop adjustments. Now, I want to quickly select just those images for export. Can't be done, not with a Smart Collection, anyway.
    But Lightroom is nothing if not deep, and if you approach the problem from a filtering standpoint, it will eventually get you there—but the solution is very non-obvious. Expose the filter bar, with your favorite preset: camera info, default columns... it doesn't really matter. Hover over the header bar and to the far right will become visible the "add column" widget. Add a column. From the pop-up menu on the name will come a long list of options, the second-to-last of which is "develop preset." Once that's in place, click on "custom." Save your current settings as a new preset and give it a descriptive name like "adjusted images."
    Now, when you're in your current—or any—folder, just click on "metadata" in the filter bar, and your custom preset will be in effect: any images that you've worked on will be selected. It's a fast, one-click selection.
    If there's another way of doing this (keep in mind it's for the selected or current folder only), let me know. It's such a seemingly desirable action that I'm kind of astounded there's no built-in or easy or obvious way to do it... or that no photographer has requested it.

    I am honored to have a response from Rikk "MVP" Flohr, and I do readily agree that your approach is one way to approach the issue. It puts the relevant images in a discrete area that is easy to access. However (this is where I look a gift horse in the mouth) I find "sorts" a bit underwhelming in comparison to "filtering." Two problems: first, the sort still does not 'clear your deck' of unwanted images. You still have to squint at the badges and carefully select the range at the top (or bottom). Mistakes can be made (and I would be the first to make them). Second, the sort command is "sticky," meaning that folder will always have that sort unless you undo it. In general, I think most photographers want to see a folder's images sorted by capture time, so they can easily glance to the beginning, middle, and end of the shoot. With my method, once you click out of the folder, the filter is taken away and you're back to normal.
    I do understand that Lightroom wants me to flag my images with rankings or stars or colors or dancing beavers or what-have-you. But in this particular situation, that's an extra step. If I've applied development adjustments, it's already done. Why shouldn't I be able to choose "Select Developed Photos" from the Edit menu, right under "Select Flagged Photos"?

  • How to include images in HTML emails

    Hi,
    from Oracle DB, using UTL_SMTP I am sending emails to customers, it works OK but my problem is that include images do not show when email is open (show typical box with a 'X' in it) , Is there any option to do it??? in HTML? in UTL_SMTP.
    Others options?
    Thanksin advance.

    Tom Kyte's site suggests a solution for this on :
    http://asktom.oracle.com/pls/ask/f?p=4950:9:18134091167212544557::NO:9:F4950_P9_DISPLAYID:255615160805
    Thanks,
    Rashmi

  • How to include images in your swf?

    I am making a website with flash builder. The images i need, i have to upload to the server and have to load everytime you click on a menu button. That takes time and is very bad for my limited banthwidth (or something). So, i want to know how i can include images in the swf, so they just have to load one time.
    Thanks, Evert.

    Have you looked into embedded images?
    This might help: http://livedocs.adobe.com/flex/3/html/help.html?content=embed_4.html

Maybe you are looking for

  • Customer invoice doument and cancelled document are showing under openitems

    Dear All, I have created customer invoice in VF01 and cancelled the invoice in VF11. 1.System is showing Invoice document and cancelled document under open items list in FBL5N customer line items. A. Is this correct?         or B. When we cancelled t

  • How to set log4j at runtime

    Hi, I am using log4j and want to take the logfile name as a command line argument. Can anyone help as to how to set the properties which are done statically in log4j.propreties file.... I tried logProperties.setProperty("log4j.appender.ROOT", "org.ap

  • Cisco Secure ACS 5.4/Monitoring and Report Viewer - SNMP Settings

    Hello Everyone. I hope this is the right forum for my question. We just purchased 8 1121 ACS 5.4 appliances. I have some familiarity with the older 1113 and 1120 appliances running ACS 4.2. So I have a lot to learn. Right now I'm trying to understand

  • "Error has occured" msg whenever try a U-tube" video using Firefox 3.6.12, OS 10.5.8

    Whenever I click on a link to a U tube video in Thunderbird it takes me to the U tube website and instead of getting the video to play it shows the message "An error has occurred." I can copy and paste the link into Safari and watch the video, but th

  • ITunes Won't Play Music Files or Store (Music) Previews

    Running iTunes 11.0.1.12 on Windows 7 Professional SP1 (Build 7601).  Cannot play any of my music files in iTunes (local or from iCloud), nor does iTunes play any Store music preview.  The time bar does not move from 00:00, and there's no sound (even