See the CEP GitHub org to learn more:
Questions tagged [adobe-extension]
20 questions
0
votes
1 answer
Is it possible to detect the suppression of an object in InDesign using CEP/ExtendScript?
I'm currently creating a plugin on InDesign and I would like to know if it's possible to detect if the user deletes an object ?
Because I would need to retrieve the id of the deleted object to remove it from an array.
I didn't find anything in the…

Fitspade
- 377
- 1
- 11
0
votes
1 answer
CEP/JavaScript : How to get the center of a circle?
I create a circle with this method:
var yMinCir = height - 1515.80/2.667+8.5;
var yMaxCir = height - 1545.80/2.667+8.5;
var myCircle = page.ovals.add({geometricBounds:[yMinCir, 1312.63/2.667+8.5, yMaxCir, 1342.63/2.667+8.5]});
Is there a way to…

Fitspade
- 377
- 1
- 11
0
votes
2 answers
Adobe CEP 8 Photoshop-Image-Import
I created a PremierePro Extension which could download and import a file to a project. The same extension unfortunately does not work under Photoshop, because the host scripts app instance doesn't contain a project. I tried out different formats…

marcel
- 3,231
- 8
- 43
- 76
0
votes
2 answers
Polymer blocking keyboard input?
I inherited an Adobe CEP extension at work. Trying to wrap my head around an issue that makes it so absolutely no input from keyboard works on text inputs. To elaborate, absolutely no keyboard input works in Polymer's text inputs. The input get's…

jdmdevdotnet
- 1
- 2
- 19
- 50
0
votes
0 answers
Photoshop Image from html to layer(Photoshop extension)
I want to create a layer and at the same time put an image from html to it.
So far I did something like this:
var doc=document.getElementByID("img1"); //img1 is from html,it is an img tag
var newLayerRef =…

goca987
- 1
- 1