Join our global community of Adobe Exchange developers.
Recently active
Created book in MS Word - Exported to InDesign with no problems (each chapter in seperate file, etc.) Want to create a REFLOWABLE eBook. Formatted in InDesign as desired, each chapter, etc., when I select the BOOK selection and then eBook, the vertical formatting is lost. I used the required Shift+Rtn for the white spaces above the chapter name as told by Adobe and for ALL white space where needed. The result is a document where all of the verticle spacing at the beginning of each chapter is lost, (everything is squshed)I have called TS at Adobe 4 seperate times and been lectured on how to use Adobe, how to use a computer, etc (I worked with IBM on teh first PC and had the first online computer company in the world, recognized by AT&T) and my reseller number for PageMaker was 2 digets) All of TS responses were different and none worked. What code sequence am I missing to preserve the vertical spacing that I see in eBooks all the time? Thanks
Hello, I'm using XMP Toolkit SDK on iOS, I would like to add GPano metadata to my fresh created jpeg (jpeg is created from scratch with QImage API). I started from SDK code in "samples/source/ModifyingXMP.cpp", I just added this few lines : // register namespace string actualPrefix; SXMPMeta::RegisterNamespace( "http://ns.google.com/photos/1.0/panorama/", "GPano:", &actualPrefix ); // write GPano metadata meta.SetProperty("http://ns.google.com/photos/1.0/panorama/", "ProjectionType", "equirectangular", 0); I use this lines to dump meta content : SXMPIterator iter( meta ); string schemaNS,propPath,propVal; while( iter.Next( &schemaNS, &propPath, &propVal )){ cout << schemaNS << " " << propPath << " = " << propVal << endl; } When I dump meta, I have this : http://purl.org/dc/elements/1.1/ = http://purl.org/dc/elements/1.1/ dc:creator = http://purl.org/dc/elements/1.1/ dc:creator[1]
I have used the ESTK for a few years and have found it handy for doing simple things that don't require an Adobe app to be running. Is there a way just to run an extendscript in VSCode without targeting InDesign or whatever app of my choosing? I have written simple scripts to various file handling actions that don't necessarily need an app to be running when executing the script, and it would be nice not to have to start up one of the apps everytime I use one of these.
I'm constantly weary on installing third party things from the internet onto my computers, hence this question.I'm curious what the process is for submitting an add-on. Are they properly screened for malware? I want to be sure that what I am downloading is going to be virus free.
how come when i log into exchange dashboard, i get greeted with this page "join the exchange program" and no longer see the dashboard with my published extensions? i thought i was already in the exchange program and that's why i logged in. it shows me logged in. why are all the adobe websites so confusing? furthermore, i click on joing the exchange program and fill out the 2 required fields and it always ends in error "There was an error whie sending your information to our database. We apologize for the inconvenience, please try again." that's copy and pasted and that's how "whie" is spelled.
Hi there,I develop a c++ plugin for Illustrator that uses the CEP for its UI and I'm a struggling a little bit with the distribution of the extension on macOS. Previously I had a pkg that just placed the relevant files in the relevant folders under Library/Application Support/Adobe/CEP/extensions and the UI would happily show when the aip plugin asked for it. I'm not sure when it stopped working but this doesn't appear to work anymore. However installing the ZXP using the ExManCmd command line tool does work and the UI launches fine. Is there some registration process that ExManCmd does aside from just placing the files in the above location that is now required by Adobe? This has been tested on the latest version of Illustrator (25.1) on macOS Big Sur. Obviously we want to avoid having to use the command line tool as this makes distribution a bit more difficult for our customers.Any help would be greatly appreciated.
Hello,I have just bought the SES2SESX extension software.I can find it in My Exchange. butclicking on "manag" do nothing.So I download the file Ses2Sesx_1.8.3.zxpI try to install it using last version of Anastasiy's Extension ManagerWhen this extension Manager try to install it I get evry time the error message:"Extension's license is damaged: error code 602. Please contact its creators for the assistance"I have a lso tried to download a second time Ses2Sesx_1.8.3.zxp but same bad result How can I find a solution for installing this
I am in the process of purchasing a code-signing cert for the purpose of using ZXPSignCmd to deliver our Creative Suite plugin. I'm not sure how to generate a .p12 file based on a vendor-supplied certificate. The certificate vendor is requesting "Server Platform" information. Options include:Adobe AIRApple OX XMicrosoft AuthenticodeMicrosoft Office VBASun JavaMozillaOther I'm not sure what to select. The process I'm using generally follows: https://wwwimages2.adobe.com/content/dam/acom/en/devnet/creativesuite/pdfs/SigningTechNote_CC.pdf. I am attempting to sign our extension on (1.) a Mac (ZXPSignCmdMac) and then (2.) Windows. In summary, I don't know how to get a .p12 file given the documentation I'm reading.
Hi. I have a free free AE effects (.aex) that I would like to list on Exchange. Unfortunately the site does not seem to be functional. The plugins are listed here - https://www.prosya.com/software/free-plugins/I have attached a snapshot of the error that pops up.
Hi,is the debugging with chrome still works?I am trying to debug a panel I want to make some chnaeg to.I havn't chnages anything (aprat from updating PS to 2020 and probably google chrome) from the last time I successfully debugged it, which was 4 months ago. Now i get a blank page after i press teh panle link name.Tried download chromium but it als give me a blanck page. I see this error in the inspect panel: What can I do/try?
Is it possible to offer a discount to users who have already expressed interest in my plug-in, who have subscribed to a mailing list? What is the best way to do it?
How likely are you to recommend the Creative Cloud Developer Platform to a friend or colleague? Please take this one question survey (...with the option to leave much more detailed feedback). Thanks in advance! If you do happen to take the long format survey, and are wondering about some of the choices, I happen to have made a cheat sheet on the Adobe Tech Blog.
We're excited to announce that the plugin for Visual Studio Code is now live in the Visual Studio Code Marketplace! This plugin is meant to take over some, but not all, of the functionality of ExtendScript Toolkit. Please note: This is the stable Mac release; the Windows version of this plugin should be considered a "Beta", and is provided as-is. If you'd like to try the Windows version now, join the prerelease. You can read more about the plugin, and how to use it, on the Adobe Tech Blog. My team and the developers of the plugin will be monitoring this forum for discussions of the public release.
Hi all, I've created Photoshop flash panels years ago and now trying out the HTML5 stuff. I'm running Photoshop CC 2014 on Windows 8.1.I'm just trying to get a VERY simple jQuery sample up and running but for some reason jQuery refuses to load. Now I'm probably not doing things in the correct order etc but I've tried all night to get this to work:C:\Users\Gear\AppData\Roaming\Adobe\CEP\extensions\com.example.jqui\index.html <!DOCTYPE html> <html> <head> <script src="./js/libs/jquery-1.11.1.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("p").hide(); }); }); </script> </head> <body> <h2>This is a heading</h2> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <button>Click me</button> </body> </html> This is taken from a jQuery example on W3:http://www.w3schools.com/jquery/t
Hi all, I've been trying really hard to use the VSCode ExtendScript Debugger in my day-to-day development workflow. Since the first version, it's seen some marked improvements. It is more or less usable, but working with it is still very frustrating. The areas I see most problems with are: - Inspecting the variables: for unclear reasons, the variable inspection very often stops working or fails to show variables, or hangs when browsing 'into' an object. Often, a 'little spinner' starts spinning, and never stops, and no variables show. - Trying to open certain objects by clicking the disclosure triangle does not work. I have a feeling inspecting variables in the 'Global' space is less dependable than variables in the 'Local' space. - Sometimes the 'Local' and 'Global' variable lists get swapped. My locals suddenly get listed under 'Global' and vice versa. - The Extension Host crashes at random times and needs to be relaunched. My debug sessions
Hello! I have a simple panel which needs to call the evalScript method a few hundred times, however seemingly I can only call it around 50 times in a row. If for example I try with a very simple script such as: for(let i=0; i<100; i++){ csInterface.evalScript(`alert("${i}")`) }Instead of having 100 alerts (as expected) I have around 50 (sometimes 48, sometimes 45...). I know that for that particular script it would be easier to just include the bucle in the .jsx file, so please keep in mind is just a sample script to explain what my problem is. There are other situations in which I, as an unexperienced developer, find more convenient to call the evalScript method as many times as wanted. So, do you know any way to change/avoid that limit?Thanks a lot for your help!
Hi,I need to take the current active document open in photoshop and send it to a JS function who need the file in parameter. I tried by getting the path of the file like this :csInterface.evalScript('app.documents[0].fullName.parent.fsName.toString()',function(result){ csInterface.evalScript('app.documents[0].name', function(res) { var response = result+"/"+res; var path = response.replace(/\\/g, '/'); console.log(path); var file = window.cep.fs.readFile(path); console.log(file); //projectCreateDownloadToken(file.data); }); and then use window.cep.fs.readFile to get the file from the path but it only take the data and not the file.Maybe I need to use var arg = 'file=@'+path; var url ="your_server_url "; console.log(window.cep.process.createProcess('/usr/bin/curl','--form',arg,url)); But I'm looking for an other solution. Thank you for any helps !
The Adobe MyExchange page shows every single add-on/extension I've ever downloaded / tried for my CC Apps till now. I am referring to this page - https://exchange.adobe.com/my-exchange.html I see no way to delete them from the list - only Install/Uninstall. The list of uninstalled extensions still shows up as "Acquired" . Since I use 5-6 CC Apps frequently, its a pretty huge list now and quite difficult to manage. Please guide me how to remove the uninstalled extensions from the list / clear the list of older extensions.
Hello there. When i try to download from exchange - no matter free or buy - just nothing happens. A short loading sign and thats it. No download, no error, nothing. Any ideas what i can do?
i have tried to cancel my free trial but on screen it tells yyo to ggo to manage my plan but when i try to manage my plan doesnt come up i have been trying for 3 days now to cancel it and cant even get a contact number or customer service heelp connection to do it how the hell can i cancel it
Dear Community, for the empirical part of my bachelor thesis, I examine various sub-areas around the topic of automation in desktop publishing. I would be very grateful if you could answer the survey under the following link by January 24, 2021: https://docs.google.com/forms/d/e/1FAIpQLSd-SkLEs0RXmtRLUgdOBet48-LOCY-7Wc-ROB-NgSTVTgLTKQ/viewform Participation takes about 10 minutes and is of course anonymous. If you have any questions, I am available in this forum via private message. Thank you in advance and best regards. Ennis Gundogan
Remote Online Notarization Free Webinar 1/27/21 10am PT /1pm EThttps://acrobat.adobe.com/us/en/business/webinars/remote-online-notarization-keeps-business-moving.html#sa_src=web-messaging Hi i have registered several times over the last couple of days for the notarization seminar on 1/27 but still have not received confirmation email yet other than the adobe note saying i am confirmed and look for an email shortly. I have added all of the necessary emails to the safe sender list and checked junk mail several times, anyone else have this problem getting a confirmation for class?
Add-on download buttons do not work in Exchange. I have been chatting with Adobe staff for 5 days, they could not solve my problem yet. Some say there is a billing problem and transfer it to the department, others say there is a technical problem, and transfer it to another department. The technical team says just try a different browser. They have no other information.
I create an extension with basic structure Is it possible to add a php page as part of that extension? My needs are to create some file transfer with a folder on a local server. I can not use "Libraries" because of my company policy.
For adobe exchange website. It seems the default sort is "most popular" rather than "most recent". Not sure if it's an expected change, as it's confused that newly added add-on is always in the oldest page (it's page #118 now). We plan to add some new add-ons recently, and how would it be possibly visible/populated to end customer...We guess this could confuse other producers, like us, who will post some new add-ons.
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.