Join our global community of Adobe Exchange developers.
Recently active
Hi there,I am trying to follow the steps described on this page: http://blogs.adobe.com/cssdk/2014/06/adobe-extension-builder-and-creative-cloud-2014.htmlBut at Step 2 I have to do following, but that folder doesn't exist on my Mac, but I do have Photoshop CC 2014 installed. Change Service Manager Root Folder to: Mac: /Library/Application Support/Adobe/CEP What should I do?Thanks a lot!
I am getting unfair reviews, not related to my extensions, but to some adobe exchange platform/marketplace disfunctionalities. Customers are complaing about not being able to cancel the subscriptions. (https://exchange.adobe.com/apps/cc/106188). First of all: This is ridiculous! Why am I responsible for the exchange platform issues? There is nothing I can do...Secondly: Is anybody moderating these reviews? Because my sales are seriously affected & the customers are waiting for a solution.The Adobe Support Team is not giving me a straight answer...
Hello, I have been using the CEP engine for a little over a year now to create Premiere Pro extensions. Since the beginning, I have noticed something strange : the longer you use an extension, the slower Premiere Pro (and the extension) gets. To circumvent this issue, what would you recommend? I tried using both CEP 6.0 and 11.0, both have the issue. Is there a way to """reset""" the performance? I already tried to force the garbage collection, but it did not improve things. Also, if I need to call a script function multiple times in a for loop (for example 1000x) to delete clips in Premiere Pro. Should call 1000x the script function from the front-end (JS), or should I call only once with all the information needed to process the for-loop directly inside the JSX? And finally, instead of calling a JSX function every 500ms that takes ~10ms to complete from the JS, would you recommend using the event system? If there are missing information in my post,
When I want to go to the plugin section of the stock and marketplace in CC Desktop it says I have no internet connetion. Although the internet connection is up. No problems with other apps using internet. Spoke to Adobe support and they say it's an issue on their site. Sometimes it works, sometimes it won't. Workaround is to go to the webversion of CC, but i like using the desktop version. Is there any Adbobe site where I can view the actual status of issues that are going on? Photoshop Beta; generative fill is not working because of connection problems. If there is such a site please let me know so I could check it once in a while. Kind regards. John
I am trying to make an extension for after effects and premiere pro, however I want to use react for frontend, how can I setup the project? How to link manifest and how to run csinferace from react side?
I'm trying to use the result of a call to the host application(After Effects), using CSInterface.evalScript, to modify the html:var result = 'No result';new CSInterface().evalScript('KT.getLayerNames("myComp")', function(res){ result = res; alert(res);})alert(result)The first alert throws the correct result, but the second keeps throwing 'No result'. I am confused, since normally this way of taking the results within a callback function works in javascript. I am missing something? Wich is the correct way to have the results available outside of the callback?
I'm new to topcoat and the markup used, and am trying to test the scope of a button and checkbox relationship I have in my extension. Since it's split into a few files, and I have to reload photoshop every time I want to test a script change, I'm having difficulty finding out exactly where it's occurring. Calling a function through hostscript.jsx that throws "alert(guideCheck.checked)" from a function will tell me the state of my checkbox, but without all the jQuery. Trying to utilize topcoat, I had the below script that I'm trying to figure out. My problem being, since there are multiple files that interact differently, I'm not sure if I'm simply having a scope issue, or if I can even call upon the checkbox variable used reliably. I tried to boil down my script to simply alert me, but I can't get photoshop to respond to tell me what "$(this)" is with files opened or closed. Any guidance would be much appreciated. This is from index.html that renders the form:<body class="hostElt"&g
I have individually developed Tree Shade over a decade and still developing it. It's free and open-source. It's now exist on Adobe Exchange website under Creative Cloud page.Tree Shade | Adobe ExchangeAlso the software is sufisticated and achieves many tasks and has many features but the using rate is very low because there is no feedback or reviews at all. And according to the statistics in the dashborad. I want community support, interaction and involving... so I think in creating GitHub repository. Is there any instructions or advices for that. What files to upload. I'm concerned about security issues, so no one use Tree Shade to attack the privacy of others. So is there Adobe tools for developers team?Thanks in Advance
Hi Today on my M1 the CreativeCloud was updated to Version 5.10.0.573When running in the command line: "/Library/Application Support/Adobe/Adobe Desktop Common/RemoteComponents/UPI/UnifiedPluginInstallerAgent/UnifiedPluginInstallerAgent.app/Contents/MacOS/UnifiedPluginInstallerAgent" --list all I got the following output Enabled [PluginName] 1.4.2 On my x86-Mac with CC-Version 5.9.0.373, I get the following output:Enabled [PluginName] 1.4.2.294 This means, that in the newer Version of CC the last Numbers of the Versions have disappeared.But this number is important, because it used to check whether a newer Version of the Plugin is available (I'm having a C++-Plugin and use UXP for the UI)Please bring the full version-number back.And, it would be nice if the version-Number of a Plugin can be shown also in the UI of Creative Cloud
Hi,I want to upload file and download files from server with adobe cep indesign extension.. i have done by using nodejs..nodejs request.get() and request.post() works fine in indesign 2017 and above..but in indesign cc 2015 returns "socket hang up" error..how to fix it?and any other configuration for use nodejs in indesign cc2015this is my sample code,var FormData = require('form-data');var request = require('request');options = { url:uploadUrl, formData: formData, headers:headers,strictSSL: false,rejectUnauthorized: false, } request.post(options, function(err, httpResponse, body) { if (err) { showDlg('Upload failed'); } else { &nbs
I have a plugin built in CEP 9 that has stopped working with 18.2.1.The plugin no longer loads at all and I'm struggling to get a development version up and running to debug it.The VS Code Debugger is new since I last touched CEP and I'm not sure that I'm configuring it correctly.I have created a launch.json file and configured a compound launch request as below: "version": "0.2.0", "configurations": [ { "type": "chrome", "request": "attach", "name": "[Attach] CEP JavaScript", "port": 8090, // <-- Whatever debug port you have configured. "webRoot": "${workspaceRoot}/index.html", "pathMapping": { "/": "${workspaceRoot}/js/main.js" } }, { "type": "extendscript-debug", "request": "attach", "name": "[Attach] CEP ExtendScript", "hostAppSpecifier": "indesign-18" } ], "compounds": [ { "name": "[Compound] Debug CEP", "configurations": [ "[Attach] CEP JavaScript",
I'm in the middle of a really weird problem. So my panel has some really standard forms. One for entering credentials and another for file upload. For whatever reason the cookies are only set when I use the forms without event listeners. Here's an example: <form action="http://localhost:3000/login" method="POST" id="loginForm"> <div> <label for="email">Email</label> <input type="email" id="email" name="email" required> </div> <div> <label for="password">Password</label> <input type="password" id="password" name="password" required> </div> <a href="/forgotPassword">Forgot Password?</a> <button type="submit">Login</button> </form> When I submit form data that way I get a cookie assigned just fine. However when I submit data vi
Hi, I am looking at using Adobe Exchange (I have written some Actions for Photoshop) but I have some concerns. If I upload my Actions for free distribution, do I get any feedback on the number of viewings or downloads for my offering? It is nice to offer the world something good for free, but just putting it out there is a bit of an empty experience unless one can see some measure of feedback. Currently on the download page on my own website I can monitor the number of hits. A second issue is that I have published a Medium article describing my Actions and I also have received a ‘rave review’ from Petapixel.com but I cannot readily see how I could provide links to these in my listing for would-be users to decide whether to download or not. I could perhaps produce a ‘YouTube’ PowerPoint type video and give a link to that on Exchange and then put any links under the YouTube video but I wish to do things above board and to give any links directl
Hello, I am trying to enter https://exchange.adobe.comIt doesn't load any content.According to Chrome console and network, some files are not working.After removing all cashe and cookies, the page is still not working.I am not sure what is the problem.Please share your thoughts.
Hello all, Im creating CI/CD pipeline for build the CEP panel and then do the deployment. But Im facing error like,to run zxpsigncmd with docker image. Could any one help to resolve this issue?
I checked for it in Exchage and in Creative Cloud app in Stock and Market Place.Definitively it is not here.Pluggin: MindSpell P ro
Hi, I have CEP panel to perform validations, export files with different high res setting cause some time photoshop hanging or taking time to do validations and exports. Is it possible to add multi threads/ cluster options(NodeJS) to increase the performance of CEP panel?
I downloaded ExtendScript Debugger in vscode's plugin store,I want to find the code related to esdebugWhat I understand now is that the core content is a .node file I learned that this .node file can directly interact with photoshopBut the project content in this plugin folder seems to be missing a part I can't find this src directory so that I now have no way to get all the type declarations to use this .node fileCan someone tell me the download address of this file, or the relevant development experience of this .node file?
Hello Everyone,is there any support avilable for transition from CEP panel to UXP(Photoshop), The CEP panel performing multitask operations like api calls, some validations and so on. It was developed with React, node and typescript.Now I want transist entire cep panel to UXP, I know its huge but if anyone done or doing this please share your valuable thoughts...
Hi there, I have bought a Texture Pack in Adobe Exchange and don`t understand how to downlaod it. There is a option to install that I did, but it is deffinitly not a plugin, so I don´t know what I´m installed and I can´t find any download option. It is the 25 Seamless concrete Wall Texture Pack from Graphic Spirit. Thanks for every tip
Hey, I wrote a CEP Extension that exports the same sequence multiple times in different formats using the Sequence.exportAsMediaDirect() method.Approximately one in three times Premiere crashes after one of the exports is done (Always random which one). It does this after the "Encoding Sequence"-Window closes and the respective export is done - the output file is also intact. But the next iteration of the loop doesn't start, and if you click anywhere, Premiere is not responding. This made me suspect some IO issue, but even adding a sleep of 5 seconds between exports doesn't help. I want to avoid using AME as it handles nested framerates differently, takes time to start up, has to be up to date etc. How would I debug this? The CEP logs don't show any issues.
Hello,I am wondering how to delete a folder (with files in it, if possible) via the window.cep.fs object?Using deleteFile gives the error "8" ERR_NOT_FILE, and if I try deleteFileOrDirectory(), it says that's not a function.
Hi, coders and Adobe members. Hi, looking at this thread: https://community.adobe.com/t5/photoshop-ecosystem-discussions/duplicate-one-layer-to-multiple-documents-images/m-p/11045121#M321918 , I see a trend that some users might share: trusting scripts. The OP is unsure about installing a script one could find online. I think that there are other issues: finding scripts, and understanding what they do, how to use them... I really think that scripting is too scattered: There are scripts in this very forums, on private sites, on github, aescripts, etc. IMHO, there should be an Adobe repository of scripts and scriptlets that would be checked against malware, and organized, maybe integrated to the exchange? I know that it is a titanesque task, but it could be a huge benefit for the entire community. I know that ID has a panel with scritps from the community, and it should point to other scripts that users could download. (I'm asking here, as most coders integrate scripts in t
I posted an extension on Adobe Exchange.I think I sold some of these products because of the reviews I received.How can I transfer these profits to my bank account?Is FastSpring involved in this process?Also, if there is a page where I can see detailed information about how many items were sold and when they were sold, please let me know.
Hi, On Os X, when starting a debug session using Vs Code and the ExtendScript Debugger, it can take up to a minute before the script is started. On Windows this is much faster. Is this something which can be fixed? I'm using the latest version of Os X on a MacBook Pro 2019. Thank you.
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.