Why do I have so much trouble getting keywords entered, especially...

when selecting multiple photos?
Often when the keyword field says "add keywords" and then when I select multiple images the offer disappears and I cannot add words no matter whee I click. Sometimes closing the INFO button at the bottom and reopening the pane will allow me to enter.
This issue usually acts up when keywords already exist such as when a movie file is already tagged with a keyword called MOVIE.
Anyone experience anything like this and what is the better way to get keywords in w/o having to use the info pane keywords filed?

After selecting the multiple photos type Command+K to bring up the Keyword pane:
Click to view full size
Then click on the keywords you want to assign to those photos.

Similar Messages

  • Why do I have so much trouble getting my copy to format correctly inside my div?

    Hey guys, I'm very new at this so please bear with me   I'm designing my first website and I'm at the point where I want to add my copy.  I have a div with a background image, and another div nested inside of it.  When I paste my copy into the nested div, things seem to shift around in the design view.  They usually look ok when I preview in live mode, but it's very troublesome trying to work on the site when things are all jumbled up.  What am I doing wrong?  Should I paste the source code here so you guys can see it?  Thanks in advance!

    Depending on the CSS, live view and design view can be totally different.
    Its often best to type in your copy in the divs and then add the CSS to format it.
    Post the css and the set of divs with some content in order to enable people to try work out what is wrong.

  • Why do I have so much trouble signing-in to Itunes?

    Everytime I try to sign-in to ITunes, I always get the error that my ID/Password are incorrect. I wrote them down when I had trouble the last time but still cannot log-in to ITunes.
    If I click Forgot Password then the button for answering security questions, when it asks for my date of birth, when I put that in it is wrong. Geeeze!!! I ought to know when I was born and why would I enter something different?
    Getting so I don't want to mess with ITunes or Apple, period!!

    Here's an update on my post.
    When I click on my ITunes short cut, I get a window that says
    I have no idea why I'm getting this error as I have not inserted a disc in my computer for months. I haven't created any playlists, nor have I purchased anything as I'm always denied.
    In addition, when I am logged-in to the store (I'm assuming I am logged-in as my email address is reflected on the top left), when I select a song, then click Buy, I get the following error
    I'm at a total loss as to why I am unable to do anything in ITunes, either through my desktop or IPhone. Quite obviously I don't have a network problem as I have to be on-line to even get into the ITunes store.
    At this point, I'm convinced that ITunes doesn't want my money and am at the point that I'll just forget Apple and ITunes and try my luck elsewhere.
    FYI. I have used two emails, and created 2-3 IDs/passwords trying to get into ITunes and buy something.

  • Why do I have so much trouble syncing?

    This is really starting to get on my nerves. I bought this iPhone because of all the cool stuff it can do and because it was supposed to be more reliable "because it's Apple." So far, I've had fewer complaints about the copy of Windows 7 that I bought around the same time. I never thought I'd say this but after about 9 months I'm more pleased with my purchase from Microsoft than I am with my purchase from Apple.
    Anyways, onto my real problem...
    Nearly every time I try to connect my iPhone I have to plug and unplug the USB cable several times before it finally gets recognized in iTunes. Just now I tried at least a dozen times before trying restarting both my computer and iPhone. When that didn't work I tried reinstalling iTunes. It synced this time, but on the second try so the problem isn't solved.
    What happens when I plug it in is the phone will make the sound it makes when you plug it in and it charges but it never goes on to say, "Sync In Progress." iTunes hangs for about a minute and then gives up trying to recognize it. If it does eventually work, iTunes loads the phone's contents quickly.
    Because of this issue I'm also wary of updating to iOS 4.0.2 as it could cause problems during the update process.

    @stellarwill
    "iTunes hangs for about a minute and then gives up trying to recognize it."
    @dosk
    Why would you post your question in my thread instead of making your own? Your problem is completely different.
    @shadowbeast
    I didn't think it was necessary to post my computer's specs but if you think it will help, these are them:
    Intel Core i7-920
    Asus P6T mobo (which is the Intel 1366 chipset)
    Mushkin 6GB Triple Channel DDR3
    WD 1TB 7200RPM SATA HDD
    ATi Radeon 5750
    Creative X-Fi XtremeGamer
    I built my computer by hand so I can't just call someone and play tech support tag getting transferred back and forth between Apple and the computer manufacturer. Problems like this never get solved by tier 1 tech support anyway.
    Could you link me to an article describing these faulty chipsets? I've never heard of anything like this.

  • Why do I have so much trouble with arrays

    using the following query:
    <cfloop index="loopCompanyNumberSet01Array" from="1"
    to="#arrayLen(companyNumberSet01Array)#" step="1">
    <cfquery name="qrySeriesList" datasource="erpdb01">
    SELECT DISTINCT Left(t_item,2)
    FROM
    dbo.ttiitm001#companyNumberSet01Array[loopCompanyNumberSet01Array]#
    ORDER BY 1
    </cfquery>
    </cfloop>
    I can use cfdump and see that I am getting the results I
    want, but I want to now take them and put them into an array (or
    list) so I can use them for another set of querires
    I tried:
    <cfset seriesArray=arrayNew(1)>
    <cfloop index="getSeriesList" from="1"
    to="#arrayLen(qrySeriesList)#" step="1">
    <cfloop query="#qrySeriesList[getSeriesList]#">
    <cfset seriesArray[currentRow][1]=1>
    </cfloop>
    </cfloop>
    but get error:
    Object of type class coldfusion.sql.QueryTable cannot be used
    as an array

    jkgiven wrote:
    > using the following query:
    > <cfloop index="loopCompanyNumberSet01Array" from="1"
    > to="#arrayLen(companyNumberSet01Array)#" step="1">
    > <cfquery name="qrySeriesList"
    datasource="erpdb01">
    > SELECT DISTINCT Left(t_item,2)
    > FROM
    dbo.ttiitm001#companyNumberSet01Array[loopCompanyNumberSet01Array]#
    > ORDER BY 1
    > </cfquery>
    > </cfloop>
    >
    > I can use cfdump and see that I am getting the results I
    want, but I want to
    > now take them and put them into an array (or list) so I
    can use them for
    > another set of querires
    >
    > I tried:
    > <cfset seriesArray=arrayNew(1)>
    > <cfloop index="getSeriesList" from="1"
    to="#arrayLen(qrySeriesList)#" step="1">
    > <cfloop query="#qrySeriesList[getSeriesList]#">
    > <cfset seriesArray[currentRow][1]=1>
    > </cfloop>
    > </cfloop>
    >
    > but get error:
    > Object of type class coldfusion.sql.QueryTable cannot be
    used as an array
    >
    1) just use qrySeriesList.recordcount instead of your
    arraylen(qrySeriesList)
    2) even better: why use cfloop over query rows when
    <cfoutput
    query="qrySeriesList"> does just that?
    ... oh, i see what you are trying to do now...
    ok, you will have to move the array populating code into your
    first
    cfloop, after the cfquery in it:
    > <cfloop index="loopCompanyNumberSet01Array" from="1"
    > to="#arrayLen(companyNumberSet01Array)#" step="1">
    > <cfquery name="qrySeriesList"
    datasource="erpdb01">
    > SELECT DISTINCT Left(t_item,2)
    > FROM
    dbo.ttiitm001#companyNumberSet01Array[loopCompanyNumberSet01Array]#
    > ORDER BY 1
    > </cfquery>
    move it into here
    > </cfloop>
    3) now, for your array populating script:
    a)
    > <cfset seriesArray=arrayNew(1)>
    that declares a one-dimensional array
    > <cfset seriesArray[currentRow][1]=1>
    but here, i believe, you are populating it as a
    two-dimensional array...
    b)
    > <cfloop index="getSeriesList" from="1"
    to="#arrayLen(qrySeriesList)#" step="1">
    instead of this loop, just use
    <cfoutput query="qrySeriesList">...</cfoutput>
    c)
    > <cfloop query="#qrySeriesList[getSeriesList]#">
    is this the line cf is complaining about?
    you never set your qrySelectList to be distinct queries in
    your first
    loop. with its every iteration that loop just creates a new
    qrySelectSeries, replacing the one created in the previous
    iteration.
    but once you move your array-setting code into the loop, you
    will no
    longer need this loop at all.
    Azadi Saryev
    Sabai-dee.com
    Vientiane, Laos
    http://www.sabai-dee.com

  • Why do I have so much trouble loading Frontierville, and why do I have to refresh it so much?

    When I go to load Frontierville, it takes forever; then when it finally does load, I no sooner get started then it tells me that the internet went all quiet and to refresh my page. What can I do to fix this?

    Here's an update on my post.
    When I click on my ITunes short cut, I get a window that says
    I have no idea why I'm getting this error as I have not inserted a disc in my computer for months. I haven't created any playlists, nor have I purchased anything as I'm always denied.
    In addition, when I am logged-in to the store (I'm assuming I am logged-in as my email address is reflected on the top left), when I select a song, then click Buy, I get the following error
    I'm at a total loss as to why I am unable to do anything in ITunes, either through my desktop or IPhone. Quite obviously I don't have a network problem as I have to be on-line to even get into the ITunes store.
    At this point, I'm convinced that ITunes doesn't want my money and am at the point that I'll just forget Apple and ITunes and try my luck elsewhere.
    FYI. I have used two emails, and created 2-3 IDs/passwords trying to get into ITunes and buy something.

  • Why do I have so much trouble with java?

    I play games on Pogo. Every day it tells me that I need to download Java. It takes a long time to get it to work.

    Java plugins 7u10 or lower are blocked for security. You can download Java v7u11, and see all of:
    https://support.mozilla.org/en-US/questions/944956?page=3

  • Why does Java have so much trouble with deleting files

    So, I've been doing alot more code on the file-level and have been noticing that Java is really terrible at deleting files. This should be rather straightforward, but the delete method can fail in so many ways, it's unbelievable. Even with taking special care to close all streams, it will sometimes just not do it, or even return a "Yes I've deleted it" result and the file is still there! (deleteOnExit() suffers the same affliction)
    This problem is even scuttling the otherwise trusty Ant, which is really annoying. Ever seen this? "BUILD FAILED: Could not delete 'myproject.jar'" So any Ant-driven automated build-and-test process can fail because of this super-avoidable error. (We have to code a pre-build-jar-deletion shell script, which is annoying when jars are added/deleted/renamed for whatever reason.)
    Does anyone know the reason for this? I'm really curious.
    Maybe, in 1.5, they will come out with "File.crushAndDestroyWithMercilessPrejudice()". I'd use it all of the time! :)

    I had the same problem when I was working with JAI. I had about a half million images that I made a viewer for, which would allow our users to do away with microfiche. Project worked great, but the files wouldn't delete off the user box (Win2K). I checked everything and they just would not delete--windows would not acknowlege the resources had been released by Java.
    I finally took a lesson from MS developers and said: "It's not a bug, it's a feature!" I wrote it into the manual that it was a cache feature and would speed-up access to the images, yet delete the old ones (which it did, any images that were not accessed during the session would delete just fine, while any that were accessed would still be there next time for local access rather than hitting the network for them. The cache turned out to be one of the great features of the application.
    On the other hand, I've not had any problems deleting files from Linux.

  • I have so much trouble with the plug in part of the program I want to disable this in Mozilla. I have to go to windows explorer to get around this plug in problem with Mozilla.

    # Question
    I have so much trouble with the plug in part of the program I want to disable this in Mozilla. I have to go to windows explorer to get around this plug in problem with Mozilla

    Depending on the CSS, live view and design view can be totally different.
    Its often best to type in your copy in the divs and then add the CSS to format it.
    Post the css and the set of divs with some content in order to enable people to try work out what is wrong.

  • Why do i have so much other on my phone and how do i get rid of it

    why do i have so much other on my phone and how do i get rid of it

    Other is usually around 1 GB...
    A  ' Large Other ' usually indicates Corrupt Data...
    First Try a Restore from Backup... But... if the Large Other Persists, that is an Indicator of Corrupt Data in the Backup... Then a Restore as New is the way to go...
    Details Here  >  http://support.apple.com/kb/HT1414
    More Info Here...
    maclife.com/how_remove_other_data_your_iphone

  • Why do I have to pay to get help for Itunes?

    First off, why do I have to pay to get help?
    That is absolutely ridiculous when it is someone's JOB to be a "support" for this.
    I've had a reoccuring problem of my music not playing on my IPhone. I fixed it the first time by taking off all the music then re-syncing it and it was all good. This time I am trying to take all of the music off so I can try to do the same thing as before because this is happening yet AGAIN and now my ITunes isn't taking the music off and it is re-syncing it back and it isn't taking the music off in the first place. Why is it doing this? Well I'm basically venting to a community while getting no help from experts. Thank you for nothing Apple.

    Apple provides telephone support for their hardware products at no charge for 90 days after purchase. If you are beyond that period and do not have AppleCare on your device, then you will be charged for the support call. If you don't want to pay, you can either make an appointment at an Apple Store, if you have one in your area, where you will be helped at no charge, or you can post details of the problem here where perhaps we, your fellow users, can assist.
    I'm basically venting to a community while getting no help from experts.
    You're getting no help because you're just venting, and most people here just ignore rants. You haven't posted sufficient details about your issue for anyone to offer much in the way of assistance.
    Posting the same complaint twice does little good, by the way.
    Regards.

  • Why am I having so much trouble installing Flash Player 17?

    Hello,
    I have installed and updated Flash Player since 1999, but never with so much trouble as with the latest version- 17.
    My pc runs Windows 7 64-bit with Internet Explorer 11. I have tried all the troubleshooting steps listed on the Adobe website with no luck.
    I am logged in as administrator, but when I go to a website the permission message pops up at the bottom of the page, as normal after updating,
    "This webpage wants to run the following add-on; ' Adobe Flash Player' from Adobe Systems Incorporated'.
    Whether I click on Allow or click on the dropdown and click on Allow for all websites, does not matter. It will not work and the permission bar stays up.
    Can somebody please help??
    Thanks,
    Dake

    I replied to another instance of this post (Why am I having so much trouble installing the latest version of Flash Player to use in IE?).  Locking this one.

  • I have been having trouble getting my email on my iPad. It started when I brought it to the US on vacation (I live in London and my email provider is Virgin Media). It worked once since I returned, but that is it. I can send emails, but can't get them

    I have been having trouble getting my email on my iPad2.
    It started when I brought it to the US on vacation (I live in London and my email provider is Virgin Media). It worked once since I returned, but that is it.
    I can send emails, but can't get them.
    Any ideas, people?

    Hi Kharels
    Just posted this reply to 2 others with same sort of question:
    I have the same issue as i have my own email address and only want to use.
    There are two ways around this annoying problem. The first is to set up your own domain email account alongside your iCloud one, and when you go to send each email tap on From and you get a choice of emails addresses to reply from... ie your own domain or the iCloud one.  This is tedious though.
    The other is to set up your iCloud email as normal, then create a new one altogether. Choose 'Other' when creating this new account. Then put for the incoming server mail.me.com, along with your user name and password. For the outgoing server put the server you want to use - ie your own domain one. This is therefore a hybrid account and does work.
    Now switch off the email for iCloud (leaving on Calendar, Address Book etc). Switch on the email for your hybrid account (which of course is iCloud incoming as well).
    Providing you have directed your own domain email address to your me.com one, you will find the iPhone should behave itself and you can use the folders etc and these will synch with your Mac ok.
    Hope this work for you - let us know.
    Simon

  • Why am I having so much trouble with my iPad air 2 reading and remembering my fingerprints?

    Why am I having so much trouble with my iPad air 2 reading and remembering my fingerprints? Even if I enter the same finger 5 times, it only works once or twice.

    Try this -> http://m.facebook.com
    which is the mobile optimized page of FaceBook.

  • Why do I have so much storage 'other' on my iPhone 5, ios7?

    why do I have so much storage 'other' on my iPhone 5, ios7?

    Hi:  I had the same issue.  I believe mine was due to the fact that I always installed software updates over wifi.  I believe doing so did not remove the old software from my phone, which then took up space in Other. Here's why I think this.
    Yesterday, I had 6.2 GB of Other (on my 16GB iPhone).  Got the alert that a software update was available, but didn't have enough free space on my phone to update it over wifi.  I plugged my phone into my Mac today and ran the update on iTunes and the Other went down to 2.1 GB.  Note, when I previously updated software over wifi, it took about 3 minutes, today when I updated it by actually plugging into iTunes on my Mac, it took about 15 minutes.  It cleared everything off my phone and reinstalled it. 
    I'm not sure if this is the only reason for the Other storage to be high, but if you update over wifi, it could be.  Note:  if you're not due for an update, you may want to try resetting your phone and doing a restore from iTunes.  Be sure to back up your phone before doing this!
    Hope this helps.

Maybe you are looking for