acrobat

How can I open an Attachment from a PDF Portfolio?

孤者浪人 提交于 2019-12-25 13:17:23
问题 I'm currently creating a PDF portfolio which displays data in a dataGrid. There are a number of attachments and when I doubleclick the specific attachment I would like it to display in a new acrobat/reader window. Could anyone instruct me? Chris 回答1: As far as I know, this cannot be done in a web-based Flash file. It must be done in an AIR Application. See this Adobe article. Relevant information: In AIR 2 , you can open a file using the application registered by the operating system to open

How can I open an Attachment from a PDF Portfolio?

不打扰是莪最后的温柔 提交于 2019-12-25 13:17:15
问题 I'm currently creating a PDF portfolio which displays data in a dataGrid. There are a number of attachments and when I doubleclick the specific attachment I would like it to display in a new acrobat/reader window. Could anyone instruct me? Chris 回答1: As far as I know, this cannot be done in a web-based Flash file. It must be done in an AIR Application. See this Adobe article. Relevant information: In AIR 2 , you can open a file using the application registered by the operating system to open

Acrobat JavaScript - convert JavaScript page links to “real links”

筅森魡賤 提交于 2019-12-25 06:55:02
问题 The situation: I have ~1,000,000 PDF files. I am using Acrobat JavsScript to search for certain keywords in each of the PDFs, and then give the keyword a link by setAction("this.pageNum = n") . The pageNum value, n, is generated by my script, too. The result is that the user can go to page number n directly by clicking the link. The problem: I do not want the links to trigger JavaScript actions. Instead, I want to them to be "real links" . Each of the "real link" should point to the same page

How to associate search catalog file (.pdx) with PDF document

半腔热情 提交于 2019-12-25 03:22:55
问题 Using a .NET application, I am trying to create a PDF "table of contents" that references other files, like one would distribute on a DVD etc. For this purpose, I need a search index and catalog, so full-text search will work across documents. I have been able to automate the construction of the index by copying an "old" .pdx file (the directory structure is always the same) and then calling JavaScript from C#: var js = $@"catalog.getIndex(""{pdxFilePath}"").build('alert(""Hello"")', true)";

Adobe pdf printer doesn't creating the pdf file

纵饮孤独 提交于 2019-12-24 22:52:06
问题 I'm creating an add-in in Revit 2017. The addin will export drawing sheets to PDF files. So, whenever I try to export the sheet a dialog box appears to choose the location to save. I tried to turn off the Prompting programmatically by adding a key to the Windows registry (as described in Adobe documentation page 15-16). Now, the prompting got turned off and now I'm facing an issue. The issue is the Adobe Printer got stuck while creating the pdf file . See the below image: The PDF creating

Itextsharp seems to be corrupting a pdf form after filling it out; problems opening in Adobe Reader for WP7

青春壹個敷衍的年華 提交于 2019-12-24 12:15:14
问题 I'm trying to dynamically generate a pdf form from an asp.net C# application. The form is generated and emailed to some users. People have been able to open it on Adobe Reader for months now. Recently, there has been a request that users be able to read these pdf attachments on their mobile phones. Unfortunately, when these people try to open the pdfs on their phones, it says "There was an error opening the document." I tried opening the original form on my wp7 phone and it works. I sent a

Way of jumping to a page in a local pdf?

只谈情不闲聊 提交于 2019-12-24 10:50:02
问题 My question is similar to "How can I programmaticly open a pdf at a certain point?", but the PDF is local, not on a web server. I need a way to jump to a given page in a PDF that is on the users computer, that works across versions of Acrobat (or using an alternative PDF viewer like Foxit Reader). The PDF is going to be called from a Java app (it is only used on Windows, so cross-platform isn't a must), and right now it works with: int pageNum = 24; String manualPath = "C:\\Program Files\\Foo

Import image in Acrobat using JavaScript (preferred on document-level)

你离开我真会死。 提交于 2019-12-24 03:30:53
问题 I am going to implement a dynamic legend using JavaScript in Adobe Acrobat. The document contains a lot of layers. Every layer has an own legend. The origin idea is to implement the legend so, that it contains the images in a dialog box for the visible layers. I can only hide/show the layers by setting state to false or true (this.getOCGs()[i].state = false;) on document-level. Question 1: Can I extract data from layer somehow for legend establishing? I think no, as we only have these

Combine all files in a folder as pdf

青春壹個敷衍的年華 提交于 2019-12-24 00:36:52
问题 My current problem is that starting from the root folder I have to look into each folder and if one file exists then save it as a pdf with the folder name in a different location. If more then one file exists then combine this into one file, save it as a pdf with the folder name in a different location. Example: - Root Folder - Folder1 - FileA.tif - FileB.tif - Folder2 - FileC.tif - Result Folder - Folder1.pdf (Contains FileA.tif and FileB.tif combined into one pdf) - Folder2.pdf (Contains

Setting outASPathNames for Acrobat Dialogue return value

爷,独闯天下 提交于 2019-12-24 00:28:50
问题 I am writing a plug-in for Adobe Acrobat and having some issues I am setting my dialogues implementation of AVAppOpenDialog variable *outASPathNames in the code at the bottom. It says in the method that this variable is a ASPathName** Here is how I am setting it. Even though the file is called file.jpg it sometimes shows different names like A9R5D8F.tmp or just not work. I suspect I am not setting the variable correctly, but black box testing is very hard when you don't get told what is wrong