Custom command for custom XMP metadata

Hi
I'm trying to create a custom command for setting and getting custom XMP metadata using InDesign CS3 SDK with Xcode.
I think I got the step 1) to 3) ok. But not so sure about step 4).
Please take a look and tell me if I have got anything wrong.
1) Create 2 classes and 1 interface
MyCustomMetadata
MyCustomMetadataSetCmd
IMyCustomMetadata
2) Define class definitions in the resource file
/** Boss class for kMyCustomMetadataBoss */
Class
kMyCustomMetadataBoss,
kInvalidClass,
IID_IMYCUSTOMMETADATA, kMyCustomMetadataImpl,
/** Boss class for kMyCustomMetadataSetCmdBoss */
Class
kMyCustomMetadataSetCmdBoss,
kInvalidClass,
IID_ICOMMAND, kIQAdTicketMetaDataSetCmdImpl,
IID_IMYCUSTOMMETADATA, kMyCustomMetadataImpl,
3) Define functions for setting and getting values in MyCustomMetadata
GetMyTitle()
SetMyTitle()
Within these functions, use IMetadataAccess interface to set/get values.
4) Create Do() function in MyCustomMetadataSetCmd
??? I'm not sure what I'm supposed to do here ???
Any help would be really appreciated.
Thanks,
JP

m41miller42 wrote:
I am attempting to create a custom RSS file (.mrss) that references XMP metadata from Premiere.
I was basing the move on this statement. This was posted in the Adobe Connect forums.

Similar Messages

  • Custom iterator for custom list.

    I'm trying to write a custom iterator for custom linked list. What I don't understand is, whether the iterator should be in the link(node) inner-class or in the linked-list outer-class.
    I seem to be getting errors in the outer-class, but in the inner-class it compiles fine. Whether or not it works is another story.
    The code below is without errors in eclipse, however it doesn't make much sense to me to have the next() and hasNext() methods in the Node when the Iterator needs to iterate the list.
    import java.util.*;
    public class OctoList<T> extends AbstractCollection<T> implements Iterable<T>
        // Inner Class
        private class Octo<E>
            // Octo will be a Node with 8 elements not including size, and links.
            public Octo<T> next()
              if (!hasNext())
                throw new NoSuchElementException();
              current = current.next();
              return current;
            public boolean hasNext()
              return (current.next() != null);
        // outer class
        private Octo<T> head;
        private Octo<T> tail;
        private Octo<T> current = head;
        private final int ARRAY_SIZE = 8;
        @Override
        public Iterator<T> iterator()
            return null;
        @Override
        public int size()
            return 0;
        @Override
        public boolean isEmpty()
            return size() == 0;
    }

    Gcampton wrote:
    I'm trying to write a custom iterator for custom linked list. What I don't understand is, whether the iterator should be in the link(node) inner-class or in the linked-list outer-class.In the list class. After all, you're iterating a list, not a node.
    I seem to be getting errors in the outer-class, but in the inner-class it compiles fine. Whether or not it works is another story.Then you'll have to fix those errors so it both compiles and works as intended.
    You can create the iterator as an inner class in the list.

  • Custom RSS file from XMP metadata

    I am attempting to create a custom RSS file (.mrss) that references XMP metadata from Premiere.  The CDN that we use references that RSS file in order to publish all of our uploaded assets correctly, and if I could automate that process it would save me a lot of time.  Any ideas?

    m41miller42 wrote:
    I am attempting to create a custom RSS file (.mrss) that references XMP metadata from Premiere.
    I was basing the move on this statement. This was posted in the Adobe Connect forums.

  • Custom Command for Swap Symbol?

    Hey Everyone,
    I have a question about swap symbol. I work at an animation company, and the project we're currently working on requires that we do a lot of symbol swapping for new mouth shapes, body shapes etc. Usually, a quick solution to this would be to make a mouth symbol, for example, and put all the mouths inside one symbol, then use a custom command, firstframe_next/previous. It allows you to quickly scroll through the different frames inside a symbol.On this show, however, we need to do swapping and I lose a lot of time doing so.
    I'm wondering, since all the symbols are very well organized, is there a custom command similar to firstframe_next/previous, except for swapping between symbols? That would make work so much faster for me. Any help is greatly appreciated.

    First of all, you will probably save some compilation time by using an "inteligent" script such as latexmk. You should look into it if you have not done so already.
    Second of all, AUCTeX will also suggest the "correct" next step when using C-c C-c. Also, you should consider just adding latexmk or your own script to the C-c C-c cycle. Here are some examples from my .emacs
    (eval-after-load "tex"
    '(progn
    (add-to-list 'TeX-command-list
    (list "View in Acrobat Reader" "acroread %o"
    'TeX-run-command nil t))
    (add-to-list 'TeX-command-list
    (list "Count Words" "texcount -inc %s.tex"
    'TeX-run-command nil t))
    (add-to-list 'TeX-command-list
    '("Synctex" "/home/rasmus/.scripts/synctex-emacs %t %b %n" TeX-run-TeX nil t) t)
    If you want to use a script as the one suggested by yourself you would want to look into the last exampe ("Synctex").
    --Rasmus

  • Finding custom prices for customer based on district (abap-query).

    Hello.
    I can find in table A601-BZIRK the District-number, which i also can find on the customer in BP in CRM (we have both CRM and ERP).
    I want to make a query in SQ02, where i enter the customer-number, and gets the list of materials they have custom prices for, based on the district number.
    Sorry bad english. Tell me if there is something more you need to know
    Points will be awarded.
    Thanks.

    Hi,
    The answer to your query is 'Yes'. You need to design a 'UPDATE' metadata type custom integrator. The custom integrator shall use a parameter based view to first download data and then use a PL/SQL wrapper/API to re-upload it back. The brief steps are listed below:
    1. Create a 'UPDATE' metadata type custom integrator. Give a parameter list name, std/custom view for data download and a PL/SQL wrapper.
    2. Create a form function and associate the form function with the custom integrator created.
    3. Add the form function to the std WebADI menu for access.
    4. Define a layout for the custom integrator defined.
    4. To create a parameter use the standard integrator 'HR Standalone Query'. As a part of this integrator you can define the SQL WHERE clause (parameter based) that you will like to use with the custom/std view defined in the custom integrator definition.
    Note: You can use a max of 5 parameters only. For each parameter, one needs to define the datatype and also the HR standalone query has a size limitation of 2000 chars in 11i10. You increase this length you may apply patch - 3494588 to get 4000 chars.
    Hope this information helps.
    Thanks,
    Nitin jain

  • SORT butttons on custom screen for custom fields

    Hi all,
    I have a dedveloped a custom screen in which there are 5-6 fields.Nowi need to put Sort buttons below these fields so that I can sort these fields.
    How do i do this???Is there std FM i can use to achieve the sort functionality?

    Hi Rob,
    I dont have a table control in which I have the custom fields.The custom fields are placed in a subscreen within acustom tab in standard screen in tcode VL31N. as shown below:
    Plant:
    Carrier:
    Bill of lading:
    Packaging list:
    Damage
    Now below these 5 fields ,I need to display the 2 SORT buttons/icons to change the display in ASCENDING OR DESCENDING  order.
    How do i do this???Is there any std FM ?

  • A Full list of task command for custom Button

    Hi All
    I am looking for the exhaustive list of Task Commonad for the Custom Button , that  i am preparing. In the 320 material, it is saying that "A Full list of task command is located in the online BPC Excell for help"
    can anybody please let  me know the appropriate link or any other appropriate place , from where i can get the list.
    Thanks
    krish

    You can greatly improve your chance of receiving a helpful answer to your question if you state the version (MS or NW) and the release (5.1, 7.0, 7.5) of BPC which you are using.
    Also notice the sticky [note|Please do not post BPC, SSM or FI/CO questions here!; at the top of this forum whereby we announced new dedicated forums for BPC which are the proper place to post your questions regarding BPC in the future.
    Thanks and best regards,
    [Jeffrey Holdeman|http://wiki.sdn.sap.com/wiki/display/profile/Jeffrey+Holdeman]
    SAP BusinessObjects
    Enterprise Performance Management
    Regional Implementation Group

  • Deploying custom report for custom hardware inventory data.

    Hi!
    I want do the following:
    1) Extend Hardware Inventory using my own *.mof file. Like,
    #pragma namespace ("\\\\.\\root\\cimv2\\SMS")
    [ SMS_Report (TRUE),
    SMS_Group_Name ("My Inventory"),
    SMS_Class_ID ("CUSTOM|My_Inventory|4.0") ]
    class My_Inventory : SMS_Class_Template
    [SMS_Report(TRUE)] string SerialNumber;
    [SMS_Report(TRUE)] string SomeData;
    2) Extend Reporting system with my own report that will use data from custom hardware inventory. For example, joins inventoried data with SCCM resources.
    3) Deploy 1) and 2) programmatically to any sccm installation. So, report should not be linked to concrete data source or report server url.
    If you know the tools that may help me, it will be very helpful! Many thanks!

    You should ask the .rdl part from the SQL Reporting services forums, you should get better answers from there, because this isn't purely a ConfigMgr issue.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/home?forum=sqlreportingservices

  • XD01 Custom screen for custom fields,need to update tables kna1,knvv

    Hi all,
             I have designed a custim screen for XD01 with four custom fields five from kna1 other one from knvv table.  i need to update the respective tables with these fields in badi GET_DATA of method IF_EX_CUSTOMER_ADD_DATA how to update the database table. Please help me in the same.

    see the help
    http://help.sap.com/saphelp_nw04/helpdata/en/c3/4099948b8911d396b70004ac96334b/frameset.htm
    Regards
    Kiran Sure

  • Custom Workflow for custom HCM form - reg

    Hi,
    We have a custom form designed and having a workflow for that. We have developed the workflow like any other workflow for appraisals for example or in SD. But here while test run of process we are getting error saying 'Work Item not found' though the work item is present in SWI1.
    We have below steps.
    Header
    Importing form container
    User Desicion (Approve/Reject)
    If approved update database.
    Can any one correct me if am wrong.
    Raj

    Hi,
    For workflows involving HCM forms, there some standard tasks which should be made use of:
    Task Group TG17900001: Components for HCM Processes & Forms
    Task Group TG17900002: Interactive Components
    Standard Task TS17900100: Edit Form
    Standard Task TS17900101: Approve Form
    Standard Task TS17900102: Form Is Edited Again by Author
    Standard Task TS04000018: Process PD Form
    Standard Task TS04000019: Approve PD Form
    Standard Task TS04000020: PD Form Is Edited Again by Author
    Workflow Template WS17900260: Save Form with Error Handling
    Workflow Template WS17900404: Draft for Process Start
    Workflow Template WS17900418: Forward: Process Start with Errors
    Task Group TG17900003: Background Components
    Standard Task TS17900106: Check Existence of PA Infotype
    Standard Task TS17900107: Check Form Data
    Standard Task TS17900108: Save Form Data
    Standard Task TS17900110: Import Field Value to WF Cont. Element
    You can use TS17900110, TS17900101/TS04000019 and TS17900107. Please make sure you read some documentation before you use these tasks.
    Let me know, whether this is helpful.
    Thanks,
    Sukumar.

  • Customizing UWL for Custom connector

    Hi,
    I have implemented a UWL Custom connector to get tasks from a 3rd party system.
    We are using UWL only to get tasks from custom 3rd party systems only. (there are no SAP workflow task configured)
    I followed this link http://help.sap.com/javadocs/nwce/ce71/uw/UWL%20Custom%20Connector%20API.pdf
    to write a custom connector and tasks are appearing in UWL.
    Now I have to do following configurations: -
    1. By clicking on a task's subject, it should open a URL provided by 3rd party system. (currently it opens a pop-up window with some description about task)
    2. Hide the information area that appears below the work-list table
    3. Hide Alerts, Notifications & Tracking tabs
    4. Hide Create Task button
    5. Add few columns in Worklist and hide some of the existing ones.
    Can you please guide me how to do this?
    Thanks & Regards,
    Amey Mogare

    Hello Kari,
    Thanks for your replies.
    3. Hide Alerts, Notifications & Tracking tabs
    >>> DONE  (I could hide those tabs by setting property "UWL Navigation Style = none" in UWL iView)
    So just one question remains now... Editing columns.
    Yes, I went to the exact same place that you mentioned (before posting this question).
    System Admin
            / System Config
                   / Universal Worklist & Worklfow
                          / Universal Worklist - Administration
                                      /Click to Configure Item Types and Customize Views Using a Wizard
                                             /Customize the look of the UWL main page
    At this screen, no tabs are shown! The drop-downs for Navigation nodes, Available tabs are empty.
    Hence, I am not able to remove/hide anything from here.
    Also, lets say if I want to do it by manipulating standard UWL xml (as mentioned in thread you mentioned in your reply), from where can I download this XML?
    Thanks for your replies.
    Regards,
    Amey

  • What's the reason for " 'Writing XMP Metadata' did not complete successfully

    I rightclicked an image and selected "save metadata to file" and got this not-so-very-informative error message. What could be the cause? The file is there and it is not write protected.
    Adobe - what about giving some more information when LR encounters errors?
    Win XP, LR 1.3.1

    While read only is the most likely cause, I have been trying to track down a similar problem which so far I can only equate to the creation time of the file ending in 00.
    For example, I have a file taken at 6/13/2006 1:00:00 PM
    If I do Metadata -> Edit Capture Time...
      and set the time to be 6/13/2006 1:00:01 PM
    Then click twice on the Resolve Conflicts button for Metadata, the second one works.  Both times I tell it to overwrite the metadata on disk.  My assumption is that the data processing logic has issues reading in entries like:
       2006-06-13T13:00:00-08:00
    I would even go so far as speculating it treats them as just the day and drops the hour / minute portion.  The reason for this conjecture is that I stumbled on this issue when exporting images would occasionally have 2006/06/13 12:00AM as the timestamp and when I checked which ones had problems, they all were taken at 00 seconds into the minute.
    Henrik, if you are still having this problem, does the file happen to have a 00 second creation timestamp?  If so, try changing it by a second and I would be curious if you it starts working for you too.
    Cheers,
    John

  • Custom doLogin for custom WebCenter Portal

    I have a situation where I need to change the landing page that the user sees based on the group/role membership. This seems a pretty common idea, but I can't seem to figure out a way to make this happen. This means that it needs to happen after login_sucess.
    I can't see a way to use a bean to specify the to-view-id within the login_success navigation case, so I am assuming that I need to use a custom doLogin method. Is there any documentation out there that will help me with this other than what I have found here: http://www.orastudy.com/oradoc/selfstu/fusion/web.1111/b31974/adding_security.htm#BABDEICH?
    I would be perfectly happy just using the existing code base and then adding in a section to check the membership and then send back a custom outcome that I can then build new navigation cases from.
    Any ideas?
    Thanks,
    Brian

    Well, if you are talking about a Landing page (or a home page) in a Space, than I would suggest to have multiple templates as in the case of multiple memberships.
    Then, when loading the default home in Spaces, you can use an Expression language to select different template based on a role. Thats what we are doing in our scenario.
    Hope it helps.
    Regards.

  • Custom events for custom classes

    So what I'm trying to build is a custom class wich connects
    to a php socket server using an XML socket.
    I don't know how I can broadcast an event so I can write
    something like the code below. Anyone can help ?

    To be more specific my class looks something like this
    :

  • Analyze speech for text XMP metadata

    This question was posted in response to the following article: http://help.adobe.com/en_US/premierepro/cs/using/WS29F692D2-7A49-44db-A109-AE016B766767.ht ml

    The "MTS" file extension is not supported for speech to text conversion. This is apparent as the "Analyse" button is greyed out.  By changing the MTS file extension to M2V, speech to text will work.  Adobe is aware of this fault but has not noted it in the Knowledge Base.  Adobe Support advised me that a lot of people are experiencing the fault.  There is no apparent downside to changing the file extension within Premiere Pro.

Maybe you are looking for

  • Some device fonts not appearing under 11.0.1.152

    Mac OSX 10.7.1 (Lion) Safari 5.1 Firefox 6.0.2 I have several swfs published for FP 10 & 10.1 which have been working fine under FP 10.3.182.10 in both Safari and Firefox. The swfs have code that displays a device font ("_sans") for certain languages

  • How to include CSS file in JSP

    Hi Experts, CSS file availabe in server. I need user that CSS in one of PDK application. Example: "/usr/sap/ED1/JC03/j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp/irj/root/portalapps/style1.css" I need to include this in one of JSP file. Regards,

  • My BT security is not active!

    I keep receiving emails informing me my BT security is not active. Link takes me to a form requesting my credit card details. Is this phishing or is this a genuine BT request. If it's genuine why do BT need my credit card details for 'security'. I pa

  • Aggregation problem

    Hi experts. I've got 3 tables A, B and C. Columns in A: "Konto", "Klient", "Saldo" Columns in B: "Konto", "Klient", "Rach", "Saldo" Columns in C: "Konto", "Rach", "Kwota" Physical diagram A -<-B ->- C Business model diagram A -<- B ->- C Logical tabl

  • File not readable

    I have been working on my sister in laws wedding imovie project and now when I try and open it, it says file not readable. I can open other saved movies and when i tried to start a new one and saved it, the new one is also saying file not readable. I