Join our global community of Adobe Exchange developers.
Recently active
I created a panel for Photoshop CS6, but Configurator says it cannot be exported to the Photoshop 64 bit plugin/panels folder. No indication about what the problem might be. I followed the instructions in the Configurator guide. I have a dozen command buttons in the panel and the panel size is 220 X 220. Running Windows 7 Ultimate, 64 bit. Anyone have an idea about what I'm doing wrong?
Have you built plugins or extensions for Creative Cloud using CEP? Be sure to test out your product(s) in prereleases that include CEP 10. Read the release notes in this article on the Adobe Tech Blog. CEP 10 is already in the public beta builds or Premiere Pro and After Effects available in the Creative Cloud Desktop App. Feel free to leave feedback in this thread, or in the dedicated Premiere Pro beta and After Effects beta forums. CEP 10 is scheduled to be included in InDesign and Photoshop the week of July 23rd, and in Illustrator on July 28th Find out how to join different prereleases in this blog article.
Hello every body!I want to share my idea of images Drag and Drop realisation without C++ plugin.Git:GitHub - KupinFB/Adobe-HTML-Extension-Drag-and-Drop: Adobe HTML Extension - Drag and Drop example How you can drag something (example):In Illustrator we can drag only text from an HTML Panel to AI Documents. For it we have to add attribute draggable="true" to our html tag.And after it, we will be able to drag our html tag to active document.Html:<div class="color" style="background-color:#55AAFF" draggable="true"></div>We can set the text for dragging.For it we have to add an event listener - ondragstart="onColorDragStart(event)"ondragstart="onColorDragStart(event)"Html:<div class="color" style="background-color:#55AAFF" draggable="true" ondragstart="onColorDragStart(event)"></div>JS:function onColorDragStart(event) { event.dataTransfer.setData("text/plain", '{color:4000001}'); return true; }After that, i we drag our HTML tag to the active docume
Hi!I'm trying to develop an illustrator extension. I prepared the panel and I think I understood how to make the panel interact with the jsx etc.I have a question though.My extension is used to generate / draw figures (simplify)Once some data have been set, the OK is given and the figure is generated.Is there any way to get a PREVIEW of the figure while changing the parameters?That is, until confirmation is given, it is possible to continue modifying the figure and its parametersThank you
CEP version 10 is now available in prerelease. Read more about it on the Adobe Tech Blog: https://medium.com/adobetech/summer-cep-update-cep-10-is-coming-in-august-bcc30d22c38f?source=friends_link&sk=4e583a56281c1df781cc1c4562fa008d Feel free to leave feedback here.
Hi,We are developing a Document management system with cloud storage service. Our users need to access and use Acrobat DC for the documents stored on the web-app for tasks like editing, adding bookmarks etc., and then save the documents back into the web-app. We need to integrate our web-app as a 'Location' on Acrobat. How can this be done? Thanks,Spriha
When installing zxp file with ExMan command-line tool using sudo, the contents of CEP Extension panel are not shown. I downloaded the ExMan command-line tool introduced at this link.https://helpx.adobe.com/creative-cloud/kb/installingextensionsandaddons.html ExMan command-line toolhttp://www.adobe.com/go/ExManCmdMac My Environment:Illustrator 24.2.1(localized JP) and 24.1.3 (localized JP)macOS 10.14.6 Steps to Reproduce Malfunction:1. sudo ./Contents/MacOS/ExManCmd --install <myExtension.zxp>2. launch Illustrator.3. click Menu ( Window > Extension > <myExtension name> ).Results:The panel itself is shown, but the contents of the panel are not shown. Expected Results:Please fix so that the contents of the CEP panel will be displayed when the zxp file is installed with ExMan command-line tool using sudo.If you run into permission issues, we need to use sudo. --- I suspect there is a permissions issue with the extension folder.My Test:1.
Hi, Beginner question (!), but I can't find a simple answer anywhere. Sorry if someone answered this already or if it's in documentation. I'm creating listings to distribute Photoshop scripts (JSX files) on the Adobe Exchange. The scripts should go in the Presets>Scripts folder. I want installation to be as automatic as possible, rather than tell users to copy anything manually. Is this possible? Can this be arranged with Extension Manager? Does Adobe Extensions review staff do this when the ZXP is processed? Thank you all
Hello!I started developing .jsx and CEP Panels recently, I used ESTK to debug .jsx but I saw that it's possible to use VS Code for that too. I followed some tutorials here in the exchange that said to install the extendscript debugger extension, uninstall ESTK, etc etc. but that didn't work at all for me, vs code can't debug the program I run ( in this case its Premiere Pro 14.3, vs code version is 1.46.1 )It's still posible to debug with vs code? or not anymore?Thanks for the help!edit: I use windows 10 Home
This month we’re asking for your feedback. Please respond to the question below to share your thoughts with us. After selecting a number you will be taken to the browser to complete and submit the response. You will also have the option to share additional details with our team. Your feedback helps us serve you better. Thank you for taking a moment to respond and for building on Creative Cloud! How likely are you to recommend the Creative Cloud Developer Platform to a friend or colleague? 0= "Not likely" and 10= "Very likely" [0] [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] Take the Survey >>
Hello, apologies if this is irrelavant to this forum, but I'm unsure where to post this question, hence asking here. I would like to make available some illustrations to my colleagues at work, and make an image repository of some sort that enables anyone in my company to search and choose an image and download it. This could be any format - illustrator (eps, ai etc), or jpegs, tiffs, PDFs etc. Is there a way we can do this using the Adobe software please? Would Lightroom allow such a task?
Hello there!VSCode 1.33 came out this week, and caused some problems with the ExtendScript Debugger plugin. Just in time, we have released version 1.0.1 of the plugin.This is the stable Windows releaseOther stability issues (cross-platform) have been addressedCompatible with VSCode 1.33Here are some more notes, quoted from the Adobe Tech Blog:ChangelogNew features:Added support for continuing execution after clearing a runtime error. By default, a “Clear Runtime Error” dialog will be shown. If you don’t want to see the dialog every time, you can set the default behavior using the clearRuntimeError launch configuration. Set true to always continue execution, false otherwise.Now shows a “Save file” picker for Export to JSXBIN.Fixes:Fixed issues when running in Visual Studio Code 1.33.0. For example, scripts in earlier versions may have run only once for certain configurations.Fixed the case where ExtendScript Toolkit opened when $.writeln was used more than 500 times in a loop.Fixed a ra
Hi,I need to detect smart objects linked to local files in specific locations from javascript in HTML5 extension. How can I do this?Consider this pseudocode: if (app.documents.length) { var doc = app.activeDocument; for (var ilayer = 0; ilayer < doc.artLayers.length; ilayer++) { var layer = doc.artLayers[ilayer]; if (LAYER_IS_LINKED_SMART_OBJECT(layer)) { var localFilePath = GET_SMART_OBJECT_REFERENCED_FILEPATH(layer); } } } Here I need implementations of two functions:1. LAYER_IS_LINKED_SMART_OBJECT()2. GET_SMART_OBJECT_REFERENCED_FILEPATH()Thank you in advance!
My name is Alfred Harper and I am running my own website. I wonder how I can recreate some images on Karcher K5 Premium webpage using Adobe instruments. Can someone look and give me a good decision.
I was wondering if I wanted to include short meme clips in a library extension, would there be any issues with copyright? Because thousands of people re-use these clips in their youtube videos, and on other platforms so I just wanted to clarify if Adobe would still allow me to create this extension These are some examples of the clips i would like to include https://www.youtube.com/watch?v=dpYsFFVcJ9Y
I have three extensions in adobe exchange marketplace and all three have been copied into built in features and I feel cheated. I am not an adobe competitor and I felt like I was adding value to their products, but now I feel I've been taken advantage of. With so many feature requests that go ignored, I found it suspicious that all three of my extensions happen to be added in a short period of time when they were features not even requested by the community. furthermore, why shoud any of us continue to develop for adobe with no protection? I feel they see community built extensions as proof of concept before they work on similar features inhouse. When my first extension was copied I was like "okay", but then two more got copied in the same update! One is a paid extension in which not only did I put a lot of work into, but I've spent a lot of time providing support to my users in areas I have no control over like creative cloud installation issues. Adobe is a v
Hi, The Adobe Support Community had some updates and it seems some old threads were deleted after the update. A couple of months ago I found a useful thread troubleshooting some build issues of XMP toolkit, but it was deleted.A stackoverflow answer has the link to the thread: https://stackoverflow.com/questions/52879637/whats-the-easiest-way-to-build-adobes-xmp-toolkit-as-a-shared-library-with-cma My question is simple: Is the old thread accessible? Where can I post issues about the XMP toolkits or DNG SDK? Currently there is some issue with the build on Andorid and iOS in our products under development.
Hello, I recently installed the in5 plugin in InDesign 2020, but the problem is that it tells me that I need to purchase an additional license in order to use it. But in the adobe exchange, it says this plugin is FREE.
I have written an extension based on the idea of using Photoshop to edit textures live on a 3D model.In my extension I open a Collada model using the three.js framework.i can take the document in focus, save a merged copy and load it as a texture on the model.When using Canvas renderer this works every time, although ofcourse rendering is painfully slow.Using the WebGL renderer the extension sometimes works, and sometimes crashes when updating the texture. I have tried every method possible in three,js, (changing texture, creating new material, updating map explicitly, etc, etc)with the same result. All ways work in Canvas, and only occasionally in WebGL.It is incredibly hard to debug, as the javascript debugger dies along with the extension window,Any help, suggestions very gratefully accepted Cheers!
This year I moved to a new country.In order to update my payment method adobe made me create a new account.Lost access to 'animator's toolbar pro' which I purchased in 2018.After chatting with support they said I should buy it again then they will refund me.So I did.Now they are not refunding me. What can I do?
MacOS: 10.13.4 (High Sierra)Running any command with ExManCmd returns: Abort trap: 6 No further information is available, even in system log.Tried with even the latest ExManCmd (7.8.0.15). Would appreciate some help.
Hi just purchased and "Exchange Product" a filter and it didn't download - Help
I have been using Adobe Extension Builder 3 to create some test panels and now I want to trash them, but Adobe seems to have hidden them. I have tried: Users/[user name]/Library/Preferences folder, but they are not there. Nor are they in the main Photoshop folder "Plug-ins".Does anyone know where the extension panels for Photoshop CC are stored? I have done searches, on extension names, but nothing shows up.Thanks in advance - Sam
Hi!I see that the XMP toolkit is not compatible with VS2017 32 bits, but only with 64 bits.In the documenation itself it says that it only works with 64 bits.Why?? I mean, if I have to develop a generic tool and use your XMP toolkit I cannot assume that all the customers will have 64 bits environments!Thanks
I'm about to release an extension for Illustrator and have been looking up ways to help protect against piracy. I've been wanting to implement some basic license key check at the initial launch of the plugin, and am wondering if there's a way to implement that and maintain my ability to sell the plugin on the exchange. Does adobe do any kind of validation check for a plugin once it is purchased and installed? Is there a way to implement a license key check? Or would somebody just be able to share my plugin without any hurdles?
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.