
sharp_idea16B8
Adobe Employee
sharp_idea16B8
Adobe Employee
Activity
‎Jul 11, 2019
09:40 PM
2 Upvotes
Hi, Can you try the following: 1. Put up a `"trace": true` in launch configuration file and share the logs that appear in `Debug Console`. It will help in the investigation of issue#1,2,3 that you have mentioned. 2. Regarding crash: in which mode you are using the extension(See: ExtendScript Debugger - Visual Studio Marketplace `extensionMode` configuration)? Default is `active`. If you are using `active` mode, can you try using `passive` and see if it helps with crash?
... View more
‎Apr 25, 2019
10:48 PM
You can use "Batch Export to JSXBIN" functionality mentioned here: ExtendScript Debugger - Visual Studio Marketplace However it may not serve the exact use case you have mentioned but it can be used to export all your js(x) scripts as once. By specifying directory path, It will export all the js(x) files recursively in that directory to jsxbin. May be you can write a shell/batch script as a wrapper over above to exactly serve your use case. E.g. First Use above to export all your js(x) files and then move all jsxbin files to a directory of your choice.
... View more
‎Apr 12, 2019
12:06 AM
2 Upvotes
I suspect the problem is with targetSpecifier. Can you try following: 1. Remove targetSpecifier and engineName from launch.json 2. Select Indesign target and engine from `Select the target application` at the status bar in the bottom. After selecting the target and starting the script, in the Output window, what is the value of `targetSpecifier`?
... View more
‎Apr 11, 2019
11:32 PM
Can you attach screenshot of whole VSCode window with this error?
... View more
‎Apr 11, 2019
10:32 PM
May be there is some syntax error in your script. Can you try with a sample script(`alert("Hello World");`) first and see if that works? Also in the configuration, ` "program": "${file}"` means that your currently focussed script(.js/.jsx) in the editor window will be executed.
... View more
‎Feb 26, 2019
10:53 PM
2 Upvotes
`#targetengine "session";` does not work in Visual Studio Code Extension. The problem that is happening is, in ESTK, this statement creates a new engine with name `session` and executes your script in this engine. To do this in Visual Studio Code Extension, you need to put a configuration similar to below in `launch.json`. ``` { "type": "extendscript-debug", "request": "launch", "name": "Ask for script name", "program": "<Absolute Path to your JSX file>", "targetSpecifier": "indesign-14.064", "engineName": "session" } ``` The above config will execute your script in InDesign CC 2019 and engine `session`. Can you try this and let us know if you still observe the issue?
... View more
‎Feb 24, 2019
09:05 PM
Could you please attach some sample script? I am assuming you are using InDesign CC. If yes, then which version?
... View more
‎Nov 16, 2016
12:49 AM
Hi, launch images of proper dimensions are required by iOS to scale the applications accordingly. This is a mandatory requirement from Apple. Also the applications which does not include launch images are rejected by Apple when uploaded to App Store. Follow this: Launch Images on iOS with Adobe AIR
... View more
‎Sep 11, 2016
11:45 PM
The bitcode is disabled by default. "ld"(Apple's Dynamic Linker, which is used by AIR SDK to link libraries to create the final IPA) requires that each and every library that are packaged with the application, should contain bitcode. Even if 10 out of 9 libraries contains bitcode and 1 does not contain it, the "ld" will skip embedding bitcode in the final binary. So the ipa that will be generated will NOT be having any trace of bitcode in it. As of now, our AIR runtime binaries does not contain bitcode embedded in them, so you CAN'T generate an ipa which have bitcode in it. Also for uploading iOS applications on Apple app store, bitcode is NOT required as of now. Refer: App Thinning (iOS, tvOS, watchOS) So the error that you are getting might be due to some other issue. Please share the resources that you are using to package your application so that we can look into the issue further. My email ID: arguptaATadobeDOTcom.
... View more
‎Jan 31, 2016
11:19 PM
I think the problem is that the domain you are using is not accessible through HTTPS. www.foo.com if accessed through HTTPS is giving an certificate authority invalid exception. For universal links to work your domain should be accessible through HTTPS.
... View more
‎Jan 28, 2016
09:52 PM
Hi adevforgama, there are two invoke events generated. The first one doesn't contain any data. While the second one contains the url information. Have you checked the second invoke event? It should contain the required url information.
... View more
‎Jan 07, 2016
12:57 AM
1 Upvote
Hi Mr. Baker, Can you share your environment details like Flash Pro Version and AIR SDK Version? Also could you please share your sample xml descriptor?
... View more
‎Dec 07, 2015
10:03 PM
Actually this problem appears with VM Ware only. With Windows machine I never saw this problem.
... View more
‎Dec 07, 2015
07:43 AM
Are you using Windows VM Ware or is it just a normal Windows Machine?
... View more
‎Oct 06, 2015
09:41 AM
1 Upvote
I think you may have misinterpreted my wordings. That link was just for information purpose. My mistake I didn't posted official link to that. Anyways, you are right in your assumption that NSUserActivity is coupled with Invoke event in AS3.
... View more
‎Oct 05, 2015
03:54 AM
We have added the support for iOS 9 Universal links in AIR 19. You can set up your domain, read more about Universal Links at: Breaking down iOS 9 Universal Links
... View more