Calling custom COM- or .Net-based library from Adobe Acrobat/Reader JavaScript - acrobat

is it possible to extend javascript object model in Acrobat/Reader? For example, is it possible to call a custom COM- or .Net-based library from Acrobat/Reader using javaScript. Or is their a diffrent way to develop and call custom libs?
Thanks
CommanderPeek

Related

Is there any extension example on implementing property editor in vscode?

I have been searching thru the documents and tutorials looking for api / extension examples to implement a GUI like the screenshoot above.
Is there any existing api to implement property editor? or do i need to implement GUI from scratch?
No, there's not. You can implement an own GUI via webviews, but that's about it.

Form Creation and Validation in Slim Framework

I gonna develop a form using slim framework. I know we can develop REST API's using SLIM. I need to know whether we can design forms and validate those.
Thanks in advance.
Slim doesn't give you these kind of utils. You could use external libraries to validate forms like Respect/Validation or you could use rapyd-framework (Notice that its development is now stopped),
a microframework built on top of Slim Framework, Twig, Symfony Forms,
Illuminate/Database, Twitter Bootstrap
that supports Symfony Forms.

Is there an open source library for calling Windows Native API

I have an application that needs to call that native API (Nt*/Zw* function calls in ntdll.dll). Is there an open source library that would provide me with the datatype definitions, function prototypes, maybe even a C++ wrapper for loading and unloading the dll dynamically?
There is an open source project called NativeTest from FSLogix that will do exactly what you are looking for. You can find the information here https://nativetest.codeplex.com/releases/view/107604

Xamarin.iOS Pdf search

We develop with Xamarin.iOS and are trying to search/highlight in a PDF.
There is an iOS class for searching, CGPDFScanner, but unfortunately no bindings are offered by Xamarin.
Is there a solution or we should forget about it?
We believe that there is a way to make bindings for existing iOS classes.
Or we could probably use an existing project, like PDFKitten, and make Xamarin bindings.
Any hints?
Xamarin offers way for creating binding library. If you have some working and tested solution available in Objective C, create Binding library in tamarin and use that. You can check detailed document of it from here
I have created binding library for one of my project where i had to integrate third party sdk which was only in objective C. I followed step given here and it worked.

Is there a way to expose "find" functionality in a node-webkit application?

Do I need to write my own find functionality to allow users to find text content on a page, or is there a way that node-webkit can expose pre-existing webkit find functionality?
Currently you can do this in your app with some library like this: http://www.seabreezecomputers.com/tips/find.htm
In current node-webkit there is no native UI to support this feature, but we'll see it in future if it has advantage.