adobe

SOAP Web Service Call From Adobe Acrobat Pro Java Script

被刻印的时光 ゝ 提交于 2021-01-29 13:36:15
问题 I have a question regarding Soap web service, As of now I have figure it out that soap Request and Soap Connect method for adobe only works on Adobe Acrobat Pro dc, It does not work on Adobe Reader, it means that It's not going to work in IE. I have a SOAP Web Service that I want to call from Adobe Reader and save the response of the web service on the Form field on Adobe. Is there anyway I can call the Soap web Service in the adobe. I read about Submit Button, But not able to get proper

Operate multiple arrays simultaneously

可紊 提交于 2021-01-29 09:05:15
问题 I am using as3 in adobe animate to create a video game. I have created multiple arrays with movie clips e.g. var A:Array [mc1, mc2, mc3] var B:Array [mc4, mc5, mc6] var C:Array [mc7, mc8, mc9] var anObject:DisplayObject; How can I operate all movie clips in all arrays simultaneously? I have tried this: mc_Player.addEventListener(MouseEvent.CLICK, Change_Position); function Change_Position (event:MouseEvent):void { {for each (anObject in A) & (anObject in B) & (anObject in C) // how can I get

addEventListener with ruturn in AS3 - How?

时光毁灭记忆、已成空白 提交于 2021-01-29 08:26:54
问题 I'm a new Flash AS3 job but I have a big problem using some OOP concepts like return from methods, when I needs a Event Listener code. The problem is that the function from Event Listener cannot return a value. How can I work with this issue? This is a code sample that I using on my AIR app. This code I want to re-use in other situations that I want to parse a directory files. private function initApp():void { try { // Seta o diretoório de molduras var directory = diretorio_mestre.resolvePath

in extendscript - Photoshop, dialog-box persistence?

笑着哭i 提交于 2021-01-29 04:15:09
问题 in extendscript - Photoshop, I would like my dialog-box check boxes to default to previously used choices ... anyone know if this is possible? 回答1: You have two choices. First choice: Using a //@targetengine Values can be made persistent over a session using a targetengine. First script //@targetengine myengine var x = 100; Second script //@targetengine myengine $.writeln(x); If you close Photoshop all of the values will be lost Second choice: Write to a file. I wont write an example here.

Need to JSON stringify an object in ExtendScript

醉酒当歌 提交于 2021-01-23 06:17:40
问题 I am working on processing meta data information of my Indesign document links, using ExtentdScript. I want to convert the object to string using JSON.stringify but when I use it, I am getting error saying: can't execute script in target engine . If I remove linkObjStr = JSON.stringify(linksInfObj); from below code, then everything works fine. What is the equivalent to JSON.stringify in ExtendScript, or is there any other possibilities to display linksInfObj with its proper contents instead

Need to JSON stringify an object in ExtendScript

徘徊边缘 提交于 2021-01-23 06:17:07
问题 I am working on processing meta data information of my Indesign document links, using ExtentdScript. I want to convert the object to string using JSON.stringify but when I use it, I am getting error saying: can't execute script in target engine . If I remove linkObjStr = JSON.stringify(linksInfObj); from below code, then everything works fine. What is the equivalent to JSON.stringify in ExtendScript, or is there any other possibilities to display linksInfObj with its proper contents instead

Security Method is No Security but Page Extraction and Document Assembly is not Allowed

回眸只為那壹抹淺笑 提交于 2021-01-13 09:34:12
问题 I have a very strange problem and I am not sure where the issue is. I am creating a PDF and not setting any security restrictions or a password. When I open the PDF in Adobe Reader DC and get the properties,it does show the Security Method as No Security. However, the Document Assembly and Page Extraction are set to Not Allowed. The PDF was created from a Word document and I simply did a save as PDF, no other options. 回答1: In General Please be aware that the "Document Restrictions Summary"

Adobe sign API - create a widget with pre-filling details

百般思念 提交于 2020-07-09 08:19:33
问题 I'm trying to implement the functionality, where users need to sign documents within the application process instead of sending a document to user for eSignature. I used Adobe Sign API(using trail account) to achieve this and was able to create a widget and get the embedded code to display the document in the HTML page successfully. But, while creating the widget I wanted to prefill the form fields and set field as read-only(first_name, address etc) in the document. I'm not able to access

How to simulate a key-press in ExtendScript?

笑着哭i 提交于 2020-05-13 14:45:06
问题 currently I want to write a script for AE, which relieves me of some keyboard inputs. Once the script is running, I want to click with the mouse, and then some key-inputs for example X Y and Z should be simulated. The little GUI and the eventhandler are no problems, but the simulation of key pressing. Please help. var win = new Window ("dialog", "Dummy"); win.aButton = win.add ("button", undefined, "Start"); win.bButton = win.add ("button", undefined, "Stop"); //Start win.aButton.onClick =