『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
I'm trying to sign the extension but I still get the same error"extension could not be loaded because it was not properly signed"I'm using the mac with ZXPSignCmdand photoshop cc release 19.1.3
The following images depicts the folder structure of adobe cep illustrator extension panel which i have designed.and the problem is that i am able to use core.jsx file which is in jsx folder in adobe illustrator. Now as per the requirement i need to make this plugin able to work in Photoshop and changed the manifest file commands which support photoshop. Now i am unable to use the jsx functions and retrive the data needed. control not even entering to core.jsx file. I am unable to find what the problem is. And while debugging its prompting a message "Unexpected token E in JSON at position 0 ".Could some one help me with this?[Moved it from Photoshop to Extensions / Add-ons Development by Moderator]
I'm currently trying to make a photoshop panel that will let you preview different changes to a document, so that you can visually compare them to see which you like best. I've been able to create a basic CEP panel and achieve simple effects with Extendscript on my active document, and I can also save and load versions of the current document in my panel folder. What I'm struggling with now is how to "duplicate" in memory the open document, apply a change to it, and then either display it or save it off to a different file. I don't want to alter the app.activeDocument.For instance, say I have the following in my JSX:var sanitizedFilePath = File(extensionPath + "/cache/lighter_shadows.jpg");var exportOptions = new ExportOptionsSaveForWeb();exportOptions.format = SaveDocumentType.JPEG;app.activeDocument.artLayers[0].adjustColorBalance([80,80,80], [100,100,100],[100,100,100],false);app.activeDocument.exportDocument(sanitizedFilePath, ExportType.SAVEFORWEB, exportOptions);This
Hi there,Has anybody else been having issues with viewing unsigned extensions in the latest build of Windows 10 which is version 1803?Before I updated Windows I was running version 1709 and unsigned extensions were working perfectly. I have the correct registry key in place at HKEY_CURRENT_USER\Software\Adobe\CSXS.8. If I was to remove this then I would still get my unsigned extensions appearing in the Extensions menu but it would just load a blank panel.Now in version 1803, with the same reg key in place, nothing appears in the Window -> Extensions menu at all. I've even added keys for all past CSXS versions and that didn't work. My manifest.xml file also has <Host Name="IDSN" Version="[11.0,13.9]"/> which means InDesign 13.1 should be covered.If I do sign the extension then it appears as normal. Obviously for development purposes I don't want to have to do this. I'm not sure if any other CC apps have this issue as I only develop for InDesign.This sounds like something Micros
Hi all,I'm not sure where is the problem and still in troubleshooting.I wonder if anyone has workaround or any idea where I should check.ExtendScript itself is working as expected. But when it is called from CEP's CSInterface.evalScript(), it causes "EvalScript error."ExtendScript code is modified code from following.Change value sample sizeChanging Eyedropper's tools property value from CEP plugin.In the project there's similar code used, but only these part has issue.The above link's code's JSON has syntax issue. ExtendScript is OK. But JSONLint reported error. After fix, it still have issue.I rewrote to ActionDescriptor without JSON data, it still have same issue (JSX is OK. CEP has issue.)I appreciate any tips and advice.Thank you,Naoki[Moved to Extensions/Add-ons Development forum by Mod]
Hi,I'm having issues when passing German special characters (umlaut) like ü ö ä Ä Ü Ö ß in my extension (both from js to C++ and from C++ to js).Javascript:Here, I dispatch eventfunction dispatchSearchEvent(fieldName, fieldVal, eventName) { var event = new CSEvent(eventName, 'APPLICATION', 'ILST', extensionName); event.data = '<payload>'; event.data += '<SearchFields>' + fieldName + '</SearchFields>'; event.data += '<SearchValues>' + fieldVal + '</SearchValues>'; event.data += '</payload>'; csInterface.dispatchEvent(event);}Here, fieldName and fieldVal are an array of string values.VC++ :Here, I add listener to event and parse data.static void onSearchClickEvent(const csxs::event::Event* const eventParam, void* const context){ArticleSearchController *controller = (ArticleSearchController *) context;if (controller){AppContext appContext(gA
I am playing around with CEP extension creation, and I'm having trouble getting the debug options to work. I have the correct entries in the registry (and even put them for previous CXSX versions just to be safe). The extension loads (finally), but I can't open the remote debugger, and by all accounts it can't find my .debug file.Here is the contents of my .debug file:<?xml version="1.0" encoding="UTF-8"?> <ExtensionList> <!-- 1 --> <Extension Id="space.lahan.test.panel"> <HostList> <!-- 2 --> <Host Name="PHXS" Port="8088"/> &
EDIT: Please don't move my thread. I get great answers at this forum and whenever I'm pushed to Add-ons, I never get any answers. Please let me keep my thread here where I originally posted it.I want to make a panel that can package customized SVGs, creating a companion stylesheet and replacing 'cls-1' and etc. with dynamic class names along with other ways of prepping the files. I have it working to inject the SVG into my panel:But the problem is that I'm having to click twice for an accurate preview because my evalScript function is slower than my reading function. I've tried calling the evalScript before reading, using an anonymous function as the callback of the evalScript and deploying reading from there, using a sleep() function to force a delay on the reading, and sending an event from JSX to JS at the end of my evalScript function and triggering the read from there. No luck even though the event looks like it's the most accurate.So my problem is that I'm telling Illustrator to
Hi, I´m a producer here and a customer wrote a negative review with problems during installation. Is there any way to answer reviews or contact the customer for helping him?Thank you
No me han enviado la transacción exenta del mes de abril, ¿cómo la consigo?
Hi!I'm looking for a possibility to get logging information of my extension from the user's machine. It should contain the console.log information that I can see and analyse in Chrome on my dev machine - or at least the errors that occur. Is there any possibility to stream the logs into a file which the user can send to me afterwards? Or any other solution? Best regards,Stefan
Hi,i have uses some js,css files in adobe cep illustrator extension. these or changed on the server but in API response have old js/css if i have cleared cep_cache folder by manually then its works fine..So it is any way/possibility to disable save cookie/cache functionand in mac where cep_cache stored?pls help
Hey guys, I thought it was strange that appSkinInfo doesn't include very much so I've started my own version for Illustrator, After Effects and Photoshop:It works decently well at the moment though one or two colors are slightly off (like Highlight on the Light theme). In theory this should prevent any miscolored panel elements, backgrounds or text and would auto-update for recoloring, adding basic eventListeners and logging all UI data into a global object for storage, but I'm a bit confused as to where some of the information is coming from or what it's referring to. From the CSInterface file:/** * @class AppSkinInfo * Stores window-skin properties, such as color and font. All color parameter values are \c #UIColor objects except that systemHighlightColor is \c #RGBColor object. * * @param baseFontFamily The base font family of the application. * @param baseFontSize The base font size of t
Hi,I am closing currently open panel by new CSInterface().closeExtension(); and it closing properly butThen after open it again by new CSInterface().requestOpenExtension('com.wk.panel'); but its not reopening the panelSo how can i close currently open panel and reopen itPremiere Pro Version: 12.0.0Extension Type: PanelThanks,HiteshThis post moved from Premiere Pro SDK to Extensions / Add-ons Development by Mod.
I am trying to develop an extension for Premiere Pro that allows the user to drag and drop files from Finder/Explorer into the panel.It seems the regular HTML5 drag and drop works fine (https://html5demos.com/file-api)However, this doesn't get me what I need. I need the actual native file path of the dragged file. Is this possible?Thanks,Bryan
Hi!I'm working on a hybrid extension, and followed and tried all the documentations that I've found. Still, the installation of my 'final' zxp file ends with a -160 error (after some more tries it's -252). The html zxp file alone works fine! I'm just not sure about the native plugins and the mxi file.<?xml version="1.0" encoding="UTF-8" standalone="no"?><macromedia-extension id="com.ciclosoftware.YGContras" name="YG Contras" requires-restart="true" version="0.114"> <author name="Ciclo Software"/> <description><![CDATA[Managing labels]]></description> <license-agreement><![CDATA[Free for trials]]></license-agreement> <products> <product familyname="Illustrator" maxversion="" primary="true" version="22.0"/> </products> <files>&
Hi,I'm currently working on a Photoshop panel extension. I would like to transmit some data to my extension when launching Photoshop. Currently, I'm storing those data in a file, then reading the data file inside my extension. I would rather pass those data as arguments in a command line used to launch Photoshop, and then catch those arguments from within the extension.Is there a way to do this? If not, do you think this will be possible in a future release?
1> How to handle the OnClick() event, clicked on Indesign Document not in html document.I have a senario where will load a image and wait to drop it on document. When user click the document to drop the image then text content will be loaded to drop on the document. 2> If i will drop an image in frame, how to set image size automatically to fit to frame.(If have please share the sample code for reference.)Thanks.
The beta for Adobe XD prefigures the post CEP future of Creative Cloud extensibility, it might be VERY worth of your time to reAd this Adobe I/O article and take action! https://medium.com/adobe-io/xd-and-creative-cloud-extensibility-faq-e615dd6ecbfe?scid=social76200827&adbid=9990246104808…
Hi everyone,I'm currently developing an Illustrator plug-in/extension hybrid where I am using the extension for the UI.I have been trying to get it so that the positioning and showing status of the panel is saved between sessions and in the workspace.For the most part this works automatically, however it appears that if I dock the panel with other panels such that it is part of a tab group and then have one of the other tabs active (see A below) when closing illustrator/changing workspace, on next restart/reload the tab for the panel has been removed (see B below). Occasionally this seems to be fine for changing workspace, but always happens when restarting illustrator. In any other use case (floating, docked, in a tab group and active (see C below)) it is recalled correctly. Am I missing something or this a bug in the way Extensions are handled or is this by design?Many thanks in advance.A: B (restarting Illustrator after A): C:
I created a HTML5 addon/extension for Adobe Indesign by using extension builder 3. For drag and drop image and text from extension to Indesign document. But when drag and drop images on the document, it shows path of image not the image itself. Also not able to drop the text.
Hi! I wanted to create a slider in custom panel which changes the for eg opacity of the current layer.Here is what I used in HTML5<div> <input type="range" min="0" max="100" value="0" step="1" id="opacity" name="opacity" onChange="sliderChange(this.value)"/></div>Here is the javascript function$._ext_OPACITY={ run : function() { app.activeDocument.activeLayer.opacity = 50; },};Now can you please tell me how to link that HTML slider with this function so that user can change the opacity using the slider. Thanks alot.
Hi guys. I am wondering if you guys have any ideas why the iframe is not appearing. I have an external page on a separate web server appearing in an iframe on the extension but everything works just fine with debug mode on (meaning iframe does appear). I am using PS CC 2018. I signed it and my buddy tested it but it does not appear on his computer which is running PS CC 2017. The panel shows but the iframe is missing. I ran it in my PS CC 2017 and 2015 both signed and unsigned and the iframe is missing. The manifest is set to run in those version of photoshop and the CSXS I am using is version 4 (not sure if that is important).I've tested it with another webpage thinking it might be the content on the page but it does the same thing and not displaying the content. I am thinking it is the PS CC version and if so, how can a start to approach this?Thanks for any advice!!
HelloWe are running an html extension on InDesign CC 2015 on mac.I have a selfsigned extension containing of four palettes. When the user groups the palettes together and then closes them and open them again, InDesign freezes up for about 90 seconds. Then everything starts working again. If I put the machine in debug mode, by setting PlayerDebugMode = 1 i the com.adobe.CSXS.6.plist file the problem goes away.My plugin is a number of angular applications. Its 63 Mb and contains around 1800 files ( java script files mostly).Is it the verification of the signed plugin that makes InDesign freeze up?Regards/ Pontus
Hello, I am trying to combine a form I made with text fields that are named "apt" and "number" and "building". I filled out 38 different forms, all the same and saved them according to their number. However, when I combine them, of course the fields are all named the same, so adobe changed the fields on all the pages to match the first page! I do not want to go and rename all the fields. How can I combine them without it changing all the fields??
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
すでにアカウントをお持ちですか?ログイン
アカウントをお持ちではありませんか? アカウントを作成
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.