Unable to edit metadata for some files, Bridge CS6

I am editing metadata for .wav files, and somehow a few of them have become locked for editing. I have checked the properties for these files and still have full permissions for all users.
As you can see in the screen capture below, the pencil icons you click to edit the metadata are gone and an error message comes up. Thanks for any help you can give!

Wow, I just answered my own question...
After an hour trying to figure this out, I decided to just go ahead and edit the images, but "Edit in Camera Raw" was not an option.  So, I went to Tools \ Cache \ Purge Cache for Folder "xxx"
Problem solved.

Similar Messages

  • Script to convert metadata to xml file - Bridge CS6/InDesign CS6

    I need a script that will convert metadata in Bridge to an xml file I can import into InDesign so that when I export long documents the alt text for photos is already included with the images.  
    Two problems -
    1) I need the scripting for dummies version - from step 1 to end.  I have zero experience with using scripts, as in - did not know they existed until a few days ago. 
    2) If the script needs adapted - see #1; there is very little hope that I will have any idea of how to do that without assistance. 
    I will be grateful for any assistance!!  I do want to learn how to do this, if I can. 

    I need a script that will convert metadata in Bridge to an xml file I can import into InDesign so that when I export long documents the alt text for photos is already included with the images.  
    Two problems -
    1) I need the scripting for dummies version - from step 1 to end.  I have zero experience with using scripts, as in - did not know they existed until a few days ago. 
    2) If the script needs adapted - see #1; there is very little hope that I will have any idea of how to do that without assistance. 
    I will be grateful for any assistance!!  I do want to learn how to do this, if I can. 

  • Editing Metadata in PSB files

    My production artist brought this to my attention: He is unable to
    add metadata to PSB file formats through Bridge (we are currently using CS4).
    Has anyone else experience this issue? Is XMP for this format not supported in CS4?
    Any ideas on how to work around this? I haven't asked him to see if it's possible to just open the PSB and add the data via the File Info. But this is a bit cumbersome since the PSB file would need to be open in PS.
    Thanks,
    Lisa

    Actually you can add metadata to a psb file (that is the editable fields in
    IPTC core in the metadata tab), You can also view the other metadata.
    First of all the file must not be locked (but obvious you have checked that
    already)
    But probably the file is to large to show in Bridge as a preview or a
    thumbnail. Find the file size of the largest psb file you are using and in
    Bridge Preferences go to the thumbnail section. Inhere change the 'process
    no files large then' field a little above the largest file size.
    Now Bridge needs to cache the file first. This takes time (the large the
    file the longer) and you might even need to use the right mouse button to
    choose purge cache for selection.
    When the thumbnail in the content panel is rebuild you should be able to add
    metadata. (I just checked it again on a 4 GB sized psb file and that still
    worked )
    My production artist brought this to my attention: He is unable to
    add metadata to PSB file formats through Bridge (we are currently using CS4).

  • Oracle.adf.controller.activity.ActivityLogicException: ADFC-02013: Unable to get metadata for activity

    Hello,
    I am new to ADF, I am trying to learn how to navigate from one page to another, the code that I have is simple, but it is not working, I specified the control flow rules in the adfc-config.xml and I even tried to specify the navigation rules in the faces-config.xml file, but it doesn't matter if I do it in one configuration file or another I get the same error.  This is my first time working with ADF, I don't have formal training, just some video tutorial that I have seen on internet.  I have previous experience with JSF, so I feel more comfortable writing the code for my program than using all the graphical tools (at least at this moment)
    Any help to solve this problem will be highly appreciated.
    This is my page1.jsf  code:
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE html>
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich" xmlns:h="http://java.sun.com/jsf/html">
        <af:document title="page1.jsf" id="d1" binding="#{backingBeanScope.backing_page1.d1}">
            <af:form id="f1" binding="#{backingBeanScope.backing_page1.f1}"></af:form>
        </af:document>  
        <h:head>
            <title>First JSF Example</title>
        </h:head>   
        <h:body>
            <h3>ADF Hello World Example</h3>
            <h:form>
                What's your name?
                <h:inputText value="#{backingBeanScope.backing_page1.message}"></h:inputText>
                <h:commandButton value="Welcome Me" action="#{backingBeanScope.backing_page1.processPage1}"></h:commandButton>
            </h:form>
        </h:body>   
    </f:view>
    This is my backing bean for page1:
    package view.backing;
    import oracle.adf.view.rich.component.rich.RichDocument;
    import oracle.adf.view.rich.component.rich.RichForm;
    public class Page1 {
        private RichForm f1;
        private RichDocument d1;
        private String message;
        public void setF1(RichForm f1) { this.f1 = f1; }   
        public RichForm getF1() {return f1;}   
         public void setD1(RichDocument d1) {this.d1 = d1;}
        public RichDocument getD1() {return d1;}
        public void setMessage(String msg) { this.message= msg;  }
        public String getMessage() { return this.message; }
        public String processPage1()
            System.out.println("++++++++++++++++++++++++++++++++++++++++++++++move to next page");
            return "success";   
    This is my adfc-config.xml file:
    <?xml version="1.0" encoding="UTF-8" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <control-flow-rule id="__5">
        <from-activity-id>page1.jsf</from-activity-id>
        <control-flow-case id="__6">
          <from-action>#{backingBeanScope.backing_page1.processPage1}</from-action>
          <from-outcome>success</from-outcome>
          <to-activity-id>page2.jsf</to-activity-id>
        </control-flow-case>
      </control-flow-rule>
      <managed-bean id="__2">
        <managed-bean-name>backing_page1</managed-bean-name>
        <managed-bean-class>view.backing.Page1</managed-bean-class>
        <managed-bean-scope>backingBean</managed-bean-scope>
        <!--oracle-jdev-comment:managed-bean-jsp-link:1page1.jsf-->
      </managed-bean>
      <managed-bean id="__1">
        <managed-bean-name>backing_page2</managed-bean-name>
        <managed-bean-class>view.backing.Page2</managed-bean-class>
        <managed-bean-scope>backingBean</managed-bean-scope>
        <!--oracle-jdev-comment:managed-bean-jsp-link:1page2.jsf-->
      </managed-bean>
    </adfc-config>
    Finally this is my page2.jsf
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE html>
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"  xmlns:h="http://java.sun.com/jsf/html">
        <af:document title="page2.jsf" id="d1" binding="#{backingBeanScope.backing_page2.d1}">
            <af:form id="f1" binding="#{backingBeanScope.backing_page2.f1}"></af:form>
        </af:document>
        <!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_page2-->
        <h:body>
            <h3>ADF Hello World Example PAGE2</h3>  
        </h:body>     
    </f:view>
    This is the error that I get when I push the button on page1 and I try to navigate to page 2:
    Target URL -- http://127.0.0.1:7101/EcatsADF12c-ViewController-context-root/faces/page1.jsf
    <org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl> <ViewHandlerImpl> <_checkTimestamp> <TIMESTAMP_CHECKING_ENABLED_SHOULDNOT_IN_PRODUCTION>
    <Apr 22, 2015 4:34:43 PM CDT> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,015 during the configured idle timeout of 5 seconds.>
    <Apr 22, 2015 4:34:43 PM CDT> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,014 during the configured idle timeout of 5 seconds.>
    <Apr 22, 2015 4:34:43 PM CDT> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,013 during the configured idle timeout of 5 seconds.>
    <Apr 22, 2015 4:34:43 PM CDT> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,017 during the configured idle timeout of 5 seconds.>
    <Apr 22, 2015 4:34:43 PM CDT> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,016 during the configured idle timeout of 5 seconds.>
    ++++++++++++++++++++++++++++++++++++++++++++++move to next page
    <oracle.dfw.impl.incident.DiagnosticsDataExtractorImpl> <DiagnosticsDataExtractorImpl> <createADRIncident> <incident 11 created with problem key "ADFC-02013 [ADFc]">
    <oracle.dfw.impl.incident.DiagnosticsDataExtractorImpl> <DiagnosticsDataExtractorImpl> <createADRIncident> <incident 12 created with problem key "ADFC-02013 [ADFc]">
    <oracle.adf.view> <RichExceptionHandler> <_logUnhandledException> <ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase INVOKE_APPLICATION 5>
    oracle.adf.controller.activity.ActivityLogicException: ADFC-02013: Unable to get metadata for activity 'page2.jsf'.
      at oracle.adfinternal.controller.util.Utils.createAndLogActivityLogicException(Utils.java:234)
      at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:1133)
      at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:979)
      at oracle.adfinternal.controller.engine.ControlFlowEngine.routeFromActivity(ControlFlowEngine.java:551)
      at oracle.adfinternal.controller.engine.ControlFlowEngine.performControlFlow(ControlFlowEngine.java:162)
      at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleAdfcNavigation(NavigationHandlerImpl.java:119)
      at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:88)
      at org.apache.myfaces.trinidadinternal.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:50)
      at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:130)
      at javax.faces.component.UICommand.broadcast(UICommand.java:315)
      at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)
      at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1259)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:1074)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:402)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:225)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:346)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:105)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:502)
      at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:502)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:327)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:229)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:220)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3436)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3402)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
      at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2285)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2201)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1572)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:255)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:311)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:263)

    User, tell us your jdev version, please!
    What is your goal?
    What you have find had nothing to do with ADF. If you ent to learn adf then I recommend to work through find of the tutorials available on the jdev home page.
    If adf is not your goal, you might want to use Trinidad and ask your question in their forum.
    You might not like the declarative approach adf uses, but if you want to learn how to use adf, you have to understand how ADF works. Most can be done using java, but one you understand the framework you see the advantage.
    Timo

  • This is actually in response to varjak paw's reply to my question, but I am unable to directly reply for some reason hence the separate post, but so it's open to anyone to answer

    This is actually in response to varjak paw's reply to my question (thank you!), but I am unable to directly reply for some reason hence the separate post, but so it's open to anyone to answer. Anyway, my original question was
    Hello, I am from a Korean institution. We are looking into enrolling in iTunes U, but are aware that our country, South Korea, is yet enrolled in the iTunes U. Can our institution still enroll and if so, what is the procedure? Or do we have to wait for our country to be enrolled in iTunes U first? We're surprised South Korea isn't listed yet among the 26 countries so far, considering how it's one of the more developed countries and also highly advanced in the technology field. Thank you!
    Varjak paw's answer:
    Sorry, but iTunes U is not available to institutions in South Korea at this time. It is only available to institutions in those countries on the list. Why Apple has not yet been able to provide that service in your country or when (or indeed if) they ever will is something none of us here can say.
    Regards.
    My follow-up question:
    So then, is if there's a general standard procedure country governments have to follow in order to have the iTunes U service provided (ex. a site/online application on Apple). So in other words, if the Korean government were interested in enrolling in iTunes U, what would they have to do/what channel(s) would they have to go through? We are a government-affiliated institution so if we're provided the necessary steps, we may be able to forward the procedure along to the right government body that would be responsible for setting this up.
    Any information would be appreciated, thank you!

    As I said in your original post, iTunes U is not available to any institution, government or otherwise, in South Korea. If or when Apple will extend iTunes U to your country is something none of us here can say, and Apple will not until such time as they're ready to make an announcement. What Apple's criteria and requirements are for being able to open iTunes U in a given country is unknown; there is no "procedure" that any of us here can state or direct you to that you could initiate. It's totally up to Apple, and if they are working on this, I'm sure they know who in the SK government they would need to work with.
    Sorry, but you will just have to wait and hope that something develops in the future.
    Regards.

  • I can no longer edit information for streaming files in Get Info.

    I can no longer edit information for streaming files in Get Info.

    Similar problem here. My Ical refuses to edit or delete events. Viewing is possible, though sometimes the whole screen turns grey. Adding new events from mail is still possible. The task-pane completely disappeared. My local apple technic-centre messed about with disk utility for a bit and than told me to reinstall leopard. I could of course do that, but it seems to me that reinstalling Leopard just to fix iCal events is a bit invasive.
    I tried also tried removing everything, installing a new copy of iCal from the leopard-cd, software updates, all to no avail.
    At the moment I'm open to all suggestions that do not include a complete leopard reinstall.

  • How to hide edit link for  some rows in report? (according to value of col)

    Helo,
    How to hide edit link for some rows in report? (according to value of column)
    regards
    siyavuş

    Hi siyavuş
    You can do this by taking the edit link off the report and putting it into your report SQL.
    Use something like Select CASE WHEN (condition)  THEN
    'Put your edit link in here as an html Anchor like<a href="(target)">Edit</a>'
    ELSE
    tt.value
    END edit_link
    FROM test_table tthope it helps,
    Gus..
    You can reward this reply (and those of other helpers) by marking it as either Helpful or Correct.
    This allows forum users to quickly find the correct answer.
    ;-)

  • ORA-27078: unable to determine limit for open files

    I installed Oracle XE on my Gengoooraclexe@ghost ~ $ lsnrctl
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 25-JUN-2011 16:51:29
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Welcome to LSNRCTL, type "help" for information.
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    Start Date 25-JUN-2011 10:03:30
    Uptime 0 days 6 hr. 48 min. 1 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/admin/listener.ora
    Listener Log File /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC_FOR_XE)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ghost.emacs.com)(PORT=1521)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    LSNRCTL>
    Poraclexe@ghost ~ $ sqlplus "/as sysdba"
    SQL*Plus: Release 10.2.0.1.0 - Production on Sat Jun 25 07:19:58 2011
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to an idle instance.
    SQL> show user
    USER is "SYS"
    SQL> startup
    ORA-27078: unable to determine limit for open files
    Linux Error: 1: Operation not permitted
    Additional information: 1
    Additional information: 1
    Additional information: -2958340
    SQL> startup force
    ORA-27078: unable to determine limit for open files
    Linux Error: 1: Operation not permitted
    Additional information: 1
    Additional information: 1
    Additional information: -3378372
    SQL> startup
    ORA-03113: end-of-file on communication channel
    SQL> exit
    Disconnected

    unable to determine limit for open filessee http://download.oracle.com/docs/cd/B25329_01/doc/install.102/b25144/toc.htm#BABJFAIA
    Is that a debian flavored distro?

  • Return The remote server returned an error: (403) Forbidden error for some file types

    hi
    am using below code to get the byte array 
    byte[] myDataBuffer = client.DownloadData((new Uri(sourceUrl)));
    for source of type .txt/.jpg no problem with accessing.but the file type with .master/.wsp/.cs
    it is returning "The remote server returned an error: (403) Forbidden error for some file types" Error.how can i get rid of this.please help me
    Thanks in Advance

    Hi,
    It seems there is something wrong with your code, from your code the account and key are the same, because their appsetting name are the same.
    string account = ConfigurationManager.AppSettings["StorageAccountName"];
    //string account = CloudConfigurationManager.GetSetting("StorageAccountName");
    //string key = CloudConfigurationManager.GetSetting("StorageAccountAccessKey");
    string key = ConfigurationManager.AppSettings["StorageAccountName"];
    string connectionString = String.Format("DefaultEndpointsProtocol=https;AccountName={0};AccountKey={1}", account, key);
    return CloudStorageAccount.Parse(connectionString);
    If you use CloudConfigurationManager.GetSetting, please consider set azure project as the startup project, if not, this value will be null, this resulted in solution being started as a web project that didn't run inside the Azure emulator. Since CloudConfigurationManager.GetSetting
    tries to get setting by contacting Azure (or Azure emulator in this case), and it is not running, it returns null.
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Read metadata for a file without Photoshop or Bridge

    Hi
    Suppose I have a file in desktop called "test.jpg". So I create this variable:
    var myFile = new File ("~/Desktop/test.jpg");
    This file has some keywords and instructions I need to read. And if the reading process finds the correct keyword, then it copies the file to the appropriated folder. Well, in resume, I could do everything directlly using #target estoolkit. I´d not like to involve (opening) Photoshop or Bridge.
    Is it possible to read the metadata of a file without targetting Bridge or Photoshop? Reading the reference I did not find any method or property for this, expect for the metadata library. BUT
    If I try to load the metadata library using:
    if (ExternalObject.AdobeXMPScript == undefined) {
            ExternalObject.AdobeXMPScript = new ExternalObject('lib:AdobeXMPScript');
    then it sure will returns an error file or folder does not exists..
    Any idea how I could proceed to load this library and read the metadata of a file directlly?
    Thank you very much
    Best Regards
    Gustavo.

    Hi friends
    Thank you very much for your inputs. Muppet....what do you mean when you write The modified date gets bumped and can be a PITA? What means "PITA"?
    So, if it´s impossible to invoke [directly] the default library without targetting Bridge or Photoshop...I´ll simplify the things and use Bridge to house the script. No problem.
    So, look at what I´m doing:
    #target bridge
    if (ExternalObject.AdobeXMPScript == undefined) {
            ExternalObject.AdobeXMPScript = new ExternalObject('lib:AdobeXMPScript');
    var test = new File ("~/Desktop/Test.jpg");
    var xmp = test.metadata;
    alert(xmp);
    ...But, the alert in Adobe Bridge is returning nothing (""). And I know this image exists and it has metadata.
    I remember to use metadata for reading the currently selected image in Content panel of Bridge (and it worked), but never tried direrctly declaring a file and reading this way.
    Am I missing anything obvious?
    Thank you very much
    Gustavo.
    Message was edited by: Gustavo Del Vechio

  • Editing SharePoint metadata for Visio files

    When I am editing Visio files metadata in SharePoint 2007, it opens a web dialog page to enter the metadata for the SharePoint library, but, when a column field is type: choice-drop down menu. It doesn't take current metadata for those fields, so, the current
    metadata has to be chosen again. Is there any technical document that explains this?
    It also takes too much time to open Visio templates in SharePoint, it doesn't happen with Visio standard files, the solution was to uncheck automatically detect settings, but is there any other solution?
    I am using Windows 7, Office 2010, Visio 2010 and Internet Explorer v8.

    Hi Javi, 
    thank for the reply, 
    after some discussion, trial and research, seems there is a process that is missed.
    as i know, when we check out the document the metadata itself cannot be edited. so then while we already saved the metadata, as by design the web file properties will be out and the metadata needs to be re-input again, as they will not be passed on check
    in process.
    so, this behavior is most likely by design, if you need to customize this then i think you need to open a ticket to us.
    "By default you cannot edit MetaData in case the document is checked-out - which is by design and acceptable. But if you open up a checked-out document from a WSS doclib and edit it in Word and click File > Save As - in order to save the document back
    into WSS - you are prompted for typing in MetaData (Web File Properties). In case you change or fill out some of them and in order to see them reflected on the WSS page you have to check-in the document again - which you will be ask for to do while closing
    the office application btw.
    If you keep the document checked-out the metadata are not reflected on the WSS page and are hidden (stored somewhere...) to the user. Users are confused because they cannot see the Metadata they typed in until they check-in the document. This wasn´t necassary
    with SPS2001 where we could see the changes we made to metadata immediately on the dashboard. And as Joerg also mentioned bad user experience - we create unnecessary versions as we have to check-in the document which creates an additional version.
    Solution here would be: either to reflect the changed MetaData immediately without the need to check-in the document or to avoid the Web File Properties Dialog box while performing a Save As of a checked-out document. "
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Bridge won't save metadata for .mov files

    Hi.
    I could be trying to do something that Bridge can't do (though I have read that it should). I am trying to add metadata to .mov files. Bridge allows me to enter the text both under 'File info' and in the Metadada IPTC Core fields, however when I 'apply' or click OK they don't save.
    Well, in the IPTC Core when I click 'apply' they are there until I select another file then go back and they aren't.
    I am using Bridge CS5 on a PC with XP.
    Thanks

    Thanks Curt Y. Under 'run as' there was two options both of which were noted as administrator - though I could only use one as we don't have the password for the other. I'm not using an external drive.
    The strange thing is that there is no problem applying the metadata to images, just mov files.

  • Unable to edit the MobileXI3BB.jad file for pre-configuration settings

    According the Note:1542478 - How to pre-configure connection settings for BusinessObjects XI 3.1 Mobile clients?
    We are trying to edit the MobileXI3BB.jad file to avoid the Config seeting from client side.But wonder we are not able to see the below details in our MobileXI3BB.jad:
    BOBJ_MOBILE_AUTH_SERVER: <mobile server>
    BOBJ_MOBILE_AUTH_PORT: <Port of VAS Service, for example, 11011>
    BOBJ_MOBILE_CMS: <cms address>
    BOBJ_MOBILE_AUTH_METHOD: <authentication type>
    Can any one help us how to solve this?
    Edited by: Srikencha on Jun 3, 2011 8:58 AM

    Hi,
    you won't see this code,you need to add this code to the MobileXI3BB.jad file
    BOBJ_MOBILE_AUTH_SERVER:<mobile server>
    BOBJ_MOBILE_AUTH_PORT:<Port of VAS Service, for example, 11011>
    BOBJ_MOBILE_CMS:<cms address, for example CMSCOLPAL:6400>
    BOBJ_MOBILE_AUTH_METHOD:<authentication type> where <authentication type> could be any one of these values based on your requirements: secEnterprise, secWinAD, secLDAP, secSAPR3.

  • File Type in Metabrowser incorrect for some files

    Hi all
    I've noticed in the Metadata Browser that the File Type for some of my images is incorrect.
    I've converted all of my RAW images (Canon .CR2) into Digital Negative (DNG) on importing. But the metadata browser is showing, for instance, Digital Negative (DNG) 5664 and Raw 590.
    If you browse through the files listed as Raw, the file names are all showing them with .DNG extensions, as are the underlying files when you look at in the operating system.
    Has anyone else seen this issue? Does anyone know how it occurred? Does anyone know how to resolve (I've tried the Library, Convert Photo to DNG but this doesn't do anything - nor does forcing Read Metadata from File).
    I have noticed that a lot of the files that are misclassified, but certainly not all, have the phantom XMP file associated with them as well (see http://www.adobeforums.com/cgi-bin/webx/.3bc45f6a/ )
    Thanks
    Greg

    This appears to be a bug in LR1.1. I also convert CR2 files to DNG upon import but LR then thinks they are RAW when viewed in the Metadata Browser even though they are in fact DNG. If I convert CR2 files to DNG after they are imported, they are correctly listed as DNG. (As you discovered attempting to convert the misclassified DNGs to DNG does not help.) Also the command Update DNG Previews and Metadata does not light up for misclassified DNGs but rather stays grayed out. I don't particularly like importing the CR2s then converting to DNG after import so I am simply waiting for Adobe to fix this issue. :)
    I don't have any phantom XMP files, however. Don't know how that happens.

  • Edit metadata for pdf documents offline sharepoint

    How editing of metadata for non-MS office (example PDF) documents will be addressed in an SharePoint offline scenario?

    MetaClean is a graphical tool for managing the Metadata from Microsoft Office, OpenOffice and PDF files to Windows, Linux, Unix and Mac platforms.
    MetaClean is specially designed to efficiently support and manage very large files and to batch process many files at the same time.
    Supports versions of Microsoft Office 97, 2003, 2007, 2010 and 2013.
    Download URL:
    http://www.adarsus.com/en/metaclean.html

Maybe you are looking for