Extension is not showing up

I'm trying to get my extension to show up in Photoshop CS 5.1 on Mac and I haven't been able to do it. I've followed the instructions in Using the Adobe Creative Suite 6 SDK.
I've set the PlayerDebugMode to 1 in preferences:
Macintosh HD/Users/me/Library/Preferences/com.adobe.CSXS.2.5.plist
I copied the extension to:
/Library/Application Support/Adobe/CS5.5ServiceManager/extensions/
Can anyone see the the problem? I've included the manifest.xml I'm using: 
<?xml version="1.0" encoding="UTF-8"?>
<ExtensionManifest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                    Version="3.0"
                    ExtensionBundleId="com.mycompany.extensions"
                    ExtensionBundleVersion="1.0.0"
                    ExtensionBundleName="ExtensionTest">
    <ExtensionList>
        <Extension Id="com.mycompany.extensions.extensionTest" Version="1.0" />
    </ExtensionList>
    <ExecutionEnvironment>
        <HostList>
            <Host Name="AICY" Version="8" />
            <Host Name="DRWV" Version="12" />
            <Host Name="FLPR" Version="12" />
            <Host Name="FWKS" Version="12" />
            <Host Name="IDSN" Version="8" />
            <Host Name="ILST" Version="16" />
            <Host Name="PHSP" Version="12" />
            <Host Name="PHXS" Version="12" />
            <Host Name="PPRO" Version="6" />
        </HostList>
        <LocaleList>
            <Locale Code="All" />
        </LocaleList>
        <RequiredRuntimeList>
            <RequiredRuntime Name="CSXS" Version="2.0" />
        </RequiredRuntimeList>
    </ExecutionEnvironment>
    <DispatchInfoList>
        <Extension Id="com.mycompany.extensions.extensionTest">
            <DispatchInfo >
                <Resources>
                    <SwfPath>./main.swf</SwfPath>
                    <ScriptPath>./jsx/HelloCreativeSuite.jsx</ScriptPath>
                </Resources>
                <Lifecycle>
                    <AutoVisible>true</AutoVisible>
                </Lifecycle>
                <UI>
                    <Type>Panel</Type>
                    <Menu>Extension Test</Menu>
                    <Geometry>
                        <Size>
                            <Height>200</Height>
                            <Width>200</Width>
                        </Size>
                    </Geometry>
                </UI>
            </DispatchInfo>
        </Extension>
    </DispatchInfoList>
</ExtensionManifest>

Hi,
you might be better asking here: Creative Suite Extension Builder
This is the forum for Extension Builder 3, which is for HTML Panels, while you're dealing with CS5 - supporting Flash panels.
Regards,
Davide Barranca
www.davidebarranca.com
www.cs-extensions.com

Similar Messages

  • My extensions are not showing up

    I have installed quite a few extensions, but some of them are not showing up.
    The extensions showing up are as follows:
    Pearl
    amplify
    Not showing up:
    Google application mail watcher
    Shareaholic
    similar web

    Dear Sherri
    Please could you let us know which version of Photoshop you are using and whether the extensions menu is now greyed out? If you used Adobe add-ons to download your products, it will be easy to reinstall them directly from the 'My Add-ons' link on the left-hand side of the add-ons website: creative.adobe.com/addons.
    If, however, you are a CS6 user and use Adobe Exchange to obtain products for Photoshop, the 'My Stuff' section of the panel, as well as Extension Manager, will give you an indication of what should and shouldn't be currently installed in your copy of Photoshop.
    Kind regards
    Krystal
    -Adobe Exchange / Addons team

  • Adobe Watercolour Assistant Extension does not show up; what do I do?

    I have the Adobe Watercolour Assistant extension showing as installed in Extension Manager CC.  However, it does not show up in my Photoshop CC Extensions.  I have quit and restarted PS CC several times.  And I have restarted my computer.  Nothing works.  I am running Mac OS X 10.8.4.  Any suggestions?

    [Moved the discussion to Photoshop Forum]

  • Extension list not showing in 16.0.2

    After upgrading to v16.0.2 my list of installed extensions is empty even though most (probably all) are still working, so I cannot manage them.

    hello bagar, this sounds like the files in your [[Profiles|profile folder]] that store the information about your extensions might have become corrupted. please g to firefox > help > troubleshooting information > profile - show folder... then windows explorer should open up your profile folder. in there look for the files named extensions.ini, extensions.sqlite, extensions.sqlite-journal (and in some cases also extensions.txt, extensions.rdf). delete or rename those files and quit firefox, they will be regenerated the next time you launch firefox.
    als see [https://support.mozilla.org/en-US/kb/Unable%20to%20install%20add-ons#w_corrupt-extension-files]

  • PS CC 2014 extensions do not show

    I have updated Extension Manager. I have reloaded extensions with most current (Russell Browns Paper Textures, Flypaper textures). I have checked my settings. The only extension that will who in the Extension panel (Window>Extensions) is Kuler. How can I get the others to show?

    Please read the top few pages of the forum - there have been big changes in Extension support with Photoshop CC (2014).
    Also this:  2014 release of Photoshop CC: FAQ
    -Noel

  • Extension data not showing in order.jsp & order_change.jsp

    Hi Experts,
    My requirement is to display the gross weight of the order in Order.jsp,Order_change.jsp. I have implemented the BADI CRM_ISA_BASKET_HEAD and method GETHEAD_GET_DATA to get the gross weight.
    In the BADI I am using CRM_ORDER_READ to get the value gross weight of the order.
    Here is the code to get the extension data in Order.jsp
    <input class="textInput" 
                type="text"
                name="ZGRWT"
                value="<%= JspUtil.encodeHtml(ui.header.getExtensionData("ZGRWT")) %>"/>
    Not sure after doing this both order.jsp & order_change.jsp simply not displying any thing in the page.
    To get the extension data should I write any custom action? Not sure about the issue.

    Hello sirivaram!
    I think you should use custom action.
    You can do it like this:
    1) create custom action class extended BaseAction
    2) in this class you should pass values from ExtensionData to request.
    3) use request attributes instead extensionData() on the jsp page
    4) do not forget register your action before standart ShowBasketAction in config.xml
    My last message Re: Display String Variable on ISA JSP page, that gets value from Z java class. can help you with points 2 and 3.
    For point 4 you have to replace this code in file config.xml:
    <action path="/b2b/showbasket" type="com.sap.isa.isacore.action.order.ShowBasketAction">
    <forward name="showbasket" path="/b2b/order.jsp"/>
    </action>
    with this code:
    <action path="/b2b/showbasket" type="foo.bar.Z_ShowBasketAction">
    <forward name="success" path="/b2b/z_showbasket.do"/>
    </action>
    <action path="/b2b/z_showbasket" type="ru.sng.isa.isacore.action.order.Z_ExtShowBasketAction">
    <forward name="showbasket" path="/b2b/order.jsp"/>
    </action>
    About your issue - I suppose that ui.header can't have to access to ExtensionData or ui.header.getExtensionData("ZGRWT") return null. Anyway you will be able to debug your application and check value of ExtensionData only if you will take your own action.
    Hope this helps.
    Regards, Lev

  • Extensions are not showing in status bar

    I have successfully installed various extensions to Firefox v3.6.8, but none are showing in my status bar. Please help!

    Can you give us details of the extensions that you are having problems with?
    Quite a few extensions that can display an icon in the status bar have a setting in its options/preferences dialog to display the icon. Check the extensions to see if this is the case with them.
    Are the extensions listed in the add-ons manager, and if they are do they have any error messages next to their name?
    Another thing you can try is the section on corrupt extension files at http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    Removing the files listed can solve some extension related problems.

  • Extensions will not show in add-ons manager; Firefox start-up Java error

    When I click Tools --> Add-ons, the Add-ons Manager opens but no Extensions show in the Extensions tab.
    I think the problem is related to a start-up error message I receive. Every time I open Firefox, an error message labeled "[JavaScript Application]" opens and displays the following:
    aObj is undefined -- chooseValue((void 0),"name")@resource:///modules/XPIProvider.jsm:7032
    ()@resource:///modules/XPIProvider.jsm:7142
    ([object Object])@resource://yoono/yoonoLog.js:95
    ([object Object])@resource://yoono/yoonoLog.js:49
    ()@chrome://yoono/content/yoonoOverlay.js:176
    ()@chrome://yoono/content/yoonoOverlay.js:88
    ([object Array])@resource://yoono/yoonoService.js:949
    safeCall((function (aAddonList) {try {for (var i = 0; i < aAddonList.length; i++) {_self.addOns[aAddonList[i].id] = aAddonList[i];if (YOONO_ID == aAddonList[i].id) {_self.setExtensionVersion(aAddonList[i].version);}}} catch (e) {CONSOLESERVICE.logStringMessage(e);}aCallBack();}),[object Array])@resource://gre/modules/AddonManager.jsm:50
    ([object Object])@resource://gre/modules/AddonManager.jsm:964
    AOC_callNext()@resource://gre/modules/AddonManager.jsm:120
    ([object Array])@resource://gre/modules/AddonManager.jsm:959
    PL_getAddonsByTypes(null,(function (aProviderAddons) {"use strict";addons = addons.concat(aProviderAddons);aCaller.callNext();}))@resource:///modules/PluginProvider.jsm:110
    callProvider([object Object],"getAddonsByTypes",null,null,(function (aProviderAddons) {"use strict";addons = addons.concat(aProviderAddons);aCaller.callNext();}))@resource://gre/modules/AddonManager.jsm:78
    ([object Object],[object Object])@resource://gre/modules/AddonManager.jsm:957
    AOC_callNext()@resource://gre/modules/AddonManager.jsm:126
    ([object Array])@resource://gre/modules/AddonManager.jsm:959
    ([object Array])@resource:///modules/XPIProvider.jsm:3094
    completeAddon([object Object])@resource:///modules/XPIProvider.jsm:3895
    getAddon([object Object])@resource://gre/modules/AddonRepository.jsm:504
    ("[email protected]",completeAddon)@resource://gre/modules/AddonRepository.jsm:536
    ([object Object])@resource:///modules/XPIProvider.jsm:3899
    ((function (aAddon) {"use strict";
    function completeAddon(aRepositoryAddon) {aAddon._repositoryAddon = aRepositoryAddon;self.addons.push(aAddon);if (self.complete && self.addons.length == self.count) {self.callback(self.addons);}}
    if ("getCachedAddonByID" in AddonRepository) {AddonRepository.getCachedAddonByID(aAddon.id, completeAddon);} else {completeAddon(null);}}),0,[object Array])@resource:///modules/XPIProvider.jsm:4796
    (0)@resource:///modules/XPIProvider.jsm:4795
    Any and all help would be much appreciated.
    -Jason

    The error means that an add-on called yoono is having problems communicating with a component made by Microsoft. I spoke to somebody with experience in working with the firefox coding, and he said that they're likely to be different issued and to see if yoono or another extension is causing the problems by opening firefox in safe mode. To open firefox in safe mode, [[Safe Mode|click here]]. If you can get to the addon manager there, I recommend you get rid of yoono

  • Extension is not showing up data after extending necessary VO in SSHR

    Hi,
    I have created the extension on exisiting VO using the Jdeveloper guidelines and placed it on the appropriate location in the app-tier. I have migrated the substitutions in to the database. After bouncing the apache, I am not getting the data for the newly added field. But, About Page is displaying my new VO with the standard VOs.
    Do I need to do anything else? Please help.
    Thanks
    Ram

    Is your problem solved?
    Did you add items as per the personalization guidelines in (Jdev v 9.0.3) Extending OA Framework Applications Step 2.8 Personalize the UI to Display Your New Attribute?

  • Why does an installed extension not show up in my PS CC Extensions?

    The Adobe Watercolour Assistant extension show up in my Extension Manager CC as being installed for Photoshop CC.  However the extension does not show up in my Extensions in Photoshop CC.  And it does not appear anywhere in my Adobe Exchange Panel.  When I do a search inside of Adobe Exchange, I get the message, "No products found."  What's going on, and how do I get the extension to show up inside of Photoshop?

    Sounds like some of the templates provided by apple.  Google lorem ipsum for info on the filler text used.

  • Extensions not showing up in dwcs4 after installing successfully

    I have dwcs4 & extension mgr. I have installed extensions in extension mgr. successfully according to it but when I go back into dwcs4 they do not appear under the tcn widgets tool bar. dwcs4 does appear in my extension mgr. & is highlighted in blue when I click on an extension to install it. I have noticed that the extensions do not show their individual icons next to their names but the puzzle piece instead even after I install them & get the "installed successfully" confirmation. I also notice that if I try to install them again they are still in the "c:\users\myname\documents\downloads file which I would think they should be some place else. document download.  Can someone tell me how to manually place the extensions into dwcs4 so that they appear in the tcn widgets tool bar?

    Hi
    I have the exact same problem.
    Adobe Extension Manager indicates that the extension is properly installed. But when I open Dreamweaver I cannot find the extension.
    Is there perhaps a way to install the extension manually?
    Downloaded and installed extension: D-Form_Joomla15
    Extension Mng CS4 version: 2.0.274
    Dreamweaver CS4 version: 10.0 Build 4117
    Plz. advise

  • Extensions not showing under window pull down manu

    I can see extensions in photoshop cc 2014, but extensions is not showing up in Illustrator cc 2014.

    Apologies for the incompleted information.
    OS version: Yosemite 10.10.2
    Today I fired up the illustrator CC 2014 after 2 weeks didn't touch it, I can see the extension. Do not know why it is working now. I will do some more test on the extension.
    Thank you.

  • Click to Call not showing in Chrome Extensions

    Hi Guys
    I have downloaded and installed skype but the extension is not showing in chrome.
    I uninstalled and reinstalled and still not working.
    I have windows 8.1 but am not using the metro tiles, just skype for desktop.
    James
    JAMES MATHERS
    LICENCED PARTNER OPERATIONS MANAGER
    P 02 8003 4797
    M 0401 641 707
    F 02 9012 0109
    Skype AVECPartners
    www.avecpartners.com.au

    I have the same problem.
    I installed the Skype - Click to call Plug in several times on my Macbrook Pro w OSX 10.9.5
    and I can't find the extension in chrome to enable it.
    Have any solutions been discovered for this problem?

  • Enable Extensions not Showing up in Delop Menu

    I have upgraded to Safari and checked "Show develop menu in menu bar". "Enable extensions" does not show in Develop menu.
    I have searched and tried many suggestions but no luck.
    Does anyone have an answer?
    Thank you in advance,
    Bill

    plmorgan05 wrote:
    Very frustrating.  Can't install AdBlock because the extension is disabled.  Told to click on "enable extensions" but it doesn't appear in the "develop" menu.  Where do I go from here?  Unwanted ads appearing in my emails (received) causing trouble when trying to print the email.
    Very frustrating that you cannot read or comprehend instructions. Read above again to answer your question. It's no longer located in the "develop" menu.

  • Flash cc extensions not showing

    Hello,
    I have installed my extension .zxp file on flash cc 2014 using extension manager. But the problem is that the extension should be appearing here what could be the reason why the extension is not showing some items?
    Screenshot:
    Thanks,
    Rovs

    What extension? Not every extension adds a separate panel and thus an entry to the menu.
    Mylenium

Maybe you are looking for

  • Quantum Gateway Router - Local DNS not working

    I just installed the Quantum Gateway Router, and I can't seem to get local DNS (i.e. user defined DNS entries) to work correctly.   I'm able to make user-defined entries under Advanced->DNS Server, but the when I attempt to ping the entries, from any

  • Display selected parameter in portal report?

    How can one display the parameters, selected in the parameter form on the report?

  • A/R Custemer Master

    A/R Experts, Can I create a bill to and related to a ship to in customer master for A/R. Or do I need SD for this? but at teh same time  I may want to create invoices for only ship to cusmers, and in dome cases for bill to customers as well how can I

  • Vbscript - detecting configuration changes

    Hi, not sure if this is the right community to post this kind of question but i am after some example of vbscripts to detect routing change for example like to know when someone add a new route entry, advertised in to our campus networks, would like

  • Document Split on Non Leading Ledger

    Hi Friends, Can we activate document split on Non leading Ledgers also? Actually my client wants to maintain Leading ledger as per US GAAP and Non leading ledgers as per Schedule VI So there is a requirement of activating document split on the non le