『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
Hello,I've got a problem since a few days.I use grunt-cep to package my plugin. It worked since a lot of time.Users had a zxp that used to work. But now if they uninstall it, they cannot install it anymore :"Installation failed because the extension does not contain a valid code signature."I cannot package again my plugin because now I have this problem :"Creating ZXP package at staging\package\a91a126f-8478-400c-9c8b-a7e07d590092.zxp...ERRORError - Certificate is expired or not yet valid. Please check certificate validity.Fatal error: Unable to create ZXP package."Is there something about certificate ?Perhaps mine is outdated but I don't know anything about that .. Another person worked on it years agoAny ideas please ?Thanks
Hey,I was just wondering what the correct protocol for submitting bug reports or fixes is (CEP Panels). I've found several bugs, and have patched most of them myself. I would like to either document these for the developers or submit the fixes for approval. Is there any protocol for this?Also, I noticed the github issues aren't addressed by developers or Adobe reps, and pull requests aren't regularly accepted. Is there any chance we could get a rep on the github page? Seems a lot of people are willing to submit issues and fixes. Given the number of bugs and irregularity in the documentation, it would seem to benefit the product team to allow the community to contribute to this process.Thank You
I have been developing an Extension for use with an Illustrator Plugin as its UI, but have encountered a slight problem.On Windows 10, when you change the scaling, the dialog doesn't display correctly. For example, I've created a Modal Dialog with some Ok and Cancel buttons pinned to the bottom of the dialog, but when I set the scaling to 150% in Windows, I can't see either of them, they appear to be off the bottom of the dialog, and resizing doesn't reveal them.Is there a way around this?
Hi All,I am developing a html extension for InDesign CC2014. There is a scenario where I need to communicate between the extension and C++ InDesign plugin.I followed the instructions at http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/cs-extension-builder/pdfs/CC_Extension_SDK.pdf and wrote the extension part of the code. The c++ part of the code hasn't changed from the Flex versions so had no problem there.I tried to invoke the extension from the plugin and it worked. I registered an event in the plugin to listen for and dispatched another event from the plugin. But the panel doesn't seem to listen or dispatch any event. On the c++ plugin part, the registration and dispatch error codes returned were success codes so the problem is not with the plugin.Here is the code for the html panel,I register the event to listen for at the time of page load. function onLoaded() { var csInterface = new CSInterface(); // Register the named event handler csInterface.
Hi, I would like to know if it's possible to fork a CEP process?I would like to fork a process (like Nodejs does natively) instead of creating a brand new one.For instance, if I want to run a new js script from an Adobe extension, I need to give the path to NodeJs then the path to the script then the arguments.I would prefer do a 'forking' instead as it's going to create a clone of the running NodeJs process and allowed me to skip giving the path to a NodeJs executable. It will also allow me not to ship a new Node within the generated extension or ask the user to install Node.
Hi,How to add a flyout menu in illustrator cep(2014) html paneli have use following codevar flyoutXML = '<Menu> \<MenuItem Id="actionMenuItem" Label="testMenu" Enabled="true" Checked="false"/> \</Menu>';// Uses the XML string to build the menucsInterface.setPanelFlyoutMenu(flyoutXML);window.__adobe_cep__.invokeSync("setPanelFlyoutMenu", menu);but it does not worked in illustrator. but worked fine in indesignpls helpThanks[Moved to Extension/Add one development by Moderator]
First, I'd like to congratulate Adobe, as well as all of us, on the release of the new Adobe Exchange! I hope it will be a success for all parties involved.Now may I submit a suggestion:I believe that the screenshots in product listing are now next to useless because they're just too small (unless I'm missing something). (It's possible to enlarge the entire browser page to see bigger images, but most users won't do this). I think that users should be able to click those small previews to see the enlarged version of the picture.Thanks,Leo
Hello team,I'm trying to send parameters from an InDesign CEP extension to another InDesign CEP extension.Actually I use dispatch/addeventListerner prototype, the dispatch works, not the addeventlistener.help is welcome.regards
It's here! We are pleased to announce the release of Adobe Exchange. Supporting all the Adobe Clouds, it lets you take your creativity and possibilities further. Check it out! https://www.adobeexchange.com/creativecloud.html
I'm at the point where I don't see the forest for all the trees... I'm working on an extension with Angular that is supposed to interact/modify the current Illustrator document. But I can't access the global 'app' variable. Example: I try to get the name of the current document. new CSInterface().evalScript("alert(app.activeDocument.name")...I get the name in an alert, but how can I get the name string directly in my Angular service (in this case)???
Hi extension developers!We're applying new energy to the Creative Cloud extensibility offerings, and to that end, we'd love it if you could give us some feedback to help us help you and your users! To that end, we’ve compiled a general interest survey to accomplish 4 things:SDK feedbackWe’re planning a ton of new work for CEP, and we want to make sure that we’re prioritizing our backlog based on your needs. If you’re a CEP developer, we want to hear about what works and what doesn’t.Understand your technical background The extensibility teams at Adobe are chock full of reformed engineers and developer evangelists, so we know developers, but we don’t know you! We’ve got all kinds of theories and anecdotal tidbits of information that we can use to hypothesize about what we need to build and prioritize, but we need to hear from you to validate those theories.Get your email address (optional)We would love to contact you to validate new features, keep you in the loop on updates, and to get
I am totally confused.When I open my panel, jquery doesn't want to load. If I then open debug and refresh debug window – jquery loads correctly.I tried putting my <script> tags:- in the <head>- at the end of <body>- with defer set- with async setAlso tried different jquery versionsNothing helps.If I close and re-open my panel tab – jquery isn't there. If I refresh in debug – it's there.Any ideas?
Hey everyone, do you know if its possible to change the color or font of the title tab of an extension? Those tabs seem to be the same color all over Illustrator so I assume its something we can't modify (for consistency reasons) but I'm curious if it can be done.Thanks!
Hi,Does anyone know if Premiere is eventually going to have webm as an export option anytime soon. The fnord plug-in works but is very slow and seems to use a lot of cpu, for a lot of exports a day it is very cumbersome and slow,Kind regards
Hello, I am developing a plugin using the Custom Platfrom Support API. I have run into the following issue - when exporting a shape as a drawing object on a Mask layer, the first time the positions I get from the API are correct, however if I move it and export again they do not get updated. is this a known issue?
Hi guys. I am pretty much stomped on this one. I am sure I'm making a mistake but I can't see it. Maybe more eyes will help.Here's what is happening:I get ad alert from LogRead JSX function on startup which is blank. This works just fine. The second time on a triggered event in the main.js it does not alert which means it's not working, nothing happensHere's the code snippets:MAIN.JS - ON START UPcsInterface.evalScript('LogRead(\'\',' + logfilepathname + ')');HOSTSCRIPT.JSX//save a text file or write new datafunction LogRead(newfiledata,filepathname){ //read data alert(newfiledata); var vfiledataread = FileDataRead(filepathname); if(vfiledataread == ""){ //create settings file if not created FileDataCreate("theme: Default__",filepathname,"w"); }; if(newfiledata > ""){  
Dear Producer, We are excited to announce our new and improved Add-ons marketplace, Adobe Exchange. As many know, we pushed the release back. This gave Producers extra time to prepare assets according to the new guidelines, and Adobe time to deliver an even better marketplace on launch. As a unified destination that brings third-party integrations with Creative Cloud, Document Cloud & Experience Cloud under a single umbrella, Adobe Exchange will make it easier for your customers to discover and install integrations that expand and enhance what they can achieve on Adobe’s Clouds. The new Adobe Exchange marketplace will go live for your customers on March 5, 2018, and the Exchange Producer Portal will be available for you to update and create new listings starting February 15, 2018. Note you will no longer be able to make any changes to your listing on the current Add-ons site after the cut-over on February 15, 2018, but the Add-ons site will remain up for your customers until the ne
Hello,I'm using the lastest Photoshop CC, currently ver 19.1.0 on Windows 10.I'm trying to build a small Photoshop extension (a panel).I've built a little HTML/JS interface.When I use my mouse to interact with it, everything works fine.However, when I try using my graphic tablet (which triggers touch events) I get a strange behaviour :Whenever I drag my pen (touchstart, touchmove, touchend) in my panel, it triggers the thing.Then, when I hover my pen over the main drawing canvas, the cursor flickers and I have to click once to stop it.I should describe better what I call flickering. When the cursor is over the canvas without moving it has the right appearance (the one of the tool i am using), but when I move it, it changes to the regular windows cursor.It's like the cursor is in-between two states, or maybe it's a focus issue.I tried releasing the focus using the event "com.adobe.PhotoshopLoseFocus" on thouchend js event.But it didn't help much.Maybe one of you has already had this iss
Cet message ne me permet pas d'utiliser Adobe, comment puis-je résoudre ceci?
I have purchased Digimarc for images and cannot get it to install. I have a MacBook Pro OX S Yosemite version 10.10.5 and Photoshop CC2017. I have tried troubleshooting and rebooting, uninstalling the extension manager and reinstalling it, quitting Photoshop and restarting it. Nothing works. It does not even show up in the filter section at all. The error says ”This extension cannot be installed, it requires Photoshop version 13 or greater.” Help!Pamela Tuckey
Hi,I have built a CEP panel with a few buttons and tested fine on Mac / InDesign CC 2018.Then I zipped the extension folder to a windows machine and copied toProgram files ...\CEP\extensions running also InDesign CC208.To my surprise: the panel shows in Window > Extensions but the panel is empty. My buttons and the edittext is gone.Anybody knows what I am missing ?Thanks Stefan
I feel like I'm a pretty competent computer guy.I can code and script on an amateur level but this CEP and extension thing has got me feeling pretty dumb right now.I mean, I can't even get STARTED!I'm trying to use Brackets as I've seen suggested here. They have an extension for developing Adobe Extensions, so that seems easy enough (actually there are two). I have them installed but when I click on "create new extension", it just dumps on me saying there is no extension by that ID in the CEP folder (windows).I'm clearly missing what is probably a VERY obvious step... but in all my googling, I can't find a single thing that is pointing me in the right direction. LOLAnyone lend me a hand here? I'm trying to code for CC 2018 and I've downloaded the github CEP-Resources-Master.zip but I haven't put it anywhere's yet. Thanks,Bogus8
Hi guys. Is there a way to get the full path of a selected image via the open dialog or using any other method? I'd like to save the path in the extension so that it can be set to the path of the textures folder. The path always opens in the last path used in photoshop at this moment. Basically, I just want to capture the file path that is selected in the extension and set it temporarily until I reset it in the extension function.Here's what I got:fyi: getafilepathtoJS("getfilepath",selectedfile); ---- is an add listener in the main.js that captures the path but it only shows the filename. function step1(enabled, withDialog) { if (enabled != undefined && !enabled) return; var dialogMode = (withDialog ? DialogModes.ALL : DialogModes.NO); var desc1 = new ActionDescriptor(); var ref1 = new ActionReference(); ref1.putEnumerated(cTID('Lyr '), cTID('Ordn'), cTID('Ba
We want to print pdf of extension (HTML5 javascript) window in indesign using javascript's window.print() and it is working in indesign 2018 but not working in indesign 2017. Can anyone help me for this issue. My index.html :<body> ...some html content<button type="button" onClick="window.print()">Print Page</button></bodyin 2018 this prints the page in pdf correctly but in 2017 it prints nothing
Hello,I've got a newbie question !Is it possible to listen events from Illustrator app in extensions ?I would like to be notified when a user changes the name of a layer or when he moves an item to another group or when he changes the anchor points of a path.I would like to be able to intercept all these types of events and more.Is it possible ? Does anyone have an example?If possible, how can I get a list of all these events?I saw that there was PlugPlugAddEventListener, is it possible to use it in this way?Thanks for your help.Loïc[moved from Illustrator Scripting by moderator]
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.