Join our global community of Adobe Exchange developers.
Recently active
Since I installed cc2018 I'm having a problem with the palette windowsif I start the palette panel with a html panel buttoneven if I close the palette panel and then click on an area outside photoshopand then back in photoshop this reappearsas I could solve this problem.https://s31.postimg.cc/4crdqy8zv/Kapture_2018-04-15_at_15.03.00.gif
This seems trivial, but I can't seem to get InDesign to open a file.I'm can pass a file path to the index.jsx using an evalScript:// pasteFile is '/Users/me/Desktop/Blah/05_21_2018_PRODUCT/Blah_05_21_2018_PRODUCT.indd'//csInterface.evalScript("openFile('" + JSON.stringify(pasteFile) + "')"); csInterface.evalScript("openFile('" + pasteFile + "')");Then in the .jsx, I simply try to open it:#include "json2.js"function openFile(someFile) { //var aFile = JSON.parse(someFile); alert(someFile); var docRef = app.open(someFile);}I read elsewhere that you need to JSON.stringify then JSON.parse an argument being passed to the jsx. Regardless, alert(someFile); works in both cases, and it alerts with the proper file path. app.open(someFile); appears to do nothing, however.Any ideas?
Hi, I have an issue with drop down values being loaded out of the extension window for the first time (i.e.) when extension window is not focused.But from the second time, it loads correctly.Can anybody tell me how to resolve this. Will focusing on Extension window solve this problem? If so please guide me how to focus on extension window. Thank you.
If I start an http server and direct the CEP plugin to load a page like the one below served by that server, will the script below work? I am seeing the XHR request hang every time. The same thing works as expected in plain node.<!doctype html><html><head> <script type="text/javascript"> var http = new XMLHttpRequest(); http.open('GET', '/token'); http.setRequestHeader("x-token", window.location.hash); http.send(null); </script></head><body></body></html>
How to avoid flickering the panel?if you switch from the program window to a other window and then go back, you get such a flicker (it doesn't always appear, but very often)
We developed our Add-on with its own internal subscription/payment method via Stripe. I'd be interested in moving the payment process over to you guys via an Adobe Exchange subscription. Our Add-on provides production music to Premiere Pro CC users for $29.95/month with a 30-day free trial. Where can I find info on how your subscriptions work (bank details, fees, payment, etc)? Before I remove the Stripe integration for our plugin, I'd like to see how it works with Exchange. Thanks!Here's our add-on: BenztownX Music & Sound FX Add-on
There is a new resource for aspiring scripters by the Adobe I/O team: GitHub - Adobe-CEP/Getting-Started-guides: Getting Started guides and samples for CEP extensions
In the Windows version of PS CC Classic Release 19.1.3 Window->Extensions is greyed out.Basically all the extensions that were there are now missing.This must have happened after an update.Does anyone have a fix for this?Kind RegardsJon Miller
Hello, Let's say I have a exemplary html panel with image: <div id="test"><img src="test.jpg" data-source="here is path to my locall file" id="drag_div" draggable="true" ></div>What i'm trying to do is to allow user to drag this image form panel and drop it to active document's body as a new layer. Refering to CEP_7.0_HTML_Extension_Cookbook: CEP 5.2 support HTML 5 Drag and Drop. There are four types.1.Drag and drop inside HTML extension. 2.Drag and drop between two HTML extensions3.Drag and drop between HTML extension and itshost application. 4.Drag and drop between HTML extension and operating system(e.g. Desktop or Browser).As I understand the third option gives me this possibility but I don't know how to use it. I wasn't even able to get any callback from photosop after dropping html element to application's body. I appreciate any helpRegards, Dominik
Hello,i have create a zxp out of some files with a *.mxi file.i am able to install the zxp file on windows 10 computer but on mac the CEP part always copied to CEPServiceManager4/extensions/...can anybody find the error?this is the mxi file:<?xml version="1.0" encoding="UTF-8" standalone="no"?> <macromedia-extension id="com.xxx.xxx" name="XXX" requires-restart="true" version="1.0.0"> <author name="xxx" /> <description>The extension xxx</description> <license-agreement> </license-agreement> <products> <product familyname="Photoshop" maxversion="30.0" version="19.0"/> </products> <files> <file destination="$adobecommon/CEP/extensions" file-type="CSXS" source="UI.zxp" /> <file destination="$pluginsfolder/xxxx" minVe
Hi there,Does anyone know how to disable a panel conditionnaly thanks to scripts in window->extensions menu ?My extension is made with 5 panels. With some conditions, I'd like users not to access to a panel.I've got a menu inside my extensions and I can disabled panel access here ; but if users go to window->extensions, there are enabled.Thanks
Hi there,I'm in the process of creating an Illustrator Plug-in using an HTML/js extension for the UI. I have noticed that the extension type is set to Panel that the panel remembers its last position on the screen, but if you move a ModalDialog, close and reopen it, it always appears in the centre of the screen.Is there a way to do this for a ModalDialog or a way to get/set the position of it?Cheers
HiI Have CEP Panel for ID.Fixed size in manifest<?xml version="1.0" encoding="UTF-8"?><ExtensionManifest Version="4.0" ExtensionBundleId="net.mediabook.InPublishingPanel" ExtensionBundleVersion="1.0.0" ExtensionBundleName="InPublishingPanel" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Contact mailto="assistenza@inpublishing.it"/> <Legal href="http://www.inpublishing.it/"/> <Abstract href="http://www.inpublishing.it/"/> <ExtensionList> <Extension Id="net.mediabook.InPublishingPanel.panel" Version="1.0" /> <Extension Id="net.mediabook.InPublishingPanel.navigatore" Version="1.0" /> </ExtensionList> <ExecutionEnvironment> <HostList> <Host Name="IDSN" Version="[10.2,13.9]" port="8001"/> </HostList> <LocaleList> <Locale Code="All" /> 
Hi everyone. In the version of CC2015, the script works well-collapses the panel into a narrow one and expands it into a full size. But in CC2017 the script does not start to work every time, and through one "open" click. Messages "1" and "2" are triggered, but the panel is not expanded. Please help me if ($("#chbMini").prop("checked")){ //check alert(1) CSInterface.prototype.resizeContent(330,300) }else{ alert(2)
HiIs it possible to install Photoshop Generator plugin via Adobe Exchange the same way as you're able to install panel extension? Our company created a Generator plugin which is based on Image Assets which comes bundled with Photoshop. But so far we didn't find a way on how to install it using Adobe Add-ons / Adobe Exchange, so for now we're providing a standalone installer. It does the job, but it's quite cumbersome to handle different Photoshop versions, operating systems, push a new version to users when we update the plugin, etc. Any help or tip would be much appreciated!Best regards!
I've published version 2 of JSX.jsSee http://creative-scripts.com/jsx-js/ for detailsIt's basically an alternative to using csInterface.evalScript with in my opinion some big benefits.Has 2 methods jsx.evalScript and jsx.evalFileThe update has meaningful error messages so instead of receiving the standard csInterface.evalScript "Eval Error" message you'll get to something like:ReferenceError 2: bug is undefined File: /Users/Trevor/repositories/CSTK/com.creative-scripts.cstk/jsx/1.jsxLine: 2-> bug+2orSyntaxError 25: Expected: ;File: /Users/Trevor/repositories/CSTK/com.creative-scripts.cstk/jsx/1.jsxLine: 2-> 1 + 2bug + 3Bug: 2bug
We are investigating moving more of our Mac Creative Cloud Plug-Ins to the Adobe Exchange. These are currently mostly for InDesign so I am going to use InDesign in all the examples below.Currently we handle installation using an Apple Installer .mpkg/.pkg and scripts to find the versions of the InDesign application installed. The Plug-Ins are then copied to the respective "Plug-Ins" folder.At this point, we are wanting to continue to offer our Plug-Ins in the Apple installer as well as the Adobe Exchange. I have been thinking about utilizing the ExManCmd command-line tool from our scripts to install our Plug-Ins from the same .zxp files we would upload to the Adobe Exchange.On each Adobe Exchange product page there is a "Download/Install another way" link which suggests that the .zxp can be downloaded and installed using ExManCmd, ZXPInstaller or Anastasiy’s Extension Manager. ZXPInstaller is open source and the GitHub repository includes the ExManCmd which is embedded in the applicati
Most of the Lightroom templates (top 24) are setup as 8.5x11 paper size. Whenever one of these tempates is selected, the rulers show the size to be 8.5x11, and all is good.If I build a custom template, and setup the paper size to be something else, say 4x6, then whenever it is selected, the rulers show the size to be 4x6, and all is good.Whenever I go from one of these templates to another, the paper size changes to the proper size (8.5x11 or 4x6). All is goodHowever, whenever I change from my custom template (4x6) to one of the last three Lightroom templates (Fine Art Mat, Maximum Size, or Triptych) then the size remains as 4x6 instead of changing to whatever they were originally setup to be. Is this a bug? Can it be changed? I am using Windows 10, and the latest subscription Lightroom Classic CC
The "<Extension Name>" extension could not be loaded because it was not properly signed.Above issue, I'm facing while running the extension, I have tried the URL given below still, the issue persists. Photoshop com.adobe.preview.loader extension could not be loaded I tried Installing Photoshop Adobe CC 2015, 2017 and 2018 all version in 3 different MAC system after configuring all settings for the Eclipse with including the extension builder 3.0 version. I'm still facing the same issue.I'm here creating the new extension using the Eclipse Version 4.4.2.Screenshot of the error message while running the extension in the Eclipse debug mode is given below.Eclipse Preferences setting screenshots.It would be of great help if you can help me to create the extensions.Thank you
Hello,i have complete my develop of an CEP Extension that works with a *.8bs Plugin (written in C++).Now i want to publish the Extension but i don't know how to create a zxp File with the Extension and the plugin.Have anybody a solution for this?Best regardsAlex
I can’t get Node.js to work – but I need filesystem access. I double and triple checked the manifest, documentations and existing threads... I included enable-nodejs to the manifest and iFrameThen I dovar fs = require(‘fs’)but I get ‘copyFileSync is not a function’ when I try to use fs.Any help is highly appreciated!
I have been using Adobe Pro for several years and pay for it yearly ($194). If I purchase Adobe Pro 2017 for $449, will it last a few years/offer free updates? Or is it only good for 1 year?Thank you.
Hi -I was going to purchase a add-on for Photoshop. Are the paid add-ons a monthly charge or a one time charge?Nick
So I have the following paths set in in the Adobe Extension Builder 3 preferences:CC paths -> Service Manager root folder : /Library/Application Support/Adobe/CEP/extensions User-specific Service manager root folder: /Users/richard/Library/Application Support/Adobe/CEP/extensions Target Application: /Applications/Adobe Premiere Pro CC 2018/Adobe Premiere Pro CC 2018.app/Contents/MacOS/Adobe Premiere Pro CC I am running Eclipse:Oxygen.2 Release (4.7.2)macOS 10.13.3I have run out of things to try. the paths seem correct. Is there some mo
Hi. I was wondering if there is a method to connect my html extension to a mysql database on my host's webserver? I just want know the work flow and the technologies that I'll need to deploy. If it is not possible, are there any workarounds?Thanks for any advice,
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.