Importing Tags?

Is there any way to import keywords or tags from Photoshop Elements? I have quite a large number of photos and they have all been assigned at least some basic tags in Photoshop Elements, but I notice that they don't appear under the keywords in Bridge.. Surely there must be some way to do this without having to re-create them?
Thanks for any help.

Thanks Alan - I found it last night. I guess doing this also changes all the modified dates... not sure how I feel about that. The other thing I was concerned about is that trying to do them all at once may crash the computer since it won't like the videos, etc. that are listed in the organizer. I have sort of a love/hate relationship with the organizer. It does a good job, but it's not very reliable I've found.
Maureen

Similar Messages

  • [HELP] using multiple value parameter in c:import tag

    I need to pass a multi-value parameter to a included page. e.g.
    http://myhost/MyContext/dir1/page1.jsp?abc=value1&abc=value2/dir1/page1.jsp includes /dir2/page2.jsp, and would like to pass this multi-value parameter over, but change the name to xyz, some what like
    <c:import url="/dir2/page2.jsp?xyz=value1&xyz=value2"/>The problem is that the number of values is not fix number, so I have to write some logic to iterate thru its parameter values. But the <c:import> tag body allows only simple listed <c:param> tags, it doesn't allow other logic/condition/iteration.
    <!-- gives java.io.IOException: javax.servlet.jsp.JspException: The taglib validator rejected the page: "Illegal child tag in "c_rt:import" tag: "c:forEach" tag at runtime -->
    <c:import url="/dir2/page2.jsp">
    <c:forEach var="xyz" items="${paramValues.abc}">
    <c:param name="xyz" value="${xyz}"/>
    </c:forEach>
    </c:import>{code}
    I also tried <c:url> tag. The good news is that it supports jsp logic in body:
    {code}<c:url var="url" value="/dir2/page2.jsp">
    <c:forEach var="xyz" items="${paramValues.abc}">
    <c:param name="xyz" value="${xyz}"/>
    </c:forEach>
    </c:url>
    <c:out value="${url}"/>{code}but it prefixes the url with the current context:
    {code}/MyContext/dir2/page2.jsp?xyz=value1&xyz=value2{code}
    Now I run into a dead end. It seems the only way out is to use <% %> scriptlet to do my own url composite, which is pretty similar to <c:url> but avoid the context part.
    Any suggestion?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    out.println("<html>");
    out.println("<head>");
    out.println("<script language=\"JavaScript\">");
    out.println("function altSubmit() {");
    out.println("document.MyForm.action = \"Second.html\";");
    out.println("document.MyForm.submit();");
    out.println("}");
    out.println("</script>");
    out.println("</head>");
    out.println("<body>");
    My personal suggestion is to use follow the MVC (Model View Control) pattern where in you can write all your "html" part in a JSP.
    Model -> Bean
    View -> JSP
    Control -> Servlet

  • Issue with JSTL ( c:import ) tags in Weblogic 9.2

    Hi,
    I'm trying to migrate a struts (1.2.9) application from Weblogic 8.1 to Weblogic 9.2. This application has JSPs with JSTL (1.0) tags.
    I have a JSP page that has multiple (around 7) c:import statements. When I launch my application, only the content from the last c:import statement is being displayed and rest of the c:import tags statements is simply ignored by Weblogic.
    I don't find any errors in the logs. When I comment out last c:import statement in this JSP then the content from the above c:import statement is being displayed. Only one (last one) c:import statement's content is being displayed in that whole page.
    This app worked just fine Weblogic 8.1.
    Any resolutions, hints, insights or workarounds on this issue is appreciated.
    Thanks in advance,
    Mani
    Edited by: mayyalas on Aug 10, 2009 6:13 PM

    Hello,
    You should not need to edit the wlp-light-web-lib.war weblogic.xml file. There are many places where other classes in wlp-light-web-lib are dynamically loading classes (using Class.forName()) from "higher-level" shared library modules (such as wlp-framework-full-web-lib), so I am certain that it works in general. There may just be an issue with how your shared library is set up, or how your webapp deployment descriptors are set up.
    So you mention that you have a shared library module containing your implementation of the AnalyticEventHandler; is this a .war file? And in the webapp you are trying to deploy this in, does your weblogic.xml explicitly include your shared library? If so, is your shared library being included before or after the standard WLP shared libraries?
    If you would like, posting your webapp's weblogic.xml may help to find the problem.
    Kevin

  • Getting img tags to work in sub page using jstl core import tag

    Am trying to bring disparate system page reports together under one web app. This means using the jstl core import tag (I dont want to redirect as I want to hide the urls, this web app provides better security than those it calls).
    Use of the import tag works to a degree but any resources (ie. img tags) don't load.
    Have created a much simplified example that demonstrates..
    So heres the jsp...
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <h3>Delivery Performance Report</h3>
    <c:url value="http://localhost/mycontext/subpage.html" var="myUrl"/>
    <c:import url="${myUrl}" />and a simple sub page (note plain html, no jsp, this mimics my project as the other systems are hidden source, non jsp)
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
    <HTML>
    <HEAD>
    <TITLE>sub page</TITLE>
    </HEAD>
    <BODY>
         This is the sub page<br>
         <img src="images/banner_image.jpg" />
    </BODY>
    </HTML>While I dont get any errors what I do get is ..
    Delivery Performance Report
    This is the sub page
    ...but image fails to load.
    If I redirect instead of import it works, but as I said I need to hide the url from the user as security is an issue.
    Any help appreciated, really pulling my hair out with this final stage of something that will make a real difference to us!
    regards,
    G.

    Thanks for the answer but Im afraid thicko here doesnt get it.
    The img src is relative to the sub page, and I have tried it with an absolute address (ie. http://localhost/.....) with the same result.
    If I call the sub page direct (get with browser) the image tag works. Its just if the sub page is imported with the jstl core import tag.
    I've not tried a base tag. The real project always returns pages containing absolute urls... http://ourReportServer/reports?....plenty of params so dont belive relevant, please correct me if Im wrong here though.
    thanks, G.

  • Selectively ignore Problem Tags Dialog  while importing Tagged Text in CS5.5

    Hi
    My script imports tagged text and places it in selected frames. Due to the tag creation process used, I occasionally get a "Ignoring character level attribute termination tag "<cTracking:>" found without the corresponding character level attribute application tag "<cTracking:value>"
    Since it's not a problem I can ignore this specific error -- but I don't want to turn off ALL problem tag error checking because occasionally there are serious errors that I DO want to see.
    Is there a way to tell ID to ignore this specific error?
    Thanks
    Akiva

    UNfortunately the original ascii files uses a <D> code to return to the default settings -- and since that occasionally includes resetting the tracking to 0 I need to include the "<cTracking:>" tag.
    I could obviously fix it by adding a "<cTracking:0>" to all the codes -- but that seems like it could cause more problems.
    I can preprocess the ascii code to eliminate the excess codes -- but that increases processing time for something which happens only occasionally and is non-problematis in practice.
    Akiva

  • Import tags from another catalogue without develop settings

    How do I import tags from another catalogue but not the develop settings of each image?
    Here's whats going on:
    I started with 5000 images on a hard drive. I gave a copy to someone else working on the project.
    I physically moved images into real folders and edited all the shots.
    She left all the images where they originally were and tagged each image.
    I want to combine her tags with the edits that I've done, with the images in their new locations I've made.
    I have a copy of her catalogue file.
    I tried importing her catalogue into mine- which will pull her metadata tags, but only also with pulling her develop settings which resets all my work.
    How can I import ONLY her metadata tags?
    I can't open her catalogue and write the tags into XML sidecars because I've moved the images from where her catalogue says they are.
    I realize we should have done this differently from the beginning, but with that being said- if I could import only her metadata tags then that should work. But Lightroom 4 only gives the options of importing BOTH metadata and develop settings.
    Any ideas?

    One option (backup your catalog first):
    * Import her catalog (apply metadata and develop changes), which adds a "Paste Settings" step to the edit history.
    * Restore previous develop settings using ScrewAutoSync, to roll back the settings by one step, to pre-"Paste Settings" state. - just make sure you *don't* do this to photos that weren't changed by the catalog import. One way to do that is to apply a no-op (do nothing) preset to all photos before importing the catalog (that way if you inadvertently roll 'em back one, they'll be the same as they were). You must create a no-op preset by hand, or use this:
    http://www.robcole.com/LrForumSupport/Clear Edit History.lrtemplate
    (hint: context-click & select "save link as")
    There are probably other options.
    Rob

  • Include directive with import tags how to

    I mostly the same classes throughout many of my jsp pages. If I use the include directive to import the classes - it doesn't work. What is the proper directive / way / tag to include those tags? Sorry if I am not wording this properly. Here's an example:
    most of my classes use the following classes so I use the @import tag:
    <%@page import="web.urls.DisplayUrls"%>
    <%@page import = "web.beanObjects.display.DisplayPage"%>
    <%@page import="web.db.admin.TypesDbHandler"%>
    <%@page import="web.db.admin.CategoryDbHandler"%>
    I would like to put all of those in one file and only have one line of code so I don't have to cut & paste into every jsp page whenever there's a change:
    <%@include file="/include/imports.jsp"%>
    Unfortunately this isn't working, it's not recognizing the classes...
    Thanks!

    hi,
    since both the files are located in the same folder, why don't you try the following:
    <%@ include file="hello.jsp" %>
    hope this helps

  • Importing tags from Photoshop Album to Photoshop Elements 5

    I have had Photoshop Album 2.0.2 for several years and it currently holds the information of 13000+ tagged items. I have a detailed tagging system set up which I don't want to lose.  I also have Photoshop Elements 5 and having just discovered that Photoshop Album is now discontinued I wanted to transfer my existing information into Elements.
    I have spent some time trying varies options but cannot find the solution I want.
    If I select a photo from file to import into Elements then the tagging information does not come with it.
    If I export an image from Album to desktop and then import it into Elements no tags come with it.
    If I email a photo from Album to myself then import that image it does come with the tags into Elements.
    Obviously I can't email all 13000 images to myself to import them but can someone suggest how I can transfer this data - obviously the photos themselves don't need to move as both programmes only keep a link to the original location to the photos.
    I'm not interested in using the online storage system but wonder if one solution might be to upload all my phots to that temporarily then reimport them to Elements.
    Additionally is it possible to import my current tag structure  rather than have imported tags all appearing under a 'imported tags' tag.
    Any help grately appreciated.
    Thanks
    Gill

    Thank you so much it worked - the only thing that didn't transfer was the folder pics I'd chosen for the tags so that didn't take long to redo - many thanks - I'd never have found that. It would have been so much more obvious if it showed 'open' or 'select catalogue' rather than just the word 'catalogue' with no other options visible from the dropdown menu.
    Happy Bunny here!

  • JSTL c:import tag question

    HI
    I have a question about how the <c:param> tag interacts with <c:import> tag.
    <c:import> tag can be used to import from relative URL's like <c:import url="target.jsp" /> , from absolute urls like <c:import url="http://www.espn.com" /> or from another web application on the same server by specifying the context attribute like <c:import context="/myotherwebapp" url="some.jsp" />
    we can use <c:param> tag as an optional child tag for <c:import> to send request parameter to the page it is loading. For absolute url sending request parameters makes sense beacuse the import will be treated as new request and original request object will not be passed . but for relative urls and including the page in different web application on same web server does the jsp container treat it as part of same original request and does the target page have access to the original request object ? if this is true then how can you set additional request parameters on the request object? because once the request object is craeted by jsp container you can only add/remove attributes on it but you can never add parameters on it.
    Now if the jsp container always creates new request object for each of the above included pages then these pages will not have access to original request parameters entered by the user. Is that not a limitation.
    I am a little bit confused . hopefully somebody can help me out.
    thanks

    the c:param tag are added to the url and are not set as request parameter.
    <c:import url="target.jsp">
       <c:param var="test" value="val">
    </c:import>then is will do an import like
    <c:import url="target.jsp?test=val"/>

  • How to quick import Tags from a xml file?

    Good morning/afternoon/night everyone.
       I have this client that want me to import something like 1000 tags from a xml file in CQ5.5. I know I can do it programatically and in dev.day.com I have already found some instructions, but, there is some easier way to do this? Or, if the only way is developing a bundle to run in a workflow (and then the client can import tags from xml files anytime he want to), do you guys have some advice or guidelines?
    Thanks!

    I would expect it should be possible using vault. If you export an existing namespace from cq using vault (checkout/update) you can see what format it should be in. Then you should convert your xml to match that format (perhaps using XSLT) and use vault in the other direction (commit).
    We are using vault all the time behind the scenes using a vault plugin for maven. This way we can export content from one developer's cq instance, put it in SVN and have another developer import it in his cq instance, all using maven (and vault). This is especially usefull for general content structures and for tags.

  • Can I use https in c:import tag

    hi All,
    can anybody help me? I have a problem using c:import tag. When I write smth like this:
    <textarea style="FONT-SIZE: 8pt><c:import url="http://java.sun.com/developer/technicalArticles/javaserverpages/faster/" /></textarea>
    it's going fine. But when I want to use https an error acquires.
    Can anyone tell me which is the reason??
    Thanks, venera

    mandar74 wrote:
    The error that I get is similar to what is already posted on the current thread so it made more sense to avoid typing the whole thing again and thus avoid spamming the forum with similar items. The original topicstarter didn't post any error.
    Forums are meant to share information without been labelled/assigned to someone 'specific' so there's no harm in requesting for a solution when there was none posted for the topic in question.Most users would respond on topicstarter only and not on you. Your specific questions will likely get ignored. Start your own topic.

  • Will photoshop elements 12 import tags from photoshop elements 5

    will photoshop elements 12 import tags from photoshop elements 5?

    See:
    http://helpx.adobe.com/photoshop-elements/kb/backup-restore-move-catalog-photoshop.html
    I suppose you are using the organizer : you'll be able to recover your PSE5 catalogs either by a catalog conversion on the same computer or by the backup / restore process.

  • Webservice with import tag

    Hi All,
    I found that Flash web services doesn't work with import
    tags(
    http://www.adobe.com/devnet/flash/articles/flmxpro_webservices_03.html
    ).Is it also true for Flex .Becaue When i try to access a web
    service from flex I keep getting Error# 2032 (http Error). Does
    flex support all types of Complex data types whle accessing web
    service?
    Please help me.

    Hi All,
    I found that Flash web services doesn't work with import
    tags(
    http://www.adobe.com/devnet/flash/articles/flmxpro_webservices_03.html
    ).Is it also true for Flex .Becaue When i try to access a web
    service from flex I keep getting Error# 2032 (http Error). Does
    flex support all types of Complex data types whle accessing web
    service?
    Please help me.

  • Importing Tags from Vista

    I'm importing picture files (mostly Canon CR2 files, but some JPEGs) into Elements 7 under Windows Vista. I have a comprehensive set of Vista file tags which I was expecting PSE to import. However, PSE only seems to import tags associated with JPEGs and seems to fail to see tags associated with CR2's. Is this right?
    How can I import the tags I've already built rather than re-build in PSE from scratch?
    If I subsequently add a file tag in Vista, to an existing (picture file) which is already in the PSE catalog, how do I 'bring' this new tag into PSE?
    THanks

    I'm using Windows Photo Gallery, and Canon's RAW codec 1.5. Is the codec from the Microsoft Link you posted written by Microsoft, or is it a posting of one of Canon's?
    The links on that page are to the codec written by the camera manufacturers.
    I just updated my Canon codec to 1.5, and it appears that Windows Live Photo Gallery still isn't able to use it to write metadata to CR2 files. This problem was posted by the WLPG developers on a Microsoft blog after version 1.3 came out, and it apparently hasn't been fixed.   User reviews of the codec on Canon's site suggests that many some savvy users are encountering problems with it.
    This suggests that you may be better off using another program, such as PSE, to tag your raw photos (though PSE itself has numerous problems with metadata in general, and raw metadata in particular).  As Paige indicated, though, you need to choose one program and use it exclusively.  Both PSE and WLPG use databases internally to store the "truth" about the metadata, and the programs use different (imperfect) policies for writing back that information from the database into photos' metadata.
    By the way, if you continue with Windows Photo Gallery, you might consider updating to Windows Live Photo Gallery, which supersedes the built-in Windows Photo Gallery (classic Microsoft naming confusion).

  • Import Tags from Serif Album Plus

    How do I import tags from another programme ie. Serif Album Plus?

    Hi Rave,
    Sorry, new to this.I have a trial download of Elements 11, on a pc running Win 7 Pro 64bit  Don't like the layout of elements 11 as much as my old Photoshop Album 2 most of the writing on screen is too small for me to read and I can find no way of altering this. In Serif, I have several main headings, some of which are sub-divided into other tagged catagories. I hoped to transfer all this info to save having to re tag all my collection.

  • c:import tag unable to load xml file

    I'm using weblogic 8.1 sp5. This is how my jsp looks like:
              <%@ taglib uri="/WEB-INF/x" prefix="x" %>
              <%@ taglib uri="/WEB-INF/c" prefix="c" %>
              <c:import url="/WEB-INF/ADVLSOG6Request.xml" var="file" />
              I get an error message in the console window that says, "included resources or file "/lwise/WEB-INF/ADVLSOG6Request.xml" not found from requested resources /lwise/pages/ADVRequest.jsp"
              The xml file is under WEB-INF directory. I've even tried putting this file in the same directory as jsp i.e. /lwise/pages/ and changes the c:import tag to <c:import url="ADVLSOG6Request.xml" var="file" /> so that it can locate it but to no avail. I've tried deploying both as war module and exploded directory but still gives me the same error. I'm using JBuilder Enterprise 12 as my IDE - jsp 1.2. Any idea how can I load this class using this tag? or why it cannot see it? Thanks.

    LightWorker wrote:
    I haven't tried to update the firm ware yet, but this is probably my next move.
    The paper says
    “Unable to set attribute” error message will be displayed. Run the CameraValidator.exe utility with the “/ATTRIBUTES” flag to detect which attributes are generating errors and contact your camera vendor for a new and updated version of the camera firmware. 
     I've run the CameraValidator.exe but it couldn't find the camera or the attributes.
    Also check the firmware version

Maybe you are looking for