adobe

How to restart a standalone Adobe Air/Flex application

99封情书 提交于 2019-12-19 03:14:43
问题 How can I get a standalone Adobe Air/Flex application to restart itself? It doesn't work with the suggested solution on: http://www.colettas.org/?p=267. Any help would be great, Thanks. 回答1: package { import mx.core.Application; import mx.core.WindowedApplication; import adobe.utils.ProductManager; public function reboot():void { var app:WindowedApplication = WindowedApplication(Application.application); var mgr:ProductManager = new ProductManager("airappinstaller"); mgr.launch("-launch " +

Adobe Air ios packager

筅森魡賤 提交于 2019-12-18 13:38:21
问题 There seems to be a lot of confusion regarding deploying Adobe Air apps to ios after the restrictions were lifted. Before apple lifted the restrictions you had to go through the process documented here: http://blogs.adobe.com/cantrell/archives/2010/09/packager-for-iphone-refresher.html using the Packager for iPhone. But now that the restrictions have been lifted and the Air 2.7 update we can use the same ADT tool in the flex SDK that we use with all air applications. My understanding is that

How to view particular page of an pdf using HTML in browser?

佐手、 提交于 2019-12-18 09:47:23
问题 I would like to open a pdf file and show particular page when I press on a button What I have tried inside an onclick listener is : $("body").prepend("<object id='largePdf' data= '" + sourceFolder + "MyNews/2013/08/16/0/0/A/Content/1/A_ALL.pdf#page=1' type='application/pdf' width='1861' height='3061'>alt : <a href= '" + sourceFolder + "MyNews/2013/08/16/0/0/A/Content/1/A_ALL.pdf#page=1'>pg001.pdf</a></object>") The problem is , it seems it can not ref to and just show the page 1, also , the

Why is one of these two itext 7 signed and validated document is not valid with Adobe DC reader?

浪子不回头ぞ 提交于 2019-12-18 09:33:36
问题 I've two pdf documents certified (signed and validated with the same mechanism based on Itext 7 ) and when i use adobe reader DC to check their validity, only one has the green mark. the good one: https://1drv.ms/b/s!AkF6t4TavwMvgxWaidlUqvPvHH1r the bad one: https://1drv.ms/b/s!AkF6t4TavwMvgxQCMdGY61S1EvUh Regards David L 回答1: This is not an Adobe bug, it's a feature. (And an iText bug) When Adobe performs the cryptographic validation, it will also perform additional checks to see if a

What is the difference between iText, JasperReports and Adobe LC? [closed]

会有一股神秘感。 提交于 2019-12-18 08:59:26
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 3 years ago . Actually I want to know the difference or comparison between different PDF Creation/generation techniques For Eg. IText,Adobe LC,Jasper Reports etc. I would like to know the exact advantage/disadvantage of using each of them. Currently I am using Adobe LC ES2 and would like to

PDF hostContainer callback

与世无争的帅哥 提交于 2019-12-18 05:45:10
问题 Following this SO solution here to notify clients of a click event in a PDF document, how is it possible to notify the client when the PDF gets submitted by the client using this.myPDF.submitForm("localhost/Handler.ashx?r=2) function? The PDF File is created inside a user control then rendered into a HTML object: string container = ("<object data='/myfile.pdf' type='application/pdf'></object>"); The JS file attached to the PDF is done like this: var webClient = new WebClient(); string

Actionscript - Obtain the name of the current function

∥☆過路亽.° 提交于 2019-12-17 19:18:46
问题 I want to get the name of a function from inside that function. e.g.: function blah() { //I want to get the string "blah" here, from the function's name } Or at least the Function object? 回答1: Use arguments.callee to get a reference to the current function. I you want to get the function name, it is a bit trickier: All functions are treated as method closures (pieces of code which can be passed around as an argument), so they do not own a reference to an enclosing class type, nor do they have

How to specify parameters to google chrome adobe pdf viewer?

瘦欲@ 提交于 2019-12-17 07:23:51
问题 I have an embed tag like this: <embed src="../../Content/PDF/StockReport.pdf#zoom=50" width="100%" height="100%"> the #zoom=50 is a parameter that tells the pdf reader to zoom to 50%. This works in all browsers but google chrome because chrome has a built in pdf viewer. How can I pass this same parameter to google chrome's pdf viewer ? 回答1: After checking various chrome bug reports, I can confirm that Google Chrome ignores the default functionality of Adobe PDF viewer. At the time of this

Is it possible to execute JSX scripts from outside ExtendScript?

纵饮孤独 提交于 2019-12-17 07:05:41
问题 Typically when you're writing a .jsx script to automate an Adobe product (like InDesign, Illustrator or Photoshop), you write, debug and execute the script from the ExtendScript IDE. Is it possible to bypass ExtendScript and run the script from a third program? I think Adobe products have a built-in JavaScript interpreter which ExtendScript can connect to to access the Adobe object models and automate their software. I'd like to be able to connect directly to that interpreter and run jsx

PDF created with FPDF cannot be opened by Adobe Reader

偶尔善良 提交于 2019-12-14 03:11:18
问题 My PDF file cannot be opened with Adobe Reader. What's weird is that the PDF used to work in Adobe Reader just a few days ago and now it does not work, and of course I didn't modify the code otherwise it would be easy to fix. I validated my PDF and learned it was a PDF/A-3, could be that it is not a PDF/A-1? If so why did it work for a time and suddenly stopped working? EDIT The problem was that somehow, some HTML code was output inside the PDF file, thus making the PDF file invalid for Adobe