adobe

Adobe Acrobat Reader doesn't print my drawing on a PDF

爱⌒轻易说出口 提交于 2019-12-13 22:11:56
问题 I have written and drawn some figures and text on my PDF but in my preview when printing, or when I print the PDF, it doesn't come out with the text and figures on the PDF. I have tried the options "forms and comments" and also "print as image" but this doesn't work. how did I make the figures? In the comment tab you can add a comment, highlight stuff and add Text and Figures I have also drawn stuff on my tablet using another app, but this also shows in Acrobat Reader, so shouldn't be a

Unable to find whats wrong with this code for adobe air

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-13 22:08:34
问题 Working with an adobe air app for the first time. Dont know whats the error with the following code. It is not alerting the "no" value. Please see, the saveData() and getData() are from this question. function check(){ var d1 = getData('item1'); var d2 = getData('item2'); if (d1 && d2) { alert('yes'); } else { alert('no'); } } saveData('item1','value1'); saveData('item2','value2'); // I know that its ridiculous to save the data and then reset it. // But This is how the main code works. sorry.

CS3 Flash - Error #2044: Unhandled IOErrorEvent:. text=Error #2035: URL Not Found

泄露秘密 提交于 2019-12-13 21:12:32
问题 The .swf files are in my library and on my hard drive, why is it saying it can't find them? import flash.display.Loader; import flash.events.MouseEvent; import flash.net.URLRequest; var myLoader:Loader=new Loader(); myLoader.x = 0; myLoader.y = 100; btn1.addEventListener(MouseEvent.CLICK, movie1); function movie1(myevent:MouseEvent):void{ var myURL:URLRequest=new URLRequest("Phase1IP.swf"); myLoader.load(myURL); addChild(myLoader); } btn2.addEventListener(MouseEvent.CLICK, movie2); function

import fl.data.DataProvider; is not working in Adobe CS4

删除回忆录丶 提交于 2019-12-13 20:12:06
问题 How can I use import fl.data.DataProvider; in Adobe CS4. When I try to import it showing 1172: Definition fl.controls could not be found. 回答1: the fl library will not show up in your IDE until you drag a component that actually uses it (in this case, a component that uses a data provider) into your library. you can manually add fl to your class path if you want so that it's always there, but it's not more useful since you'll need the target component in your library during compile time anyway

need to generate UUID for windows system in ExtendScript

我的未来我决定 提交于 2019-12-13 18:22:58
问题 I have used the below code to generate DocumentID and InstanceID for the links of .indd files. This works fine on MacOS. Can anyone suggest similar UUID generation code on Windows system. Is there any such library available on windows system? function generateUUID() { var cmd = 'do shell script "uuidgen | tr -d " & quoted form of "-"'; return app.doScript(cmd, ScriptLanguage.applescriptLanguage); } var genDocID = 'xmp.did:' + generateUUID(); 回答1: TLDR; Below are a couple of different ways to

Queries regarding digital signature in PDF

落爺英雄遲暮 提交于 2019-12-13 16:25:34
问题 I was going through the official PDF spec. I came across a digitally signed PDF here. While I was analyzing its catalog dictionary, I saw this: I have some queries regarding this: As per page 736 of the spec, FieldMDP has no P parameter, that belongs to DocMDP (page 733). Of course, the PDF might have been modified by some third party who added an extraneous key to the dictionary. But I just want to confirm, if a P key is found in FeldMDP , is it to be ignored, or it has some meaning? As per

Image map in Flex

对着背影说爱祢 提交于 2019-12-13 16:14:30
问题 Anyone have an example of doing something like an image map in Flex? I'm not sure if that is the correct term, since I also want to do things like highlight the selected part of the image or show a popup bubble pointing to it. Any ideas? 回答1: Check this out: flexlib > ImageMap 来源: https://stackoverflow.com/questions/535003/image-map-in-flex

Build text callout with PDF Clown

女生的网名这么多〃 提交于 2019-12-13 12:47:31
问题 the adobe acrobat reader have markup tool called "text callout". It's possible to build with PDF Clown a object of this type? 回答1: The sample provided by the OP looks pretty much like the PDF Clown StaticNote with a StaticNote.CalloutLine . The relevant code from the AnnotationSample PDF Clown cli example are: // Callout. composer.showText("Callout note annotation:", new Point(35, 85)); new StaticNote( page, new Rectangle(250, 90, 150, 70), "Text of the Callout note annotation" ).withLine(

Flex: Is it possible for a changewatcher to watch multiple variables?

天涯浪子 提交于 2019-12-13 09:32:04
问题 I have a Flex variable that depends on a number of other Flex variables. I want this variable to be updated any time any of the variables it depends on are updated. Is it possible to do this using a single ChangeWatcher? Specifically, can the following code be modified so that it uses only one ChangeWatcher and if so how? <?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com

Convert AS3 to FLA for generating SWF

本小妞迷上赌 提交于 2019-12-13 09:13:31
问题 I Need to manipulate the compiled SWF and recompile it back to SWF and deploy. I have tried 3 options but no luck on all the options : 1) Converting swf to fla to AS3, I was able to edit the AS3 file, then I am not able to move forward to create the new FLA & new SWF file. 2) Converting swf to flex project and importing to flex builder, then while publishing it says that I did not main MXML file to get new SWF. 3) Currently I had tried converting AS3 to FLA, but no luck. If you have any known