How to figure out which albums contain a specific image?

Is there a way to click on a specific image and find out where else it is located (besides the master file location)? For example, let's say an image of your cousin is included in an album Birthdays and in another called Family. If I clicked on the master image, is there a way to see that it is included in the albums Birthdays and Family?
Thanks for your help!

The link to the script in the post you referenced is no longer valid.
This should work Aperture: Search albums for a specific image
I have it installed as an Aperture Service but it will work as a regular script.

Similar Messages

  • How to find out which page contains a specific ITextFrame

    Hi all,<br /><br />I would like to ask if it is possible to find out which page contains a specific text frame?<br /><br />I used the following code to find the ITextFrame that contains the caret<br />ISelectionManager* mgr = activeContext->GetContextSelection();<br />InterfacePtr<ITextEditSuite> esuite(mgr, UseDefaultIID());<br />InterfacePtr<ITextTrackerAccess> tracker(esuite, UseDefaultIID());<br />ITextFocus* focus = tracker->QueryTextFocus();<br />ITextModel* model = focus->QueryTextModel();<br />IFrameList* flist = model->QueryFrameList();<br />RangeData range = textFocus->GetCurrentRange();<br />TextIndex cposition = range.Start(0);<br />int32 fidx;<br />ITextFrame* frm = flist->QueryFrameContaining(cposition, &fidx);<br />UIDRef frmUIDRef = ::GetUIDRef(frm);<br /><br />However, when I use the following code to iterate through the pages, I cannot find any UID that matches the ITextFrame<br />for (int32 sIdx = 0; sIdx < spreadList->GetSpreadCount(); sIdx++) {<br />  UIDRef spreadUIDRef(database, spreadList->GetNthSpreadUID(sIdx));<br />  InterfacePtr<ISpread> spread(spreadUIDRef, UseDefaultIID());<br />  for (int32 pIdx = 0; pIdx < spread->GetNumPages(); pIdx++) {<br />    spread->GetItemsOnPage(pageIndex, &uidList);<br />    if (uidList.Contains(frmUIDRef.GetUID()) == kTrue) {<br />      ...<br />    }<br />  }<br />}<br /><br />Any help is appreciate. Thank you.<br /><br />Ikki

    I think your frmUIDRef is too far down the hierarchy to show up in GetItemsOnPage(). Try getting the IHierarchy interface from frmUIDRef and calling QueryParent(). That should get you from the kFrameItemBoss to the kMultiColumnItemBoss. Do the same again and you'll get to the kSplineItemBoss, which should appear in GetItemsOnPage().
    If you're running the debug version of InDesign, you can use the Test menu to run the Diagnostics > Document Structure > Trace Content Hierarchy command, which will print out the UIDs of all the items on a page and let you see what's happening.
    Charles

  • How to figure out which tables are using Extensible Optimizer?

    Hi guys,
    I'm sure that there're several tables those are associated with Extensible Optimizer in my database, I can also find the Extensible Optimizer relevant type and the implementation of interface functions ODCIGetInterfaces, ODCIStatsTableFunction.
    I'm curious to know is there a way to figure out which tables are associated with this Extensible Optimizer, does anyone have any clues?
    Database: oracle 11.2
    Thank you in advance.

    Hi,
    Can you please check the below link.It may help you:
    http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28425/ext_optimizer.htm
    Best regards,
    Rafi.
    http://rafioracledba.blogspot.com

  • How to find out which album(s) a photo is in?

    Apart from the right-mouse click and then "remove from album ...".

    In organizer, go to 'View' menu and mark check the option 'Details'
    Now on the right bottom of the image there will be a album icon, hover your mouse on that icon and it will show you which album the image belongs to .
    Thanks
    Harshit yadav

  • How to figure out which material documents should be deleted?

    Hi,
    I am creating a report that sums up material movement. But I meet a problem about reversal material documents.
    In my report, I collect all the documents and delete all the document with field SMBLN is not empty. Code is like below.
    MOVE it_mseg[] TO it_mseg2[].
      LOOP AT it_mseg WHERE smbln <> ''.
        LOOP AT it_mseg2 WHERE mblnr = it_mseg-smbln AND zeile = it_mseg-smblp.
          it_mseg-del = 'X'.
          MODIFY it_mseg.
          it_mseg2-del = 'X'.
          MODIFY it_mseg2.
        ENDLOOP.
      ENDLOOP.
      LOOP AT it_mseg2 WHERE del = 'X'.
        LOOP AT it_mseg WHERE mblnr = it_mseg2-mblnr AND zeile = it_mseg2-zeile.
          it_mseg-del = 'X'.
          MODIFY it_mseg.
        ENDLOOP.
      ENDLOOP.
      DELETE it_mseg WHERE del = 'X'.
    But sometimes users may cancel a material document, and later they may cancel the reversal document also.
    Then there are 3 documents. In my report, all these 3 documents will be deleted.
    Is there any method to only have the last document left and delete the others?
    Thank!
    Wesley

    Thanks Dzed, it seems the code works succesfully, and I also figure out another code like below, it also works~
      MOVE it_mseg[] TO it_mseg2[].
      LOOP AT it_mseg.
        LOOP AT it_mseg2 WHERE mblnr = it_mseg-mblnr AND zeile = it_mseg-zeile.
          IF it_mseg2-del = 'Y'. 
            it_mseg-del = 'X'.
            MODIFY it_mseg.
          ENDIF.
        ENDLOOP.
        IF it_mseg-del = 'X'.
          CONTINUE.
        ENDIF.
        LOOP AT it_mseg2 WHERE smbln = it_mseg-mblnr AND smblp = it_mseg-zeile.
          it_mseg-del = 'X'.
          MODIFY it_mseg.
          it_mseg2-del = 'Y'.  
          MODIFY it_mseg2.
        ENDLOOP.
      ENDLOOP.

  • How do figure out which jtable entry is clicked/doubleclicked on

    im using a jtable to display the return of items in an ldap directory. how does one know which item is clicked/doubleclicked on in order to, for instance, bring up another screen with only that info on it. and is there a way to now allow the table entries to be edited. when i doubleclick on the table currently, it lets me edit the cell.
    thanks

    when i doubleclick on the table currently, it lets me edit the cell.You need to override the isCellEditable(...) method of JTable or the TableModel and return false.
    Then when you use a MouseListener the double click event will be passed to the MouseListener and not intercepted by the JTable.
    You can use the getSelectedRow/Column methods of JTable.

  • How to find out which object has a specific attribute value

    Hi all,
    which is the easiest way to check in a collection of objects which object has an attribute with a specific value?
    i.e. I have n objects of classA and they all have an attribute "String value;".
    How can I check which object has that attribute set to "myvalue"?
    Thanks,
    A.

    hi,
    i don't know if this would be the best way to do it, but i would add all the instances of the objects to a hashtable with the key as the attribute with which you want to search them. You would then retrieve the object using the value.
    Cath

  • How to figure out which developer public and private keys to delete

    Hello everyone,
    In my Keychain Access utility, I have two iOS Developer public keys and two iOS Developer private keys. That was the result of a problem with setting up things for iOS development - I had to try it a second time in the Member Center part of the Apple developer website.
    How do I assess whether a key is actually being used for anything?
    I notice that the second private key has a disclosure triangle which reveals an iPhone Developer certificate underneath. The first private key has nothing like that.
    The two public keys look identical.
    Is it even necessary for me to do anything? I want to delete extra unused keys if they will cause a problem.
    Thanks for any guidance.
    Erik

    AliD wrote:
    System view is user_dependencies.no INDEXES
    SQL> select type, count(*) from user_dependencies group by type;
    TYPE               COUNT(*)
    RULE                   3
    JAVA DATA           3131
    PROCEDURE            551
    OPERATOR             30
    PACKAGE BODY           8175
    PACKAGE            1193
    RULE SET             13
    TYPE BODY            567
    TRIGGER              43
    UNDEFINED             66
    JAVA CLASS          21630
    TYPE               COUNT(*)
    VIEW               13636
    FUNCTION            405
    TABLE                 284
    EVALUATION CONTXT        22
    SYNONYM               8
    TYPE                2267
    17 rows selected.
    SQL> show user
    USER is "SYS"
    SQL>

  • How to figure out which universes they use for a massive number of reports?

    Hi,
    In Web Intelligence or CMS or by using any means, is there an easy way to generate a list that shows all reports and the universes they use?  The reason I'm asking this question is that I want to clean up universes but I need to know which reports use which universes.  With over 1000 reports in repository, it is not feasible to go into every report to see which universes it uses.
    Thanks a lot.
    Jun

    Thanks a lot.
    The Query Builder does the trick: http://<CMS host name>:8080/businessobjects/enterprise115/adminlaunch/query/ie.jsp although it cannot provide the location of the reports but it does provide the name and owner of the reports.
    The following blog helps on how to construct the Query Builder queries:
    /people/ted.ueda/blog/2008/10/20/businessobjects-enterprise-sdk--relationship-queries
    Thanks.
    Jun

  • How to find out which node has a specific word in xml query

    hi
    I have to query xml file. My xml file has items like this.
    <item>
      <product_code>SVUF2640</product_code>
      <site_name />
      <group>XDC</group>
      <description>towerxxx1 aaaa</description>
      <vf_no>44000077777</vf_no>
      <serial_no />
      <vendor>AAA</vendor>
      </item>
    <item>
      <product_code>SXXX</product_code>
      <site_name />
      <group>SXS</group>
      <description>xx1</description>
      <vf_no>4xxx7777</vf_no>
      <serial_no />
      <vendor>BBA</vendor>
      </item>I want to get item node which has a "tower" word in description tag. I'm looking something "like" word in sql. Thanks in advace.

    XPath has a contains() function.

  • Figuring out which JRadioButton is selected

    Hey guys. I have a simple program that calculates tempurature in Fahrenheit, Celcius and Kelven.
    There are 6 Radiobuttons in a ButtonGroup. I need to know how to get which radiobutton is selected.
    Here is my code....I already have an action listener for the buttons that runs the code to do the calculations and display the answer, I just need to know how to figure out which radiobuton is selected.
    Thanks!
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.text.DecimalFormat;
    public class DegreeConverter extends JFrame{
    JLabel lblFah, lblConversion,lblShowConversion;
    JTextField getFah;
    JButton btnConvert;
    JRadioButton btnFahToCel, btnFahToKel,
                   btnCelToFah,btnCelToKel,
                   btnKelToFah, btnKelToCel;
    ButtonGroup radioGroup;
         public DegreeConverter(){
              super("Degree Converter");
              super.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JFrame.setDefaultLookAndFeelDecorated(true);
            Container container1 = getContentPane();
            SpringLayout layout = new SpringLayout();
            container1.setLayout(layout);
            lblFah = new JLabel("Enter Temperature:");
            container1.add(lblFah);
            getFah = new JTextField(5);
            container1.add(getFah);
            lblConversion = new JLabel("Conversion Answer:");
              container1.add(lblConversion);
              lblShowConversion = new JLabel("...");
             container1.add(lblShowConversion);
            btnConvert = new JButton("Convert");
            btnConvert.addActionListener(
                   new ActionListener(){
                        public void actionPerformed(ActionEvent event){
                             String strFah = getFah.getText();
                             double dblFah = Double.parseDouble(strFah);
                          lblShowConversion.setText(Double.toString(convertDegrees(dblFah)));
            container1.add(btnConvert);
            btnFahToCel = new JRadioButton("Fahrenheit To Celcius", true);
            container1.add(btnFahToCel);
            btnFahToKel = new JRadioButton("Fahrenheit To Kelvin", true);
            container1.add(btnFahToKel);
            btnCelToFah = new JRadioButton("Celcius To Fahrenheit", true);
            container1.add(btnCelToFah);
            btnCelToKel = new JRadioButton("Celcius To Kelvin", true);
            container1.add(btnCelToKel);
            btnKelToFah = new JRadioButton("Kelvin To Fahrenheit", true);
            container1.add(btnKelToFah);
            btnKelToCel = new JRadioButton("Kelvin To Celcius", true);
            container1.add(btnKelToCel);
            radioGroup = new ButtonGroup();
            radioGroup.add(btnFahToCel);
            radioGroup.add(btnFahToKel);
            radioGroup.add(btnCelToFah);
            radioGroup.add(btnCelToKel);
            radioGroup.add(btnKelToFah);
            radioGroup.add(btnKelToCel);
              //layout for btnFahToCel
            layout.putConstraint(SpringLayout.WEST, btnFahToCel,
                                   5,
                                   SpringLayout.WEST, container1);
              layout.putConstraint(SpringLayout.NORTH, btnFahToCel,
                                   5,
                                   SpringLayout.NORTH, container1);
              //layout for btnFahToKel
            layout.putConstraint(SpringLayout.WEST, btnFahToKel,
                                   5,
                                   SpringLayout.WEST, container1);
              layout.putConstraint(SpringLayout.NORTH, btnFahToKel,
                                   5,
                                   SpringLayout.SOUTH, btnFahToCel);
              //layout for btnCelToFah
            layout.putConstraint(SpringLayout.WEST, btnCelToFah,
                                   5,
                                   SpringLayout.WEST, container1);
              layout.putConstraint(SpringLayout.NORTH, btnCelToFah,
                                   5,
                                   SpringLayout.SOUTH, btnFahToKel);
              //layout for btnCelToKel
            layout.putConstraint(SpringLayout.WEST, btnCelToKel,
                                   5,
                                   SpringLayout.WEST, container1);
              layout.putConstraint(SpringLayout.NORTH, btnCelToKel,
                                   5,
                                   SpringLayout.SOUTH, btnCelToFah);
              //layout for btnKelToFah
            layout.putConstraint(SpringLayout.WEST, btnKelToFah,
                                   5,
                                   SpringLayout.WEST, container1);
              layout.putConstraint(SpringLayout.NORTH, btnKelToFah,
                                   5,
                                   SpringLayout.SOUTH, btnCelToKel);
               //layout for btnKelToCel
            layout.putConstraint(SpringLayout.WEST, btnKelToCel,
                                   5,
                                   SpringLayout.WEST, container1);
              layout.putConstraint(SpringLayout.NORTH, btnKelToCel,
                                   5,
                                   SpringLayout.SOUTH, btnKelToFah);
              //layout for lblFah
            layout.putConstraint(SpringLayout.WEST, lblFah,
                                   15,
                                   SpringLayout.EAST, btnFahToCel);
              layout.putConstraint(SpringLayout.NORTH, lblFah,
                                   5,
                                   SpringLayout.NORTH, container1);
              //layout for getFah
              layout.putConstraint(SpringLayout.WEST, getFah,
                                       5,
                                        SpringLayout.EAST, lblFah);
              layout.putConstraint(SpringLayout.NORTH, getFah,
                                        5,
                                   SpringLayout.NORTH, container1);
              //layout for lblConversion
              layout.putConstraint(SpringLayout.WEST, lblConversion,
                                       22,
                                       SpringLayout.EAST, btnFahToKel);
              layout.putConstraint(SpringLayout.NORTH, lblConversion,
                                       5,
                                   SpringLayout.SOUTH, lblFah);
              //layout for lblShowConversion
              layout.putConstraint(SpringLayout.WEST, lblShowConversion,
                                       5,
                                       SpringLayout.EAST, lblConversion);
              layout.putConstraint(SpringLayout.NORTH, lblShowConversion,
                                        5,
                                   SpringLayout.SOUTH, lblFah);
              //layout for btnConvert
              layout.putConstraint(SpringLayout.WEST, btnConvert,
                                       15,
                                       SpringLayout.EAST, btnFahToCel);
              layout.putConstraint(SpringLayout.NORTH, btnConvert,
                                       5,
                                   SpringLayout.SOUTH, lblConversion);
                //layout for container
               layout.putConstraint(SpringLayout.EAST, container1,
                                   50,
                                   SpringLayout.EAST, getFah);
              layout.putConstraint(SpringLayout.SOUTH, container1,
                                   5,
                                   SpringLayout.SOUTH, btnKelToCel);
              pack();
            setVisible(true);
            }// end constructor
         public static void main(String args[]){
                 DegreeConverter application = new DegreeConverter();
         public double convertDegrees( double fah){
    //currently there is only one calculation here.. I need to figure out
    //how to get which radiobutton is selected so i can do a select case
    //or if/else here to do the appropriate calculations.
              DecimalFormat twoDigits =  new DecimalFormat("00");
              String celcius;
              double returnCelcius;
              celcius = twoDigits.format(5.0/9.0 * (fah - 32));
              returnCelcius = Double.parseDouble(celcius);
              return returnCelcius;
         }//end convertDegrees
    }//end class

    Swing related questions should be posted in the Swing forum.
    1) Test each button
    If (button1.isSelected() )
    else if (button2.isSelected() )
    ....

  • I'm trying to install OEM SR 2.1: Windows 95B in Qemu...  How do I figure out which brand of CD-ROM drive Qemu emulates since I have three different drive specific boot disks...?

    I'm trying to install OEM SR 2.1: Windows 95B in Qemu...  How do I figure out which brand of CD-ROM drive Qemu emulates since I have three different drive specific boot disks...?

    Not exactly...; all MS produced Win9X/ME install CDs are ISO-9660 & maybe even Joliet too...  The really confusing part is that not all Windows 98 SE full install CDs are even bootable in the first place (they tend to only ship one if the PC is capable of booting directly from its optical drive...; the vast majority of PCs have to use the chain loading method due to buggy, poorly written, outdated BIOSes...; etc.).  OEM SR 2.1/Windows 95B is really quite special & innovative for its time in that it was the first Service Release of Windows 95 to support larger HDs via FAT32 which back then was still brand new: i.e.: exciting technology & it still has proven to be quite useful & versatile since most flash memory storage devices come pre-formatted FAT32.
    There's also a hidden X:\Usbsupp folder on the CD that contains the MS USB 1.1 supplement patches/upgrader: a common mis-nomer is that you don't need to install it unless your PC has USB 1.1 ports.  Even without USB 1.1 ports the upgrades to C:\Windows\system make it a lot less buggy, more secure & stable.  For anyone else that enjoys emulating OEM SR 2.1 there's also a great unofficial SP 1 for it which has so many useful patches in it I'm considering integrating it into all of my install CDs... 
    Unfortunately I've found that getting it to run decently requires tracking down a bevy of essential but according to MS's not releasing them in patch form optional DLL upgrades...  I guess not all machines are that unreliable but better to have them...; just in case you encounter a PC with a buggy BIOS that has hardware coniptions and/or ACPI/APM bugs.

  • How to find out which keywords were used to create a smart album?

    Hi,
    I actually have 2 questions;
    a) Short of scrolling down my very long list of password on the HUD - is there an elegant way to do it - How to find out which passwords were used to create an existing smart album? It's a recurring challenge for me.\ 'cause I like using smart albums, but once in a while need to check or chane the passwords.
    b) With annoying regularity when I try to get to this forum and choose Aperture, I get the following message - in pink, no less: It appears you're not allowed to view what you requested. You might contact your administrator if you think this is a mistake.
    Any clues?
    Thanks guys,
    Raphael
    <Edited by Host>

    b) With annoying regularity when I try to get to this forum and choose Aperture, I get the following message - in pink, no less: It appears you're not allowed to view what you requested. You might contact your administrator if you think this is a mistake.
    Any clues?
    Raphael,
    that message may occur for four reasons at least:
    Most frequently, when you are using an outdated link to a post that no longer exists, for example from an email notofication. Sometimes our community host will remove posts, that are in violation of the terms of use: see:
    Apple Support Communities Terms of Use
    Or you are using the edit button or a bookmark to an "Edit" window, after the fifteen minutes allowed for editing are up.
    Or you want to view a page in a restricted section of the ASC - soem perta are only open for members of level 6 or higher.
    Or it is one  of the unexplained problems with the forum software right now.
    a) Short of scrolling down my very long list of password on the HUD - is there an elegant way to do it - How to find out which passwords were used to create an existing smart album? It's a recurring challenge for me.\ 'cause I like using smart albums, but once in a while need to check or chane the passwords.
    I really like Kirby's suggestion with the IPTC rule Keyword is. This is very useful for smart albums global to the library.
    Frequently a different approach helps for my smart albums. Many of my smart albums are local to projects or folders.  In this case the smart HUD will only show those keywords that have been used for the images in the selection. So if I only have tagged the images with the keywords "birds" and "slideshow", the smart settings HUD will only show these two keywords and the list is very short.
    My Keywords HUD, is organized hierarchically; this way I can collapse large sections at once, and it is easier to focus on the keywords needed for a specific task.
    I use the search field in HUD a lot, to filter the set of keywords shown.

  • HT201272 Anyone know how I can figure out which of my family's 5 Apple devices was used to purchase something from iTunes ?   We all have the same apple account/ID.   Thanks!

    Anyone know how I can figure out which of my family's 5 Apple devices was used to purchase a specific song via iTunes ?   We all have the same Apple ID/account which makes it tricky...  Thanks!

    valfromedina wrote:
    What I was afraid of.   Thanks.   Seems like someone at Apple should be figuring this out.  Would be nice to link each purchase to a specific device.
    That would not be practical or probably even possible since one of the features of recent versions of iTunes and the iTunes Store is to allow new purchases to be automatically downloaded to every device registered to your Apple ID when something is purchased. If you want purchases linked to specific devices, each user should have his or her own iTunes Store account.
    Regards.

  • How can if figure out which contacts are in both iCloud and on my Mac?

    I keep contacts on my Mac and on iCloud.  I want to see which ones are in both databases.  Some of them automatically "linked" and others did not.  The search for showing contacts that are both a member of "my Mac" and a member of "iCloud" does not seem to work.  I also want to figure out which contacts are not in a group and this has been difficult as well.

    If you change your preferences so that the defaul is not iCloud then you get two sections like this:
    When I don't have it set to On My Mac then I only get one section because all of my cards are in the cloud.

Maybe you are looking for

  • ETD and Base line are not matching

    Hi All, My requirement is in production server, for some invoices the Expected time departure and base line date are not matching, What will be the reason behind this? Can you please advice how to approach to this problem.? Thanks in advance jaya.G

  • My Wife's Devices on My iTunes Account

    I started having two Apple iPhones on one iTunes account with home sharing.  I now (presently) have and iPhone 4S and a New (3rd Gen) iPad.  My wife now has and iPhone 3GS and an iPad 2; both devices were formerly mine but where transferred and re-na

  • Hi Guys, can you please help me with Connection Pooling.

    I have:- Tomcat 5.0.27 MySQL 4 Apache 2.0. JSP web pages. I have been trying to get connection pooling working but i havent been successful yet. Please do help me make it happen. I have posted my server.xml and web.xml from /conf/. They are not edite

  • 5th Gen iPod nano

    Sold my iPod 16GB blue on eBay.  The end user wants to return since it was formatted in MAC.  He cant get it to work on his Windows iTunes.  Here is what he said on his email.  Any advice to get it to work on Windows from the MAC format? Him--) Good

  • HT1212 my apple id that comes up on screen is not right

    The apple id that comes up on the screen when I try to download anything is wrong! I was told to redo this twice and it still does not work! On laptop it comes up correct but on the ipod it has never changed! It comes up as [email protected], I do no