adobe

Populate dynamic XFA pdf form itext

我们两清 提交于 2019-12-11 03:58:54
问题 I have a XFA based pdf form that we need to be populate using java. Can you suggest the best approach. I was able to generate the xfa xml for the pdf using iText. public void readXfa(String srcPdfFilename, String destXMLFilename) throws IOException, ParserConfigurationException, SAXException, TransformerFactoryConfigurationError, TransformerException { PdfReader reader = new PdfReader(srcPdfFilename); XfaForm xfa = new XfaForm(reader); Document doc = xfa.getDomDocument(); Transformer tf =

URL detection adobe air desktop widget

ぐ巨炮叔叔 提交于 2019-12-11 03:49:13
问题 I'm new in Adobe Air, I need (urgente!!!) to do a widget with Adobe Air that monitors the URLs where I navigate and when I enter to a specific site the widget appears in the front of my screen and display a message. The problem is that I don't know how to listen the current URL of my browser using Adobe air (flash). I was trying with HttpStatusEvent but I can figure aut how to retireve the URL from my browser. Thanx!! Carolina 回答1: See my answer to this question This wouldn't be easy; it may

Accessing a shared folder over a network in adobe air

拜拜、爱过 提交于 2019-12-11 03:13:42
问题 I'm trying to write to a shared folder on a windows network in AIR using the File class. I don't understand how to format the path to the shared folder. I get one of who errors with everything I've tried: "The specified folder does not exist" and "there is a parameter missing". The UNC path to access this folder from my computer is like this: \\localdev01\platefiles Here are the different path formats I've tried to access this folder: \\localdev01\platefiles /localdev01/platefiles file:/

How to start an Adobe Reader or Acrobat from VB.NET?

扶醉桌前 提交于 2019-12-11 02:05:51
问题 From Windows Explorer, double-clicking a PDF opens the document in Adobe Reader. Perfect! But PROCESS.START(pdfdocumentpath) in my Winforms application opens the PDF in IE. Is there a setting somewhere that will allow PROCESS.START (or other VB.NET code) to open the document in the same way as Windows Explorer? Some of my users have 32-bit machines, some have 64-bit machines. Some have Adobe Reader, some have Adobe Acrobat. Some may be a version or more behind, some will be current. Some will

Writing data into a text file in Adobe Flex

允我心安 提交于 2019-12-11 01:07:39
问题 I am new to Adobe Flex. I want to write some data stored in a string variable into a text(txt) file. Can some one add sample code here would be helpful for me. Thanks. 回答1: You can write to files if you're targetting Flash 10. Read this article to find out how to do it: http://www.mikechambers.com/blog/2008/08/20/reading-and-writing-local-files-in-flash-player-10/ 回答2: You cannot write to files in Flash, but you can if it's an AIR app. Review the File class in Adobe livedocs. 回答3: Since Flash

Should I wait for Flash Player 10.1 or go with Flash Lite 3 to develop Flash content for mobile phones and devices

别来无恙 提交于 2019-12-10 21:24:09
问题 Adobe are launching Flash Player 10.1 in the first quarter of 2010, this will provide consistent runtime across desktops and mobile devices (so I assume if it was built for the web it will work on the mobile). I am about to start developing an flash based application for mobile phones, should I look at using FLash Lite 3 or wait until Flash Player 10.1 comes out. I guess I could have my flash lite 3 app out there in a couple of months by which time Flash Player 10.1 will be coming very soon.

Can Adobe Flash Builder be used to debug and profile OpenLaszlo SWF10/SWF11 applications?

霸气de小男生 提交于 2019-12-10 20:07:49
问题 I've read that Adobe's Flash Builder 4.0+ supports profiling of ActionScript 3 applications. Is it then possible to use Flash Builder to profile OpenLaszlo SWFx runtime applications accordingly? The conversion of OpenLaszlo's LZX source code into an SWF file happens in multiple steps, and the compiler generates ActionScript source code during this process. How could that source code be used to debug an application inside Flash Builder? Based on what I know about Flash Builder, ActionScript 3

Adding custom namespace to metadata (BitmapMetadata)

百般思念 提交于 2019-12-10 17:39:50
问题 Here's a quick question: how to correctly add a custom namespace to XMP using BitmapMetadata ? Let's say I want the namespace to look like this: xmlns:MyNamespace="http://test" There's no clear way how to add the namespace in the BitmapMetadata , so I tried this: //I retrieve the image frame (Frame[0]), then: var metadata = (BitmapMetadata) frame.Metadata.Clone(); //Covering all bases metadata.SetQuery("/app1/ifd/PaddingSchema:Padding", 4096); metadata.SetQuery("/app1/ifd/exif/PaddingSchema

How to force to show PDF in google chrome using Adobe PDF Plug-In only

[亡魂溺海] 提交于 2019-12-10 15:21:28
问题 I am facing a problem while showing a pdf in Google Chrome. The issue is that Chrome shows some pages of the pdf as black. This happens when Chrome PDF Viewer is enabled. If I disable this plug-in and use Adobe PDF Plug-In it works fine. Is there any way to show a PDF in Google Chrome using the Adobe PDF Plug-In only. AS I am showing PDF using an HTML object tag, is there any parameter which forces Chrome to show the PDF using Adobe PDF Plug-In? 回答1: There's no way for a website to force the

How to use app.selection[0] for scripts in Adobe InDesign

馋奶兔 提交于 2019-12-10 14:33:15
问题 I would like to run code by testing only the current selection (not the whole document) and I'm having difficulty understanding exactly how the array "app.selection" and its methods work. To start, I use a "for" loop to cycle through each item selected by using: for(loop = 0; loop < app.selection.length; loop++){ var sel = loop; } This works okay, but when I want to get into determining what each item IS, it gets a little weird. For example, for(txt = 0; txt < app.selection[sel].textFrames