Join our global community of Adobe Exchange developers.
Recently active
Hi i have a situation something like, shown belowi have a folder called Export inside the 4 filesExport /a.mxfb.mxfc.mxfd.mxf(4 files inside Export/).Question: i want to delete every files inside export folder except (c.mxf) with jsx. how can i do that ?
Hi,When debugging I used to close the extension and restart it via the Window/Extensions to update it in Photoshop.I only needed to restart Photoshop if the Manifest was modified.Now I NEED TO RESTART PHOTOSHOP for a minimal change in a file, this is quite BORING. Is this a bug, do I have system problems or is there a setting to reset so I don't need to restart every time I move a button 2 pixels to the right? All comments are appreciatedPierre
Hi community,I'm developing a Photoshop extension. I have finished the functionality and ui, problem for me is that I dont really know what i'm doing with Ps compatibilityand the partner portal doesnt seem to be recognizing the version from my manifest correctly.Is there somewhere or someone to refer to for help with this kind of thing?I know this is a very broad description, I have many more details if someone is interested.Thanks
Hi, i'm trying to get file size with cep i did not figure out api in cep to get filesize.here is what i have tried:var path = 'E:\\inbox\\log.txt';var statObj = window.cep.fs.stat(path);// statObj does not contain file size .How can i get file size?.
Using the example here: http://estk.aenhancers.com/10%20-%20Scripting%20Access%20to%20XMP%20Metadata/accessing-the-xmp-scripting-api.html#integr…The script fails on the call toxmp.getLocalizedText( XMPConst.NS_DC, "title", null, "en" )The reason given is:TypeError: Bad argument list, usage: 'getLocalizedText(schemaNS: String, altTextName: String, genericLang: String, specificLang: String): XMPProperty'I have tried passing in "en-US" as the generic and specificLang, but it makes no difference. I also checked the typeof XMPConst.NS_DC, and it is a string. So I don't get what is causing the issue?
Hello,Is it possible to launch a CEP panel from ExtendScript code? In my previous thread that I posted, I was asking about auto-loading CEP panels from the <StartOn> element in the Manifest XML, but that doesn't seem to work. So, I thought that maybe there was a method to explicitly launch a CEP panel from an ExtendScript panel. Any ideas?Thanks,Arie
Hi,I sucessfully packaged my extension but then the installation always fail and I can't see what I am doing wrong at this point.Here is my manifest : <?xml version="1.0"?> <ExtensionManifest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ExtensionBundleId="com.ozalto.someextension" ExtensionBundleVersion="1.0.0" Version="5.0"> <ExtensionList> <Extension Id="com.ozalto.someextension.panel" Version="1.0.0"/> </ExtensionList> <ExecutionEnvironment> <HostList> <Host Name="IDSN" Version="[11.0,15.9]"/> </HostList> <LocaleList> <Locale Code="All"
in my Premiere Pro panel, I'm requiring a module 'juice-mediaprobe', for uploading clips to a service. When I run the code with the terminal and 'node .../path/...' command it works fine, but when I run it with Premiere, as soon as I require the 'juice-mediaprobe' module I get an error, saying that the required xxhashmodule is not a valid win32 applicationAre there solutions to this problem, what can I try to fix this?
Is it possible for an external script to trigger a custom event defined in an (open) extension panel?I tried the following but get this error when it tries to load the PlugPlugExternalObject - I assume this is no longer supported?:IOError: File or folder does not existMy code:In index.js of the extension:var cs = new CSInterface();cs.addEventListener("myCustEvent", function(evt) { alert('Data from the JSX payload: ' + evt.data);});customEvent.jsx:try { var xLib = new ExternalObject("lib:\\PlugPlugExternalObject");} catch (e) { alert("xLib create failed: " + e);}var f = File("/Path/To/A/File.psd");try { app.open(f); if (xLib) { var eventObj = new CSXSEvent(); eventObj.type = "myCustEvent"; eventObj.data = "some payload data...";  
I'm trying to run a promise in jsx. My current setup is cep to jsx and code executes but I'm trying to add a promise so my code can be synchronous.Here is a simple example: var f = new File("/Users/ohms/Desktop/cltemplate.ai"); function setTemplate(f) { return new Promise((resolve, reject) => { var doc = app.open (f); return resolve(); } ); } // open the template setTemplate(f);This is giving me an error when I run it in extended script toolkit.Any ideas how I can do this?
Hi there,Starting to move from development to packaging...My extension leverages node packages, and as expected, under the extension directory I have node_modules sub directoryWhen I am running ZXPSignCmd.exe should I leave the node_modules there? Should it sign also those files (which I do not "own")?The reason I am asking is, that if I do leave it there, the extension loads and runs very slowly when deployed from the ZXP on a non debug machine. It takes forever for every screen to load. Also, if I just do ZXPSignCmd.exe -verify it takes forever (on the original machine), so I assume that the verification is the issue here.If I leave it out, the extension tries to load very fast, but, fails as it is missing the modules.If I copy the modules manually, the log shows that it fails to validate the extension...So I am kind of stuck, I suspect I am doing something wrong here.Thanks for your help!
I purposefully drag my feet with updates because they always end in misery. I finally bit the bullet yesterday and updated my Mac OS to High Sierra (10.13.1) and Adobe PS CC to 2018 (19.1.0). I've spent the day reading all the threads in this forum and followed all the advice and tips get Nik Color Efex to work again and it won't work. (I don't seem to have problems with the other plugins like Define...it's just Color Efex that causes PS to crash every.single.time I try to batch edit my recipe.)I CAN successfully get Color Efex to succeed if I open it through Filter>Nik Collection>Color Efex Pro 4 (select my recipe and click OK).....and....it will also work directly from the Selective Tool selecting my favorite recipe under the Recipes tab.My problem is I batch edit my galleries and I don't have time to go through each file and hand apply this recipe one file at a time. Previously, I batch edited this plugin and never had any problems. The recipe is
Dear Adobe,XMP Toolkit SDK is not compatible with iOS12 due to apple deprecated libstdc++, could you please update SDK by libc++ ?Do you have any plan for that? Looking forward your feedback.Many thanks!
Hi There, I would like to force launch an invisible CEP panel when After Effects launches, and I think this is accomplished via the <StartOn> XML element in the manifest which is a child of the <Lifecycle> element. I thought that maybe at least one of the following Photoshop events might also be dispatched by AE, but for whatever reason, my panel does not initialize when I begin the debugging process. "com.adobe.csxs.events.AppOnline""applicationActivate"The invisible CEP panel runs initialization code that attaches a helper class to the globally accessible $ object that other ExtendScripts can access. I test by launching AE, then inspecting the $ object. If I make the CEP panel visible and spawn from AE's "Window > Extensions" menu, I do see that the initialization code runs.Does AE dispatch any events related to its application lifecycle? I have attached the manifest below for clarity sake. I've tried both "com.adobe.csxs.event
I changed my password since I changed my PC. I can log-in with new PW but the new PW doesn't work when I download each application to the desktop.Anybody please let me know a solution. Thanks.
Anyone know how long Photoshop keeps images for HTML panels in cache (for online URLs, not local)? Also, any easy way to control this? For a website this would typically be done inside the .htaccess file on the server. I have no idea how Photoshop handles this.
I have an Extension Panel that manipulates text within a text frame in InDesign.The problem I am having is that once you click anywhere in a CEP panel itsteals keyboard focus and there is no obvious way to give it back to thedocument.What I want is to continue typing in a text box that has had it'sinsertion point adjusted by clicking on some UI in a CEP panel.It looks possible in Photoshop, see the documentation herevar csInterface = new CSInterface(); var event = new CSEvent("com.adobe.PhotoshopLoseFocus", "APPLICATION"); event.extensionId = csInterface.getExtensionID(); csInterface.dispatchEvent(event)So is there an equivalent for InDesign?Thanks in advance.Mike
Hello,We are having a extension which is working fine in InDesign CC 2017, now we are trying to use the same with InDesing CC 2018 with supported CEP version 8.0. For that we have updated our manifest file entry as:<ExecutionEnvironment> <HostList> <Host Name="IDSN" Version=["13.1", "13.9"]/> </HostList> <LocaleList> <Locale Code="All"/> </LocaleList> <RequiredRuntimeList> <RequiredRuntime Name="CSXS" Version="8.0"/> </RequiredRuntimeList> </ExecutionEnvironment&g
I'm currently trying to run some code to be executed in an illustrator file from my script. I'll explain my scenario and what I'm trying to achieve.I'm using illustrator cc 2019.I have the extensions panel test from Adobe and in it there is the following file in CSXS/manifest.xml here I have my resource and script path like this: <MainPath>./html/index.html</MainPath> <ScriptPath>./jsx/core.jsx</ScriptPath>Now in my index html file I put this: var csInterface = new CSInterface(); csInterface.evalScript('app.documents.add();', evalScriptCallback());in core.jsx file I put this call back: function evalScriptCallback(result) { alert('th
Currently I have a script that I wrote which runs when I go toFile -> Scripts -> Other Script...I then select my script it opens and runs.To maximize the efficiency and eliminating the selection of the script each time, I went and added it to the CEP Html Extensions panel.Here I set it up so when you click a button it would run the script. However it isn't working.I tested it in Chrome and verified the script is there but it doesn't run. I only tested to ensure the script was there and being selected in chrome. I didn't actually expect it to open illustrator file from there. The basic script opens up a file in illustrator and places some text on the file.Am I missing something as to how a script can be executed from CEP?
Hi, I'm trying the Particle Builder free package, but I have a problem. The effects only last about 0.5 seconds, which is how long they work perfectly but then you don't see them anymore. Is that a limitation? Thank youI'll explain myself better. The effect works perfectly, but it's been impossible for me to get it to last longer than that. I don't know if it's an After Effects configuration, an incompatibility or what it is, but nothing similar has ever happened to me, I've tried the different options of each effect, with solids, videos, etc... with the same result. I can not give more explanations because I have no idea what happens.As soon as the composition arrives that time the effect disappears. I can see how the Emitter follows the indicated displacement, but the effect is not seen. Thanks.
Hi all,I am trying to find the trick to debug the JSX part of an extension while I run it. I can debug the javascript referenced by the HTML fine, but not the JSX. I tried various tricks I read about other CC apps, but I must be missing something...Help appreciated!
Here's the sitch:- I wanted to try "Animator's Toolbar Pro Trial" and clicked "Install", on the corresponding Adobe Exchange Website.- I waited some time for the sync to happen.- I opened Photoshop, looked in "Window > Extension" and found only "Color Themes"I tried the above procedure three times.Then I tried "Anastasiy's Extension Manager", as advertised by Adobe. It says that the extension is already installed and I need to first uninstall it in order to reinstall it. So I head back to Photoshop and check, but it is not visible in the menu.I go back to the Exchange Website and click "Uninstall", wait for the sync. Try the Extension manager, but it still says that the extension is installed.QUESTIONS:- Should I manually remove the extension? If Yes: where? I'm on macOS Mojave.- What would be a different approach?FURTHER INFO:- I just updated PS to the latest version today, Feb. 12th.
Hi,I am trying to show some tooltip against the elements in my HTML panel. I am using the 'title' attribute for showing the tooltips. They show up when I open the HTML in a browser but are not displayed when it is opened as an extension panel in any of the Adobe apps e.g. Photoshop, Illustrator etc. I am using the CC version. Is anything amiss? Thanks in advance.
BonjourComment convertir un dossier PDF de plus de 100 mo en word?Merci
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.