Re: Control playback of embedded MP3 using AxAcroPDF
You're not really providing any help. Can you give me an example or someplace that has some documentation?
View ArticleRe: Control playback of embedded MP3 using AxAcroPDF
The documentation is part of the Acrobat SDK.
View ArticleRe: "Access Violation" exception while accessing PDEImage in outside of the...
Thanks. Application is working fine after removing below two lines,PDPageSetPDEContent(objPDPage, gExtensionID);PDPageNotifyContentsDidChange (objPDPage); But why this issue is happening only in...
View ArticleRe: Reader XI: Removing Tools|Sign|Comment from Menu and Toolbar
Thank you, thank you, thank you.I use Adobe Reader on a tablet with limited screen real estate (duh). I fill out a blank form several times, every single day. It was so annoying having to close...
View ArticleRe: "Access Violation" exception while accessing PDEImage in outside of the...
Your code is wrong. As a programmer you must understand that errors only sometimes produce crashes. If you do char *x = malloc(100);free(x)...*x = 'A' ; This is clearly wrong. But it will only...
View ArticleObtaining a plug-In prefix for development
Hello, reading the Developing Plug-ins and Applications from Adobe Developer Support (April 2007),it is stated that one needs a prefix for plug-In. Where do i get such? Thanks.
View ArticleRe: Obtaining a plug-In prefix for development
There is a form in the SDK that you fill out with your information and submit it.
View ArticleRe: Obtaining a plug-In prefix for development
And be sure to start with the current SDK, not an 8 year old document. That said, I recommend keeping the old plug-in documentation for reference, as it has many merits over the current document, but...
View ArticleRe: Control playback of embedded MP3 using AxAcroPDF
I don't mean to be obtuse here, but I downloaded the SDK and looked at the documentation and can't find anywhere where it references how to do this. Is there someone who actually knows how to do this...
View ArticleRe: Control playback of embedded MP3 using AxAcroPDF
Look at HostContainer in the Javascript Reference.
View ArticleRe: Get the file path for a file that already exists into Acrobat.com cloud
I am getting back with an annoying situation. I have the open file name and path within a AVAppEnumDocs() callback function.PDDoc pdDoc = AVDocGetPDDoc(doc);ASFile fileinfo =...
View ArticleRe: Get the file path for a file that already exists into Acrobat.com cloud
Unfortunately ASFileSysDisplayStringFromPathProc doesn't indicate what encoding it will return a display string in. What you display looks like it might be UTF-8.
View ArticleRe: Get the file path for a file that already exists into Acrobat.com cloud
Files that are opened from Acrobat.com aren’t using the same file system as local files and any “paths” that are returned should be considered private. Why do you want/need it?
View ArticleRe: Get the file path for a file that already exists into Acrobat.com cloud
Yes. I am looking for a UTF-8 string. How can I get it from ASFileSysDisplayASTextFromPath() or additional alternatives?
View ArticleRe: Get the file path for a file that already exists into Acrobat.com cloud
Because later this file will be uploaded into a system by File.Copy win-shell execution. This system accepts only such operation instead of streaming.I need to upload the correct file name. How can I...
View ArticleCreating a certificate programmatically to use within DocSign
I am currently developing a Plug-In for Acrobat Pro to be used for our company to use locally. It will be used to programmatically create an electronic signature and certificate that uses the log-in...
View ArticleRe: Get the file path for a file that already exists into Acrobat.com cloud
But the files coming from the cloud are NOT (necessarily) local on disk – they may well be streamed on demand. So trying to get a local file path to them doesn’t make sense.
View ArticleRe: Creating a certificate programmatically to use within DocSign
You can’t automate the importing of a signature – but you could certainly create a certificate outside of Acrobat using any cryptographic libraries of your choosing and then simply execute against that.
View ArticleRe: Get the file path for a file that already exists into Acrobat.com cloud
I encounter this problem in the moment of enumeration the existing opened files, before sending them to my system. Later, if these files were coming from cloud and i get "Acrobat.com: myFile.pdf" (see...
View Article