Xmp sdk with cdt

Hi all,
I have some problems compiling an DLL with XMP support under Windows.
I am using Eclipse CDT.
Everything works fine using OS X. I think the problem could be that some gcc / linker parameters are missing.
In the code I defined all I need:
#define TXMP_STRING_TYPE  std::string
#define XMP_INCLUDE_XMPFILES 1
Then I include:
#include "XMP.hpp"
Until this everything works and I can compile, but...
when I include (and nothing more!)
#include "XMP.incl_cpp"
the compilation progress throws a lot of errors about undefined references in XMPFilesStaticDebug.lib.
Any ideas? Any solutions?
Best,
Ole

I'm getting 33 linker errors when compiling. I'm on XCode v3.1.3, however the  document is referring to XCode v2.x. Last setting listed in the document is not  available in XCode v3.1.3. Can somebody guide me for clearing the compilation /linking errors.
Please find linking error with an attachment to this post

Similar Messages

  • CS4 XMP SDK - Can't get it to work with Eclipse IDE

    I've been trying to use the CS4 XMP (FileInfo) SDK with the Eclipse IDE, as described in the docs, but there must be a missing step in the documentation because I have added the Ant Plugin and the XMP plugin (jar) but there is no "XMP / Custom Panel" project option showing in Eclipse.
    Has anyone got this to work? Does it require a specific (i.e. not the latest Ganymede) version of Eclipse?

    Hi Fred,
    Unfortunately I do not have Flex Builder (it is pay-for software). The XMP FileInfo SDK Programmer's Guide says there are three options:
    1. Adobe Flex Builder
    2. Eclipse IDE with Flex-Builder plug-in
    3. Flex SDK
    I've been trying number 2 (Eclipse IDE) as I am familiar with Eclipse and the plugin is included with the SDK, but it doesn't work so I guess the documentation is missing a few steps.
    Thanks
    James.

  • PLUS attributes in a Bridge Panel with XMP SDK

    Hi all,
    I' m developing a Bridge Info Panel with Flash Builder 4 and XMP SDK.
    I have to build a panel that contains the "Model Release Status" metadata.
    This metadata belongs to the PLUS Namespace.
    This is my form item:
    <!-- Model Release Status -->
         <fi:XMPFormItem
              label="$$$/xmp/sdk/custompanels/MySample/ModelRS=Model Release Status:"
              labelTooltip="$$$/xmp/sdk/custompanels/MySample/ModelRST=Summarizes the availability and scope of model releases authorizing usage of the likenesses of persons appearing in the photograph.">
              <fi:XMPComboBox xmpPath="plus:ModelReleaseStatus">
                   <fi:XMPComboBoxItem label="$$$/xmp/sdk/custompanels/MySample/ModelRST/None=None" xmpValue="http://ns.useplus.org/ldf/vocab/MR-NON">
                   </fi:XMPComboBoxItem>
                   <fi:XMPComboBoxItem label="$$$/xmp/sdk/custompanels/MySample/ModelRST/NAP=Not Applicable" xmpValue="http://ns.useplus.org/ldf/vocab/MR-NAP">
                   </fi:XMPComboBoxItem>
              </fi:XMPComboBox>     
         </fi:XMPFormItem>
    But I see a little difference from the original one.
    If I write metadata with Adobe Bridge original panel, I see this:
         <rdf:Description rdf:about=""
                xmlns:plus_1_="http://ns.useplus.org/ldf/xmp/1.0/">
             <plus_1_:ModelReleaseStatus>http://ns.useplus.org/ldf/vocab/MR-NON</plus_1_:ModelReleaseStatus>
             <plus_1_:Version>1.2.0</plus_1_:Version>
          </rdf:Description>
    Instead, in my custom panel, I see this.
           <rdf:Description rdf:about=""
                xmlns:plus_1_="http://ns.useplus.org/ldf/xmp/1.0/">
             <plus_1_:ModelReleaseStatus>http://ns.useplus.org/ldf/vocab/MR-NAP</plus_1_:ModelReleaseStatus>
          </rdf:Description>
    The Version attribute doesn't compare in my.
    I have two questions:
    1. is it mandatory this attribute?
    In http://ns.useplus.org/LDF/ldf-XMPSpecification they says that is only used in case of misunderstanding.
    2. If yes, how can I implement this?
    With an event on the save button?
    I believe it's more difficult and it's not so useful..
    Any idea, guys?
    Regards,

    Hi,
    to answer your questions.
    1. As far as I know, the plus:Version is not mandatory.
    2. I used the following algorithm in "FileInfo". A hidden XMPTextInput field at the end of the form contains the version.
    On the xmpWrite event, I check if the XMP packet has been modified and contains any plus:* values.
    In that case I add the version only if at least one plus property is contained in the packet, otherwise it is removed.
    Hope this helps,
    -- Stefan

  • How can I create a XMP List with multiple selection

    Hello,
    I try to build my own XMP custom panel. Herefore I need a couple of lists with the possibility for multiple selections (e.g. the choice for one language or multiple languages).
    But how is it possible to integrate a list into a panel? There is no XMPList inside the custom folder. I have experimented with the standard mx:list and an array collection for data binding into the list. But how can I write the user selection into an XMP field? Example: In the List the user choose three languages (DE, EN, FR). Is it possible to collect the choice into a string and to write the result into an XMP standard field (e.g. dc:description)?
    A further question is, if it's possible to use the "HTTPService" to bind an external xml-file with the languages and other informations into the panel or is it only possible to work with an array collection inside the code?
    Here is my code:
    <?xml version="1.0" encoding="utf-8"?>
    <fi:XMPForm
              xmlns:mx="http://www.adobe.com/2006/mxml"
              xmlns:fi="com.adobe.xmp.components.*" width="100%" height="100%"
              xmlns:Iptc4xmpCore ="http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/"
              label="XMP-Custom Panel"
              initialize="ds.send()"
              >
         <!-- Each namespace prefix that is used within an xmpPath-attribute,
               MUST BE registered at the top of EACH panel where it is referenced -->
         <fi:XMPNamespaces>
              <fi:XMPNamespace prefix="dc" value="http://purl.org/dc/elements/1.1/"/>
         </fi:XMPNamespaces>
         <fi:XMPForm>
              <mx:HBox width="100%" height="26" verticalAlign="middle">
                   <mx:HRule width="50%"/>
                   <mx:Label text="Allgemeine Metadaten" fontSize="12" fontWeight="bold"/>
                   <fi:XMPSeparator width="50%"/>
              </mx:HBox>
              <fi:XMPFormItem
                        label="Titel"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPTextInput xmpPath="dc:title" xmpType="Localized" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Titel"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPTextInput xmpPath="dc:title" xmpType="Localized" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Druckkennzeichen"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPTextInput xmpPath="dc:title" xmpType="Localized" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Verfasser"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Erzeuger des Dokumentes" fontSize="11" width="100%">
                   <fi:XMPComboBox xmpPath="dc:creator" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Versionsnummer"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPComboBox xmpPath="dc:creator" width="100%"/>
              </fi:XMPFormItem>
              <mx:HBox width="100%" height="26" verticalAlign="middle">
                   <mx:HRule width="50%"/>
                   <mx:Label text="Enthaltene Sprachen" fontSize="12" fontWeight="bold"/>
                   <fi:XMPSeparator width="50%"/>
              </mx:HBox>
              <!-- Beginn der Auswahl-Liste für die Sprachen -->
                 <mx:Script>
            <![CDATA[
                import flash.events.MouseEvent;
                import mx.controls.Alert;
                import mx.collections.ArrayCollection;
                private const NL:String = "\r";
                // A data provider created by using ActionScript
                [Bindable]
                private var subscriptions:ArrayCollection =
                    new ArrayCollection
                            {data:0, label:"Deutsch"},
                            {data:1, label:"Englisch"},
                            {data:2, label:"Französisch"},
                            {data:3, label:"Italienisch"}
                [Bindable]
                private var market:ArrayCollection =
                    new ArrayCollection
                            {data:0, label:"(Bitte Marktversion auswählen)"},
                            {data:1, label:"Marktversion Deutsch (M_DE)"},
                            {data:2, label:"Marktversion Englisch (M_EN)"},
                            {data:3, label:"Marktversion Frankreich (M_FR)"},
                            {data:4, label:"Marktversion Italien (M_IT)"}
                [Bindable]
                private var documenttyp:ArrayCollection =
                    new ArrayCollection
                            {data:0, label:"(Bitte Dokumenttyp auswählen)"},
                                  {data:1, label:"Gebrauchsanweisung"},
                            {data:2, label:"Ersatzteilkatalog"},
                            {data:3, label:"Service-Anleitung"},
                            {data:4, label:"Etikett"}
            ]]>
        </mx:Script>
                    <fi:XMPFormItem label="Sprachauswahl" width="100%">
                    <mx:List
                        id="userSubscriptions" rowCount="4"
                        allowMultipleSelection="true" width="100%"
                        dataProvider="{subscriptions}"
                    />
                </fi:XMPFormItem>
                    <mx:Text text="* Mehrfachauswahl möglich." fontWeight="normal" fontSize="10"/>
                <!-- Ende der Liste für die Auswahl von Sprachen -->
              <fi:XMPFormItem
                        label="Marktvariante"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPComboBox xmpPath="dc:creator" width="100%" dataProvider="{market}"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Dokumenttyp"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPComboBox xmpPath="dc:creator" width="100%" dataProvider="{documenttyp}"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Stichworte"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Erzeuger des Dokumentes" fontSize="11" width="100%">
                   <fi:XMPTextArea/>
              </fi:XMPFormItem>
              <mx:HBox width="100%" height="26" verticalAlign="middle">
                   <mx:HRule width="50%"/>
                   <mx:Label text="Metadaten Photoshop" fontSize="12" fontWeight="bold"/>
                   <fi:XMPSeparator width="50%"/>
              </mx:HBox>
              <fi:XMPFormItem
                        label="Originalname FA"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%" id="PS1">
                   <fi:XMPTextInput xmpPath="dc:title" xmpType="Localized" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Fotoauftragsnummer"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%" id="PS2">
                   <fi:XMPTextInput xmpPath="dc:title" xmpType="Localized" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Interne Anmerkungen"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Erzeuger des Dokumentes" fontSize="11" width="100%" id="PS3">
                   <fi:XMPTextArea/>
              </fi:XMPFormItem>
              <mx:Text text="* hier steht eine kleine Erläuterung" fontWeight="normal" fontSize="10"/>
         </fi:XMPForm>
    </fi:XMPForm>
    Any suggestions?
    Thank you in advance.
    Markus

    Hi Markus,
    the FileInfo SDK does not offer a ready-made list component allowing for multi-selection.
    So you would need to implement one using the FileInfo SDK API. Your component "XMPList" would inherit from mx:list and would need to implement the XMPRead and XMPWrite events and talk to the XMP using the IXMPAccess interface within those event handlers.
    Please have a look at the Programmer's Guide, section "XMP Flex components" and at the API description available in "docs" for further guidanc.
    Hope this helps
    Kind Regards
    Jörg
    Adobe XMP

  • How to compile DNG SDK with GCC?

    I tried to compile DNG SDK with GCC, but I got stuck to the following error message:
    ... dng_flags.h:33:28: error: RawEnvironment.h: No such file or directory ...
    In other words, it seems that file 'RawEnvironment.h' is missing. I cannot find this file from DNG SDK or XMP SDK. Do you know where I could find this file or do you know how to compile DNG SDK with GCC?
    Regards Sami

    Please define either qMacOS or qWinOS (i.e., in your list of preprocessor defines). As you can see in line 32 of dng_flags.h this is required.

  • How to read AVCHD in XMP SDK sample programs

    I am just getting started with the xmp sdk. 
    It seems to me that the XMP SDK sample programs , (e.g. ReadXMP) do not work with AVCHD video. 
    Is that right?  Or am I missing something?
    (Prelude CC puts metadata into sidecar .xmp files in ACVHD/BDMV/STREAM   next to the .MTS files. That's the metadata I want to read.)
    I have tried
    ReadingXMP ../ACVHD
    which returns: "Unable to open ../AVCHD"
    I have tried
    ReadingXMP ../AVCHD/BDMV/STREAM/00000.MTS
    which returns
    "No smart handler available for ../AVCHD/BDMV/STREAM/00000.MTS
    Trying packet scanning.
    ../ AVCHD/AVCHD/BDMV/STREAM/00000.MTS is opened successfully
    dc:title in English =
    dc:title in French =
    XMP dumped to XMPDump.txt"
    Examination of XMPDump.txt reveals:
    "Dumping XMPMeta object ""  (0x0)"
    Which means that the scan found no xmp info.  Not surprising.  There should be none in the .MTS file.
    How do you get it to open up and scan the sidecar?
    If I give it the sidecar explicitly
    ReadingXMP  ../AVCHD/BDMV/STREAM/00000.XMP
    that also leads to the packet scan not finding any xmp info (which I have read elsewhere is because the xmp files don't include
    an initial xmp packet tag.... a mystery for another day.)
    So...
    Is there sample code that handles AVCHD?
    I see that there is an AVCHD_Handler.cpp in the XMPFiles library/framework, but I don't see how to get through to it.
    The XMPFiles.cpp function FileIsExcluded(...) seems to rule out any path that is a folder.
    Thanks.
    Keith

    Answering my own question ---
    After a long time of studying the XMPFiles library code, it became clear that it was NOT going to work with AVCHD... There are some places where it checks for folder-based files, (like P2 and XDCAM) but no mention of AVCHD. 
    There IS an entire file: AVCHD_Handler.cpp, but the routine that loads all the other file handlers omits this one.
    Also, there are some checks for "folder-based" formats that explictly check for the other formats, but not for AVCHD.
    I have modified the XMPFiles code to fix these oversights, and now I am happily reading the metadata I put on the AVCHD files using Prelude.   I may post more details as I go along.
    This pertains to the version downloaded as XMP-Toolkit-SDK-CC-201306.zip

  • XMP SDK 5.1.2 - Thumbnails

    I've been doing a lot of research today about the XMP SDK 5.1.2 and the C# wrapper by Martin Sanneblad.  I believe he was using XMP SDK 4.1.1.
    It appears that the 4.1.1. SDK had properties/functions that dealt with thumbnails.  Am I crazy, or has all that been removed sometime between 4.1.1. and 5.1.2?  If not, where is it?  If so, what's the better alternative?
    Thanks for your help,
    Kyle

    > We removed thumbnails from the XMP because a) binary blobs are no[t] actual metadata and b) just bloating the XMP packet of files especially as thumbnails were rarely used anyways.
    Both points are absurd.  Thumbnails are used frequently in the Digital Asset Management world, and thumbnails are metadata.
    If these were truly the reasons for removing thumbnails from the SDK (and it wasn't to discourage the use of non-Adobe viewers), then I don't think you included the DAM world when evaluating whether thumbnails were needed.
    Fortunately, the product teams have not lost touch with reality and continue to offer the ability to embed XMP thumbnails.

  • Who to send patches for XMP SDK to?

    Hi,
    I'm the maintainer of Exempi. Exempi started as a LGPL XMP library, and with the release of XMP SDK 4.1.1 under the BSD licence, it is now a wrapper around Adobe's SDK, under the same licence.
    I have several patches to the XMP SDK including bug fixes, build fixes on Linux and 64-bits platform (didn't build at all), and memory leaks.
    Who shall I send the patches to?

    Please send it to me: [email protected] - I'm the engineering manager for XMP.
    Thanks for your support.
    Frank Biederich
    Adobe Systems

  • How to setup Flex SDK with latest AIR SDK?

    Now the latest AIRSDK web page has a small link at the bottom for Flex users and it states that Flex users should take the SDK version without the compiler. BUT....
    the http://helpx.adobe.com/flash-builder/kb/overlay-air-sdk-flash-builder.html page says to download the SDK from
    http://labs.adobe.com/downloads/asc2.html
    but this page now redirects to:
    http://helpx.adobe.com/air/kb/archived-air-sdk-version.html
    which contains a large list of archived SDK's. So that help page never really says which version of the SDK to use - with or without the compiler. But other forum posts have implied its suppose to be the one with the compiler.
    Now since we're overlaying the ...plugins\com.adobe.flash.compiler_4.7.0.349722\AIRSDK folder that would make sense.
    But now there's a second overlay instructions page at:
    http://helpx.adobe.com/x-productkb/multi/how-overlay-air-sdk-flex-sdk.html
    with different instructions.
    So my questions are:
       Which overlay instructions are we really suppose to use?
       Which version of the AIR SDK (with or with-out compiler) are we suppose to use?
       What does the Flex Library Project properties -> Flex Library Compiler -> 'Include Adobe AIR libraries' checkbox really do?
            If I've followed the (first) overlay instructions above, does this checkbox now mean I'm using the overlaid AIR SDK 3.6
            with the current Flex SDK I've chosen?
            What if I'm using the Apache Flex 4.9.1 SDK? Will the AIR SDK 3.6 overlay that?
                (Doesn't Apache Flex have AIR 3.4 embedded - will this confuse Flash Builder 4.7 ?)
    Is it just me, or is this just getting more and more confusing? Can we perhaps get a AIR SDK combo box to go beside the Flex combo box and when we check the 'Include Adobe AIR libraries' then we can select the AIR SDK we want? And get a 'configure AIR SDKs...' link too? Then perhaps we can get completely away from overlays and all this merged SDK nonsense. I've had nothing but problems with it.
    The real reason I need all this info is because I'm trying to use Flash Builder 4.7 to build an Android ANE and I'm having a devil of a time just trying to find my resources. When I use context.getResourceID() I'm not getting the correct resources - and after reviewing other posts here I came to the conclusion that it might be due to bugs in older AIR SDK's. So really, at the moment I could care less about the latest Flex SDK, I just need to know I'm working from the latest AIR SDK.
    Thanks in advance.

    If you are not using Flash Builder go here: http://www.adobe.com/devnet/air/air-sdk-download.html
    At the bottom it says:
    Note : Flex users will need to download the original AIR SDK without the new compiler. Mac Windows.
    Download the proper one for your OS and then extract it over your existing Flex SDK directory.
    EDIT: Just read your post again and noticed you mentioned Flash Builder. In that case you want to follow these directions: http://helpx.adobe.com/flash-builder/kb/overlay-air-sdk-flash-builder.html and grab the version with the compiler at http://www.adobe.com/devnet/air/air-sdk-download.html

  • How to use Iden SDK with WTK 2.5.1 ?

    I have installed WTK, and it has been working but I realized I forgot to add the iden SDK for my motorola phone. I installed the SDK but I assume I need to link the files to WTK somehow?
    What I am wanting to do :
    So... I think I know what I need... I thought I had installed the iDEN SDK from Motorola, but I never did. So I installed the SDK but now I don't know how to use it with WTK. For you people proficient with this I am sure this is a simple task, but for me I am lost.
    The SDK has a class file called StatusManager which can retrieve phone battery level...
    From documentation:
    "Field Detail
    BATTERY_LEVEL
    public static final int BATTERY_LEVEL
    This is the value passed to the status manager to retrive the battery levels
    The return value is in the range of [0 - 3] with 0 being no charge and 3 being a full battery.
    BATTERY_LEVEL has a value of 0"
    QUESTION IS: Where do I put the SDK files so WTK can use them? I am lost here.
    I found the StatusManager.class file in :
    C:\Program Files\Motorola\iDEN SDK for J2ME (MIDP 2_0)\lib\i730\com\mot\iden\device\
    Can someone give me the detailed process of using the SDK with WTK... please??

    Thanks Sree.
    Is there something so called as the back-door approach to it.
    I read in the articles of Struct Objects and Connection that:
    If connection is obtained via:
    weblogic.jdbc.jts.connection jtsConn = getConnection();
    OracleConnection oracleConn = jtsConn.conn;
    And this should ideally work in WLS5.1,
    but still i wonder how did they obtain the connection.
    It would be obligatory if someone could help me with it.
    Thanks,
    Kavita
    "Sree Bodapati" <[email protected]> wrote:
    Hi Kavita,
    This is not possible to do this via a connection from the pool. Oracle
    implements non standard methods which require OracleConnection object
    instead of standard java.sql.Connection object which the pool returns.
    You
    have to use a direct connection using the thin driver.
    sree
    "Kavita Rajdeo" <[email protected]> wrote in message
    news:3c6fc1f5$[email protected]..
    The connection pool is created using the Oracle thin driver. The connection
    so obtained when passed to the ArrayDescriptor throws a
    ClassCastException at ArrayDescriptor.createDescriptor(connection con.
    While deployment,deployer throws an exception saying unresolved reference
    to
    oracle/sql/Datum, either include the class files for the same or remove
    the
    reference using the file.
    Would u kindly help me with this as urgently as possible.
    Thanking in anticipation.
    Kavita

  • AIR 3.5.0.880 SDK with ASC 2.0は?

    Flash Builder 4.7を使用しています。
    ASC 2.0用のAIR SDKを最新の3.5.0.880に更新したいのですが、手順が分かりません。
    現在はひとつ前のバージョンAIR SDK 3.5.0.600 with ASC 2.0(Cleative CloudのGame SDKに含まれてたもの)を以下のディレクトリにある古いものと置き換え済みです。
    C:\Program Files\Adobe\Adobe Flash Builder 4.7 (64 Bit)\eclipse\plugins\com.adobe.flash.compiler_4.7.0.349722\AIRSDK
    ちなみにLabsのものも同じ3.5.0.600でした。
    いずれAIR 3.5.0.880 SDK with ASC 2.0が公開されてダウンロードできるようになるのか、
    AIR SDK 3.5.0.600 with ASC 2.0に通常のAIR 3.5.0.880 SDKを手動でマージするなどしてやるのか、
    ヘルプにあるようにFlash Builder 4.7の更新を待つしかないのか 、
    どうなんでしょう?

    Detection of the AIR 3.5.0.880 patch has now been fixed and my SR closed.
    Jim Koerner
    "Jim Koerner" wrote in message
    news:UXTIs.3060$[email protected]..
    My SR got kicked up the line and they are now working with Adobe to sort it
    out.
    Did notice the detection of Adobe APSB13-01 AIR 3.5.0.1060 for Windows
    (Update) (All Languages) that just come out the other day is correct.
    Jim Koerner
    "Brad Johnson" wrote in message
    news:2a7Hs.2611$[email protected]..
    Thank you for posting this. I also have an SR open on this. So far I
    haven't heard anything back.
    Brad Johnson
    "Jim Koerner" <[email protected]> wrote in message
    news:5cYGs.2560$[email protected]..
    > Did a SR on this patch and got notified it is a known issue more details
    > to follow.
    >
    > Jim
    >
    > "Jim Koerner" wrote in message
    > news:djVGs.2542$[email protected]..
    >
    > I noticed the Adobe 'APSB12-27 AIR 3.5.0.880 for Windows (Update) (All
    > Languages)' patch is showing up on every single device. Maybe 5% of them
    > are legit. Most detections you can tell what is being checked but Adobe
    > detections seem to be based on running a script so you can't tell what it
    > is
    > looking for. Previous AIR updates are detected correctly(3 or 4
    > devices).
    > Anyone else seeing this with the update?
    >
    >
    > Filename : [Adobe APSB12-27 AIR 3.5.0.880 for Windows (Update) (All
    > Languages).pls]
    > OS Platform : [Microsoft Windows 7 Professional x64]
    > Library Build : [5.2.2][Sep 25 2012 16:01:07]
    > Finished Importing
    > Detecting
    > Running Script Fingerprint: [Applicable-01]
    > Script returned [0]
    > PreRequisite Patches: detection result changed to NOT_PATCHED (always)
    > Finished Detecting
    > Running Script Fingerprint: [Applicable-01]
    > Script returned [0]
    > PreRequisite Patches: detection result changed to NOT_PATCHED (always)
    >
    >
    > Jim Koerner
    > Server - ZCM 11.2.2 w/MU1 and Internal Database on Win2008R2x64
    > Client - ZCM 11.2.2 w/MU1 on Win7SP1x64

  • Set PDF Document Properties Initial View by Acrobat SDK with C#

    Hi,
    Here am trying to set the PDF document initial view by the Acrobat SDK with C#.
    Here I am show my screen shot which properties I want to set.
    For this process I am referred Acrobat SDK and also following Adobe forums they also asked similar question.
    http://forums.adobe.com/message/3866361
    http://forums.adobe.com/message/4803264
    http://livedocs.adobe.com/acrobat_sdk
    And also I am used following C# code
          Acrobat.AcroPDDocClass doc = new Acrobat.AcroPDDocClass();
          doc.Open(@"D:\..\sap.pdf");
    doc.SetOpenInfo(1,1,"Fit Width");
          doc.SetPageMode(3);
          doc.Save(1, @"D:\..\sap.pdf");
          doc.Close();
    From the above code {doc.SetPageMode(3);} is working for set the page mode.
    But I am having problem in following code {doc.SetOpenInfo(1,1,"Fit Width");}
    Because it won’t work I do’t known, and there is no clear samples in the SDK reference document.
    So please give advice and clear sample code/syntax to meet above needs which are marked in red box.
    Document Properties - > Intial View
    Document Option
         Show: Bookmarks Panel and Page
         Page Layout: Continuous
         Magnification: Fit Width
    Window Options
         Show : Document Title
    Regards,
    Thirusanguraja Venkatesan

    ok thank you Test Screen
    I will try and let you know if i am done by automation .
    Regard,
    Thirusanguraja Venkatesan

  • How to  work on SDK with SAP B1 2005

    hi all,
        its too urgent, if you have any information about it, kindly help me.
    1. i need some details related to SDK. what are the tools needed for working on SDK with SAP B1 2005,
    2. how to get the "microsoft visual studio" for writing code for sdk.is there any seperate tool available with SDK for that or we have to use the general " microsoft visual studio" for VB and VC++.
    3. how to work on Screen painter add-on, able to design the forms,but how and where to write the code to make it work, or is there any tool kit for generating the code.
    4. pls give the link in the SAP portal for downloading the " tools and software needed for working on SDK with SAP B1 2005.
    if you have any tools, software and guide files related to sdk kindly please send me to my gmail address " [email protected] ".
    it is very urgent, if you have any resources regarding this then kindly send me as soon as possible.
    regards
    sandip

    Sandip,
    The forum that you have posted your question in is for questions related to the SAP Business One Integration for SAP NetWeaver.  Your question is SDK related and should be posted in the SAP Business One SDK Discussion forum.
    That being said ... here are the answers to your questions ...
    1. As far as the SDK goes, it does not provide an IDE.  Since the API's are COM, then you can use any IDE that can communicate with COM objects such as VB6, VB.Net, C#, C++, etc.
    2. As stated above, the SDK does not provide an IDE.  You would need to purchase one or you can get a free one from Microsoft on there website such as Visual Basic 2005 Express Edition.
    3. The Screen Painter is an SAP tool (independant of any IDE) that allows you to graphically create new SAP Business One looking forms and then save them to an XML format.  You would then in your code use the LoadBatchActions method to load your XML form.  Documentation on the Screen Painter and the LoadBatchActions method is in the SAP Business One SDK Help Center Documentation that comes with the SDK as well as there is eLearning available for the SDK on this portal as well as the SAP PartnerEdge Portal if you are an SAP Business One partner.
    4. If you are an SAP Business One partner and have an "S" number, you can log into the SAP PartnerEdge Portal and then under SAP Business One and "Installations & Updates" you can download the SAP Business One product as the SDK installation is part of the overall installation package.  If you are not a partner you would need to contact your local SAP Business One sales representative.
    Other tools available that work with the SAP Business One SDK are located on the SDN Portal under this link ...
    SAP Business One Tools [original link is broken]
    HTH,
    Eddy
    P.S. please give points for helpful answers!

  • Flex SDK with Eclipse

    Hello,
    I am quite new in Flex and Eclipse, but I would like to start my journey. So at the beginning I have to have a software to create my projects. I decided to make it in Eclipse SDK with Flex SDK. But I have no idea how can I install Flex SDK in Eclipse. I mean I would like to be able pree new and then Flex application. Something like this in this movie: http://www.adobe.com/products/flex/media/flexapp/
    So can someone help me??

    The Flex 2 plugin for Eclipse does not work with Eclipse
    3.3.x - you need 3.2.x. Download the Flex 3 Beta from Adobe labs
    and that will work with Eclipse 3.3.x
    You can use a Flex 2 SDK with the Flex Builder 3 plugin -
    each Flex 3 project can select its own Flex SDK. Plus you can help
    us test Flex 3, including the Profiler tool.

  • Build Plug-Ins with CS4 SDK under OS X 10.5 SDK with Xcode 3.1.2?

    I have existing Photoshop Universal Binary Plug-ins built under OS X 10.4 and the OS X 10.4 SDK, with Xcode 2.1.x & Photoshop CS3 SDK.  They are mature and stable.
    I am attempting to build these Plug-Ins with the new CS4 SDK under OS X 10.5.6 & 10.5 SDK with Xcode 3.1.2.
    They do not build as there is a conflict in PITypes.h with the attempted redefinition of uint32, already defined in the Apple header cssmconfig.h, amongst other problems.
    Has anyone built with a similar configuration?
    Thank you!

    I've had good luck with Snow Leopard 10.6.1, XCode 3.2 and the Photoshop CS4 SDK by changing the build settings like this:
    1. Open the Target Info window: Project->Edit Active Target
    2. Change Architectures from native to 32-bit Universal (because my native is 64 bit)
    3. Make sure Base SDK is 10.4 (you must have that installed of course). If you select 10.5 for some of the Photoshop examples, you get complaints of depreciated APIs.
    4. Change C/C++ compiler version to GCC 4.0
    In the case of using these steps, there is no need to edit any headers, comment anything out, etc.
    Hope that helps!

Maybe you are looking for

  • 3rd Gen 20GB iPod not recognized by iTunes 10.5

    I decided to dust off my old 3rd Gen 20GB (firewire) iPod that's been in my closet for many years. However for some reason iTunes 10.5 will not recognize it, so I can't copy songs to it or check for firmware updates, etc. I don't think there's anythi

  • MSI GT70 2OD-831XBE AZERTY Steelseries engina 2? (keyboard)

    i downloaded steelseries engine 2 for my keyboard but it still doesn't show anything, steelseries keeps saying that i need to connect a steelseries engine on the program itselfs.

  • Flash Player 11.5.502.110 freezes at 95% on OSX 10.8.2

    Have tried installing Flash v. 11.5.502.110 numerous times on my Macbook Pro and each time it freezes at 95% and nothing. I have let it sit for over 8 hours and it is still stuck at 95%. I have used the flash manager to remove all instances of flash,

  • 5d Mark II Images not same in Develop and Library Module

    Hello, I am having trouble with the Raw fies that have been adjusted in the Develop Module loosing all of their luster and pop when switching back to Library and exporting. In other words, my adjustments are generally flattened out and colors muted w

  • MacBook Pro will not charge, only works when plugged in.

    My MacBook Pro says it is at 68% battery not charging but the source is coming from the power adapter. It hasnt gone down for the past day or so. Also it only works when it's plugged in and shuts down immediately when the charger is unplugged. I just