Is it Possible develop plugin only in release version?

I am new to development, I find difficult to test my code with the release version alone.
Is it necessary to obtain the debug version, so as to test my code. Or release version of Indesign is more than enough?
I came to know the any ASN membership will receive the debug version as a benefit. Is it so?

It is possible to develop a plugin without debug version.
However if you run into troubles the debug version allows you to trace the source of it.
To get indesign debug versions i had to write a mail to adobe, 4 hours later i could download the debug versions from my (free) adobe partner account. You can find mail adress with google.

Similar Messages

  • Will it be possible to create new version of document only after releasing

    Dear Expert,
                      is it possible to create a new version of the document only after release of the document...i don't want document version should be created other then release status.
    Bhuwan

    Hello,
    Since you are a technical consultant also, probably you are in a better position to deside how to achieve this.
    You will have to develop a user exit which will check status/ Release Indicator of  Document when new version option is clicked through CV01N/ 2N/ 3N/ 4N transaction and take necessary action. 
    Regards,
    Milind Dumbre

  • Developer 6.0 Eap release

    Hi,
    The only Oracle product I have installed is the RDBMS on Solaris.
    I assume from the Developer documentation that I can install
    Developer on my NT box even though my server is on Solaris.
    When I run setup it begins to install some support files but the
    installer soon exits.
    I haven't installed Oracle Application Server. Is this necessary
    prior to installing Developer? The Developer documentation says
    that I need OAS if I want to use Developer C cartridges.
    If I don't need OAS what could be the cause of the installer
    exiting; it doesn't give me any error messages. It just exits.
    Thanks
    Jon Leishear
    Applied Research Labs
    Austin, TX
    null

    Andrei,
    I originally thought I should be able to do as you
    suggested but then I read the statement on the Support web
    page for this Developer EAP 6.0 release; it says that you
    need Oracle for NT and OAS in order to use this beta
    version. Perhaps if you purchase a different version you
    can run Developer on NT and allow it to connect to your
    non-NT based Oracle databases but that doesn't seem
    possible with this beta, at least according to the web
    page.
    Right now I have installed Oracle for NT on my Win box and
    next week I'll put OAS in another ORACLE_HOME on that box;
    the documentation states this is necessary. Then I'll have
    to see about whether or not I can put Developer in with OAS
    or if I have to create another ORACLE_HOME. Up till today I
    had only installed Oracle on Solaris so it was a good
    experience for me to do an NT install. I have to teach
    myself OEM so I have plenty to do.
    Thanks for the reply.
    Jon Leishear
    Andrei Kvasyuk (guest) wrote:
    : Jon Leishear (guest) wrote:
    : : Hi,
    : : The only Oracle product I have installed is the RDBMS on
    : Solaris.
    : : I assume from the Developer documentation that I can install
    : : Developer on my NT box even though my server is on Solaris.
    : It's all the same where you have RDBMS installed. I have two
    : servers: one is on Solaris box and the other - on Linux box.
    : : When I run setup it begins to install some support files but
    : the
    : : installer soon exits.
    : : I haven't installed Oracle Application Server. Is this
    : necessary
    : : prior to installing Developer? The Developer documentation
    : says
    : : that I need OAS if I want to use Developer C cartridges.
    : : If I don't need OAS what could be the cause of the installer
    : : exiting; it doesn't give me any error messages. It just
    exits.
    : You don't need OAS to be installed for normal installation
    : of Developer. For simple client/server development you may
    : install default typical configuration.
    : : Thanks
    : : Jon Leishear
    : : Applied Research Labs
    : : Austin, TX
    null

  • Data Miner Extension in SQL Developer 4.0 EA3 Release: EA3 Repository Migration Failure

    The Data Miner extension in the SQL Developer 4.0 EA3 release fails when attempting to migrate the repository to EA3. This posting contains instructions on how to recover from this failure as well as to successful migrate the repository from EA2 to EA3. There are no problems when just installing a fresh Data Miner repository.
    Sorry about the difficulty if this has caused you any problems.
    Mark
    Failure message displayed in log when migrating to EA3:
    Error report -
    ORA-06550: line 96, column 40:
    PLS-00382: expression is of wrong type
    ORA-06550: line 96, column 7:
    PL/SQL: Statement ignored
    06550. 00000 -  "line %s, column %s:\n%s"
    *Cause:    Usually a PL/SQL compilation error.
    *Action:
    Instructions on how to recover from failure and continue using original version of SQL Developer:
    1) Execute the following sql as SYS in order to allow the Data Miner repository to be open for use again:
    UPDATE ODMRSYS.ODMR$REPOSITORY_PROPERTIES
    SET PROPERTY_STR_VALUE = 'LOADED'
    WHERE PROPERTY_NAME = 'REPOSITORY_STATUS';
    COMMIT;
    2) During attempted migrationto EA3 failed, access priviliges to the Data Miner repository are revoked from users. In order to use Data Miner again, these grants must be reapplied. You can either use the UI guided process to accomplish this, which requires the SYS password, or you can run the usergrants.sql script, again as the SYS user. For instructions on how to run the usergrants.sql script, or any adminstrative script, review the instructions contained in the install_scripts_readme.html file. You can find this file in the SQL Developer directories created when you unzipped SQL Developer. It is located in the following relative directory: \<SQL Developer Install Directory>\sqldeveloper\dataminer\scripts.
    Instructions on how to successfully migrate to EA3.
    If you have already attempted to migrate to EA3 and failed, then you need to perform the recovery instructions noted above, after which you can continue with the instructions below.
    If you have not yet attempted to migrate to EA3, then just following the instructions below.
    1) Replace all contents the script file createxmlworkflowsbackup.sql with specification contained at the end of this posting. The file to edit can be found in the \<SQL Developer Install Directory>\sqldeveloper\dataminer\scripts directory.
    2) After completing the edit to createxmlworkflowsbackup.sql,  you can proceed with the UI guided migration or perform the migration using the appropriate migration script. Review the install_scripts_readme.html file in the /dataminer/scripts directory for instructions on how to perform the migration using the script. For the UI migration, simply open any user connection in your Data Miner navigator, and you will be prompted to perform the migration.
    WHENEVER SQLERROR EXIT SQL.SQLCODE;
    DEFINE MAX_VERSIONS = 30
    EXECUTE dbms_output.put_line('Start Backup Data Miner Workflows ' || systimestamp);
    DECLARE
      table_cnt NUMBER;
    BEGIN
      SELECT count(*) INTO table_cnt FROM all_tables WHERE owner='ODMRSYS' AND table_name='ODMR$WORKFLOWS_BACKUP';
      IF (table_cnt = 0) THEN
        EXECUTE IMMEDIATE '
          CREATE TABLE ODMRSYS.ODMR$WORKFLOWS_BACKUP
            USER_NAME VARCHAR2(30 CHAR) NOT NULL
          , PROJECT_ID NUMBER NOT NULL
          , PROJECT_NAME VARCHAR2(30 CHAR) NOT NULL
          , PJ_CREATION_TIME TIMESTAMP(6) NOT NULL
          , PJ_LAST_UPDATED_TIME TIMESTAMP(6)
          , PJ_COMMENTS VARCHAR2(4000 CHAR)
          , WORKFLOW_ID NUMBER NOT NULL
          , WORKFLOW_NAME VARCHAR2(30 CHAR) NOT NULL
          , WORKFLOW_DATA SYS.XMLTYPE
          , CHAIN_NAME VARCHAR2(30 CHAR)
          , RUN_MODE VARCHAR2(30 CHAR)
          , STATUS VARCHAR2(30 CHAR) NOT NULL
          , WF_CREATION_TIME TIMESTAMP(6) NOT NULL
          , WF_LAST_UPDATED_TIME TIMESTAMP(6)
          , BACKUP_TIME TIMESTAMP(6) NOT NULL
          , VERSION NUMBER NOT NULL
          , WF_COMMENTS VARCHAR2(4000 CHAR)
          , CONSTRAINT ODMR$WORKFLOWS_BACKUP_PK PRIMARY KEY
              PROJECT_ID
            , WORKFLOW_ID
            , VERSION
            ENABLE
          LOGGING
          PCTFREE 10
          INITRANS 1
          XMLTYPE COLUMN "WORKFLOW_DATA" STORE AS BASICFILE CLOB';
      END IF;
    END;
    DECLARE
      schema_old_ver VARCHAR2(30);
      schema_ver   VARCHAR2(30);
      patch        VARCHAR2(30);
      db_ver       VARCHAR2(30);
      v_storage    VARCHAR2(30);
      schema_data  CLOB;
      v_db_11_2_0_2 NUMBER; -- db is <= 11.2.0.2?
      row_cnt      NUMBER;
      ver_num      NUMBER := 1;
      maintaindom  NUMBER;
      workflow_rec ODMRSYS.ODMR$WORKFLOWS_BACKUP%ROWTYPE;
    BEGIN
      SELECT STORAGE_TYPE INTO v_storage FROM ALL_XML_TAB_COLS WHERE OWNER='ODMRSYS' AND TABLE_NAME='ODMR$WORKFLOWS' AND COLUMN_NAME='WORKFLOW_DATA';
      if (db is >= 11.2.0.3 AND SQL Dev > 3.0) OR (db is <= 11.2.0.2 AND MAINTAIN_DOM_PATCH_INSTALLED)
        back up all workflows
      end if  
      IF (v_storage != 'BINARY') THEN
        -- determine xml schema version
        SELECT XMLSerialize(CONTENT SCHEMA AS CLOB) INTO schema_data
        FROM DBA_XML_SCHEMAS WHERE schema_url = 'http://xmlns.oracle.com/odmr11/odmr.xsd' AND owner = 'ODMRSYS';
        maintaindom := INSTR(schema_data, 'xdb:maintainDOM="false"', 1, 1);
        -- determine database version
        SELECT version INTO db_ver FROM product_component_version WHERE product LIKE 'Oracle Database%';
        --- Check schema compatibility
        schema_old_ver := '11.2.0.1.9'; -- default value
        BEGIN
          SELECT property_str_value INTO schema_ver
          FROM "ODMRSYS"."ODMR$REPOSITORY_PROPERTIES" WHERE property_name = 'WF_VERSION';
          IF schema_old_ver = schema_ver  THEN
            IF NOT (db_ver = '11.2.0.1' OR db_ver = '11.2.0.2') THEN
              dbms_output.put_line('WARNING: The backup process can not be done, The workflows need to be migrated first');
            RETURN;
            END IF;
          END IF;
        EXCEPTION WHEN NO_DATA_FOUND THEN
          schema_ver  := schema_old_ver;
          dbms_output.put_line('No WF_VERSION found. Defaults to: '  || schema_old_ver);
        END;
        -- determine if MAINTAIN_DOM_PATCH_INSTALLED
        IF (INSTR(db_ver, '11.2.0.2') > 0 OR INSTR(db_ver, '11.2.0.1') > 0 OR INSTR(db_ver, '11.2.0.0') > 0) THEN
          v_db_11_2_0_2 := 1;
          BEGIN
            SELECT PROPERTY_STR_VALUE INTO patch FROM ODMRSYS.ODMR$REPOSITORY_PROPERTIES WHERE PROPERTY_NAME = 'MAINTAIN_DOM_PATCH_INSTALLED';
            patch := UPPER(patch);
          EXCEPTION WHEN NO_DATA_FOUND THEN
            patch := 'FALSE';
          END;
        ELSE
          v_db_11_2_0_2 := 0;
        END IF;
      END IF;
      IF (   v_storage = 'BINARY'
          OR (v_db_11_2_0_2 = 0) -- db is >= 11.2.0.3
          OR ((v_db_11_2_0_2 > 0) AND ((patch = 'TRUE') OR (maintaindom = 0))) ) THEN -- db is <= 11.2.0.2 AND (MAINTAIN_DOM_PATCH_INSTALLED OR maintaindom="true")
        SELECT count(*) INTO row_cnt FROM ODMRSYS.ODMR$WORKFLOWS_BACKUP;
        IF (row_cnt > 0) THEN
          SELECT NVL(MAX(VERSION)+1,1) INTO ver_num FROM ODMRSYS.ODMR$WORKFLOWS_BACKUP;
        END IF;
        FOR wf IN (
          SELECT
            p.USER_NAME "USER_NAME",
            p.PROJECT_ID "PROJECT_ID",
            p.PROJECT_NAME "PROJECT_NAME",
            p.CREATION_TIME "PJ_CREATION_TIME",
            p.LAST_UPDATED_TIME "PJ_LAST_UPDATED_TIME",
            p.COMMENTS "PJ_COMMENTS",
            x.WORKFLOW_ID "WORKFLOW_ID",
            x.WORKFLOW_NAME "WORKFLOW_NAME",
            xmlserialize(DOCUMENT x.WORKFLOW_DATA as CLOB indent size = 2) "WORKFLOW_DATA",
            x.CHAIN_NAME "CHAIN_NAME",
            x.RUN_MODE "RUN_MODE",
            x.STATUS "STATUS",
            x.CREATION_TIME "WF_CREATION_TIME",
            x.LAST_UPDATED_TIME "WF_LAST_UPDATED_TIME",
            x.COMMENTS "WF_COMMENTS"
          FROM ODMRSYS.ODMR$PROJECTS p, ODMRSYS.ODMR$WORKFLOWS x
          WHERE p.PROJECT_ID = x.PROJECT_ID
        LOOP
          workflow_rec.USER_NAME := wf.USER_NAME;
          workflow_rec.PROJECT_ID := wf.PROJECT_ID;
          workflow_rec.PROJECT_NAME := wf.PROJECT_NAME;
          workflow_rec.PJ_CREATION_TIME := wf.PJ_CREATION_TIME;
          workflow_rec.PJ_LAST_UPDATED_TIME := wf.PJ_LAST_UPDATED_TIME;
          workflow_rec.PJ_COMMENTS := wf.PJ_COMMENTS;
          workflow_rec.WORKFLOW_ID := wf.WORKFLOW_ID;
          workflow_rec.WORKFLOW_NAME := wf.WORKFLOW_NAME;
          workflow_rec.WORKFLOW_DATA := SYS.XMLTYPE(wf.WORKFLOW_DATA);
          workflow_rec.CHAIN_NAME := wf.CHAIN_NAME;
          workflow_rec.RUN_MODE := wf.RUN_MODE;
          workflow_rec.STATUS := wf.STATUS;
          workflow_rec.WF_CREATION_TIME := wf.WF_CREATION_TIME;
          workflow_rec.WF_LAST_UPDATED_TIME := wf.WF_LAST_UPDATED_TIME;
          workflow_rec.BACKUP_TIME := SYSTIMESTAMP;
          workflow_rec.VERSION := ver_num;
          workflow_rec.WF_COMMENTS := wf.WF_COMMENTS;
          BEGIN
            -- Output the ids (proj name, workflow name, proj id, workflow id)
            dbms_output.put_line('Backup workflow: ('||wf.PROJECT_NAME||', '||wf.WORKFLOW_NAME||', '||wf.PROJECT_ID||', '||wf.WORKFLOW_ID||')');
            INSERT INTO ODMRSYS.ODMR$WORKFLOWS_BACKUP VALUES workflow_rec;
            COMMIT;
          EXCEPTION WHEN OTHERS THEN
            dbms_output.put_line('Backup workflow failed: ('||wf.PROJECT_NAME||', '||wf.WORKFLOW_NAME||', '||wf.PROJECT_ID||', '||wf.WORKFLOW_ID||')');
          END;
        END LOOP;
      END IF;
      -- keep the latest 30 versions
      EXECUTE IMMEDIATE 'DELETE FROM ODMRSYS.ODMR$WORKFLOWS_BACKUP WHERE VERSION <= :1' USING (ver_num - &MAX_VERSIONS);
      COMMIT;
    EXCEPTION WHEN OTHERS THEN
      ROLLBACK;
      RAISE_APPLICATION_ERROR(-20000, 'Workflow backup failed. Review install log.');
    END;
    EXECUTE dbms_output.put_line('End Backup Data Miner Workflows. ' || systimestamp);

    823006 wrote:
    5.a. XLS export of big number columns looses precision, for example a number(38) column with all digits used.
    I believe excel only holds 15 digits of precision.
    Edited by: 823006 on Jan 18, 2011 8:14 AMThen it would be nice if you can define the "excel type" of each column. So you can make this number a "string" in the XLS.
    Edited by: user9361780 on Jan 18, 2011 9:12 AM

  • Budget check only after release?

    hi,
    i maintain cost activity  in project and when i save it, it checks against the budget...
    is it possible such that it will check the cost activity only upon release of the activity? in other words, i can save it (even if it has greater amount than budget) as long as it is only CRTD... but when it is REL (released), it will already check against budget.
    note that AVAC is already activated in order to check the other objects in the project...

    Dear Ramesh,
    To my knowledge u can activate availability control on networks, only for Materials by using Network type(TC-OPJK) if u define no check here system doesnu2019t check for availability. Pls check, this might help u.
    If this is not the scenario what u are explaining, please explain me the way u have configured availability check on planned values. This will help all to do better R&D on availability check for planned values.
    Thanks & Regards,
    //sam

  • How to configure evaluations at level task only for released projects?

    Hi,
    Does anyone know how to configure evaluations at level task only for released projects?
    What we need is that the evaluation will be executed only when project has released status. Is that possible?
    Thanks a lot,
    CAMILO URIBE

    Hi CAMILO,
    After the notes 1422722 & 1465106 is a service method  available, which allow the customer to dis-able the evaluation.
    CL_EVE_EXTRACT_FACTORY        SET_ACTIVE
    You can put a codes in some BADI method, which is called during save. Within the Badi-Implementation, call the SET_ACTIVE method, so that the evaluation not be tiggered (until the project get released.)
    KInd regards,
    Zhenbo

  • Trouble with edit and develop after november 2013 release?

    Hi,
    I can not use edit and develop after release November 2013.
    I am a user from Sweden and wonder if it only hit European data center?
    The language has also changed from Swedish to English in the modules.
    I can not access the following in Site Settings:
    Admin users
    Mobile support
    Secure Domain redirect
    Beta features
    Does anyone have the same problem?
    Regards André

    Hi Florin
    There is no errors in the browser. I tested Chrome, Safari, Firefox.
    I sent a video to your colleague Silviu Ghimposanu (Adobe Business Catalyst Support)
    He can give you more information. I submit tickets. Ticketsnr 60092, 60085
    Maybe you can solve this together.
    Regards André
    20 nov 2013 kl. 12.17 skrev Florin Carlig:
    Re: Trouble with edit and develop after november 2013 release?
    created by Florin Carlig in Business Catalyst - View the full discussion
    Hi Andre,
    Can you please record a quick video with the errors you might have in your browser, in the browser's console?
    Here's what I want (a video I did in Chrome): http://screencasteu.worldsecuresystems.com/Florin/2013-11-20_1306.swf
    You can use Jing to record this kind of videos: http://www.techsmith.com/jing.html
    Thanks and regards,
    Florin
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5857868#5857868
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Re: Trouble with edit and develop after november 2013 release?
    To unsubscribe from this thread, please visit the message page at Re: Trouble with edit and develop after november 2013 release?. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Business Catalyst at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Is it possible to display only dynamically selected fields in the out put?

    Is it possible to display only dynamically selected fields in the out put? i need to display set of columns in the selection criteria, but in the output i have display only input given fields. because i need to convert it into .csv file. So i have to display selected fields from internal table. In oracle they are using"execute immediate". is there any equivalent in SAP?
    thanks in advance.

    Hi Remya,
    Are you talking about dynamic programming in ABAP ?
    If yes, there are concepts like RTTS which facilitates it.
    Yes, the select query also supports dynamic selection of fields. ( Please care about ( ) in dynamic sql ).
    Do more research on Field Symbols and statements like ASSIGN COMPONENT OF.
    Regards,
    Philip.

  • I accidentally deleted Garageband on my MacBook Pro, version 10.6.8.  The new version of Garageband is only compatible with 10.9 and above.  Is it possible to still get the older version?  OR, can I get another copy of the startup CD  for my computer

    I accidentally deleted GarageBand on my MacBook Pro, version 10.6.8.  The new version of GarageBand is only compatible with 10.9 and above.  Is it possible to still get the older version?  OR, can I get another copy of the startup CD that came with my computer so that I can reinstall GarageBand?

    The new version of GarageBand is only compatible with 10.9 and above.
    If your Mac can run MacOS X 10.6.8, it probably can be upgraded to Yosemite, if you don't have to stick to Snowleopard for other reasons.
    Is it possible to still get the older version?
    Amazon or eBay are still selling iLife '11 installer disks, and you could reinstall GarageBand from these DVDs. But it will be expensive.
    Have you checked your backups, if you can restore GarageBand from a backup?
    OR, can I get another copy of the startup CD that came with my computer so that I can reinstall GarageBand?
    Sometimes the AppleStore Support will replace missing installer CDs for a fee.

  • Is it possible to update only a part of my apps

    Hi, I would like to upgrade my apps, but my iPad2 writes that I don't have enough memory. Is it possible to upgrade only a part of the apps? In the appstore, you can chose either all of them or nothing.
    Thank you!

    You can update all, or download select App updates one at a time by selecting the app update you want to install.

  • Is it possible to share only a part of contact.

    Hi,
    Is it possible to share only a part of an contact? For example: If you have more nubmers and data for one contact (mostly we do) and would like to send someone only one number and not the rest of contact`s data (personal)? I know that on some other phones this is possible. Thanks for answers.

    You can update all, or download select App updates one at a time by selecting the app update you want to install.

  • My Develop tab (only) is missing in LR4

    My Develop tab (only) is missing in LR4. I can still access it with the shortcut D. Library, Map, Book, Slideshow, etc are all still there. What could I have done? Thank you!!!!

    http://www.lightroomforums.net/showthread.php?19775-Missing-Panels-Modules

  • Is their any possibility to Obfuscate only some classes.

    Hi,
    I tried with jBuilder to obfuscate only some classes as per the help provided by the jbuilder, where it is clearly specifed that it is possible to obfuscate only some classes. But i am not getting that. I tried same as given in the help.
    Let me know, any wrong i did... and is there any other way to do this.
    plz reply me.
    With Regards,
    Rajesh

    Use exclude parameter and check the below link.
    http://www.oracle-base.com/articles/10g/oracle-data-pump-10g.php
    Regards
    Asif Kabir

  • I want to download an album but its only been released in the  US site and im in Australia, how do i get it d

    I want to download an album but its only been released on the  US site and im in Australia, how do i get it

    You can't.
    If you have a US-address credit card, you could use it to set up a new account, but you'll runs into all sorts of other problems.

  • SQL Developer not only reading tnsnames.ora

    Hello,
    I have found a very odd behaviour in SQL Developer 1.2 (running on Windows 2000):
    I have set TNS_ADMIN to point to a directory on a network drive residing on a Linux host. In this directory there were many backup files of tnsnames.ora created over time whose names followed the pattern tnsnames.ora.<timestamp> or tnsnames.bak or something similar. In SQL Developer in the "New database connection" dialog many TNS-entries showed up multiple times in the "Network alias" listbox. Only after removing all those backup files from the directory the behaviour of SQL Developer was correct and every entry only showed up once. I also found out that even when I moved the backup files to a new directory "tnsnames.bak" under the directory which TNS_ADMIN points to the entries showed up multiple times. After I renamed this directory to bak.tnsnames the behaviour was again correct. In my opinion SQL Developer should only read the file called tnsnames.ora and ignore all other files or directories with similar names.
    Kind regards,
    Christof Breker

    Various users reported this before.
    Maybe others use multiple files, but at least there should be the option to read just this one.
    Regards,
    Kristof

Maybe you are looking for

  • Multiple profiles/users on the same device

    Hi there, I know that iOS is a single user environment. But, I am currently working in an enterprise environment and I was wondering if it was possible to have several profiles on the same device, maybe using certificates or so? Thanks for your help

  • User Control Settings in Windows 7

    I want to change the user control settings in Windows 7. I can move the control setting, but when I click OK, the change isn't implemented. It doesn't matter what user account I'm in. Is this a simple fix? Thank you. Dan

  • Missing libxpcom.so

    Hi all, I recently installed a program that needs java and firefox. The help won't work because it can't initialize a browser. I get as error: libxpcom.so: cannot open shared object file: No such file or directory I checked in my system (and also in

  • Help me with photos on ipod

    I have a video ipod and I want to put pictures on it. All I have is itunes. I need help. I don't know how to put pictures onto my ipod. I am sure someone knows.....?

  • Edit image in CS5

    I have just upgraded to Lightroom 4.3 and now find I cannot edit images in Photoshop CS5. Shortcut does not work nor going to - edit in photoshop. Photoshop seem to not be linking as it is not highlighted when I click on it. I've tried reinstalling 4