『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
Adobe has released a Document Cloud View SDK that will display PDFs that you control natively. It's simple to use; only a few lines of JavaScript are all you need to deliver an "Adobe Quality" reading experience for text and fonts, graphics, images, and page objects. The View SDK provides a Playground that demos the full capabilities of the SDK. Web developers can try different viewing configurations with example pages before implementing any code within their website. Or they can test the SDK against their webpages. All of this is important for content owners to ensure their users are getting predictable experiences across all desktop and mobile devices for all major browsers. And it's FREE to use.
Hi, I have a requirement to convert some interactive webpages (each page contains html controls like checkbox. DDL, etc) into a pdf document with the interactive part intact. I wanted to know how do achieve this using Adobe SDK. Just to give you an overview as to what my expectations are i've selected them below. Get each pages contents from SQL (our back end storage for the data rendered on a page) each page will be called a step going forwardcreate a pdf documents equal to the number of steps.Create TOC for all the stepsCreate Naviation based on control descision and user selection. as mentioned there can be html controls like dropdownlist/checkbox list/radio button list etc. when a user makes a selection i want to add logic to take the user to step(page) x. Can someone tell me if the above is something achievable using the adobe sdk in c# .net or javascript? if yes how do i get started? where do i download the c#.net/ javascript libraries from? and also are there any
Hi all,I have a problem while developing an extension for Photoshop.I have generated action code that I write in a .jsx file. I need to change the absolute path to a relative one so that the user has access to the file, regardless of where the extension was installed..jsx file: function step7(enabled, withDialog) { if (enabled != undefined && !enabled) return; var dialogMode = (withDialog ? DialogModes.ALL : DialogModes.NO); var desc1 = new ActionDescriptor(); desc1.putInteger(cTID('Idnt'), 4); desc1.putPath(cTID('null'), new File("~/AppData/Roaming/Adobe/CEP/extensions/Mockups_Extension/psd/texture.png")); desc1.putEnumerated(cTID('FTcs'), cTID('QCSt'), sTID("QCSAverage")); var desc2 = new ActionDescriptor(); desc2.putUnitDouble(cTID('Hrzn'), cTID('#Pxl'), -1.13686837721616e-13); desc2.putUnitDouble(cTID('Vrtc'), cTID('#Pxl'), 0); desc1.putObject(cTID('Ofst'), cTID('Ofst'), desc2); desc1.putUnitDouble(cTID('Wdth'), cTID('#
I posted this earlier in animate forum. Hope it is ok to repost here.I am embedding an image in its own class called character.the code for the class is here:package{import flash.display.DisplayObject;import flash.display.Sprite;public class Character extends Sprite{[Embed(source="../images/character.png)]public var GameObjectImage:Class;public var gameObjectImage:DisplayObject = new GameObjectImage();public function Character(){this.addChild(gameObjectImage);}}} Then in my application class I create a new character object like this:public var character:Character = new Character(); Then in a function i called createGameobjects I add the object to the stage with: addGameObjectToStage(character, 50, 50); which uses this function also in the application class: public function addGameObjectToStage(gameObject:Sprite, xPos:int, yPos:int):void{stage.addChild(gameObject);gameObject.x = xPos;gameObject.y = yPos;} I just cant get this working. I was embedding images
Hi all, I have a data set and want to save as CSV download... Basically it's working however my mac is not recognizing the /n (new lines) Did I script this wrong? Any ideas how to get this working on a mac? Also when I look at the download file I do not see any line feed or chr(13) return characters.... foreach ($records as $record) { $alldata .= $record['id'] . "," .$record['Name'] . "," .$record['Info'] . "\n"; } $response = "data&colon;text/csv;charset=utf-8,id,Name,Info\n"; $response .= $alldata; echo '<a href="'.$response.'" download="test.csv">download</a>';
I'm implementing a Windows property handler class for PDF files. It uses the Adobe XMP SDK to read and write metadata to the PDFs. When the property handler is initialized, it loads up the necessary XMP components by calling SXMPMeta::Initialize() and SXMPFiles::Initialize(). Now the XMP documentation says that when you're done using the toolkit, you should explicitly terminate the XMP components by calling SXMPFiles::Terminate() and SXMPMeta::Terminate(). So I put those function calls in my class's destructor. I noticed, however, that those function calls cause Windows File Explorer to slightly hang when displaying PDFs. I think they've also caused some random crashes as well. When I exclude the calls, everything seems to work fine and fast. So I was wondering if I can either get away with not calling those functions, or if there's perhaps a better place to put them outside of the class destructor. For example, would it be
Hi all , I am following a tutorial.The code below should load two images into my scene.I have an .as file and an .fla file in a folder called src and two images in a folder called images. I am compiling my .as file in Adobe Animate.When I try to embed my images using:[Embed(source="../images/background.jpg")]it does not want to work.Nothing is loaded and there are no errors compiled.I am using an .as file to control an .fla file compiling with Adobe Animate. The tutorial is using Flash Builder. Im not sure if I can use this format:[Embed(source="../images/background.jpg")]Here is my code. It is simple. It should load background.jpg and character.png from the images folder.In order to control the character onstage with keyboard controls.package{import flash.display.Sprite;import flash.display.DisplayObject;import flash.events.KeyboardEvent;import flash.ui.Keyboard;import flash.events.Event;//[SWF(width="550", height="400",//backgroundColor="#FFFFFF", frameRate="60")]public class BasicSc
Hi,I'm on a Mac with High Sierra and have MAMP v5.4I have some old legacy php code that uses mysql database connections format.I would like to get it working again for a while - so I can review it and later do updates to PDO.Is there a way I could set it up so it can use my old legacy mysql database connections format.?Thanks Dave
I am modifying a receipt screen where I need to make a text box required for certain options. I need the InstrumentNumber cell required for option values Check and CreditDebit, but I'm really new to ColdFusion programming and I'm not really sure how to do what I need to do.Any suggestions or help would be greatly appreciated.<td class="NormalCell"><select name="Instrument"><option value="Check">Check</option> <option value="Cash">Cash</option><option value="CreditDebit">Credit/Debit</option><option value="Other">Other</option></select></td><td class="DataLabel" style="background: smokewhite;"><div align="right">Instrument#:</div></td><td class="NormalCell"><input type="Text" name="InstrumentNumber" size="12"></td>
http://download.adobe.com/pub/adobe/framemaker/2019/FDK2019_64-bit_FDK.zip is 404
Hi all,I'm trying to create a simple form selection using a JavaScript loop and it is not displaying on the page. The span tag by itself will display the items however when I put it inside of the select tag it does not display. I'm not sure exactly what's wrong and could use any assistance.Thanks Dave<form><select><span id="demo5"></span><option value="123">123</option><option value="456">456</option></select></form><script>var cars = ["BMW", "Volvo", "Saab", "Ford", "Fiat", "Audi"];var text = "";var i;for (i = 0; i < cars.length; i++) {text += "<option value=\"" + cars + "\">" + cars + "</option>";}document.getElementById("demo5").innerHTML = text;</script>
Hi all,I have a basic html table several rows.I would like to hide row 2.so i made a css style like:<style type="text/css">.hiderow { visibility: collapse;// also tried display: none}</style>then on row2 i set like: <tr class="hiderow"> <td>test/td> <td>test</td> </tr>problem is it doesn't work. Any ideas how to get it to work? Also in all browsers?Thanks much for your helpDave
Hi,I am a novice, but trying to learn and I am ask for some help if anyone can. I have created a site but it is not the final site, just a draft. www.railwaychaplain.net I have created a page with a contact form www.railwaychaplain.net/contact.php I have placed the code I have used below. every thing looks ok for a simple form, but no message is received when 'Submit' is selected. Would anyone please be able to correct whatever it is I have done wrong? Thank you for your help.Kind regards, Liam--------<?php/*subject for RailHope email*/ $emailSubject = 'RailHope email form'; $emailRecipient = 'liam.johnston@railwaymission.org'; /* Data variables */ $firstnameField = $_POST['firstname']; $lastnameField = $_POST['lastname']; $youremailField = $_POST['youremail']; $subjectField = $_POST['subject'];$body = <<<EOD<br><hr><br>firstname: $firstname <br>lastname: $lastname <br>youremail: $youremail <br>su
Please advise me how to create an ESTK script that can extract names of graphics being used in a book. And further, is there a way of determining which graphics a FM file uses without opening the actual FM file.
I need guidance in programming my iOS, Xcode, Swift app to copy my PDF NSData stream into the Files iCloud folder on my iPhone. Your Adobe Scan app can move a PDF file into the Files folder on my phone. I am trying to use UIDocument but can not get the correct NSURL. Did Adobe get special file permission to do this?
I am using Adobe Lifecycle. What I would like to do is when a choice is made from a drop down list, this sets the mail to for the submit button to the correct email address's. My drop down list has Items like leadership, waste, emergency, staff meetings. For each item in the list I need the submit form button to email to a different emails. I have specified Item values for my dropdown list.I know this will take java script to get it done and I have very little experiance with it. I know if I was writing in MS exel it would be and if or case select statement,any help would be great.Thank you Chuck T
I am trying to execute a HTTPXML request to push data via API from a PDF to a HCL LEAP platform. This code is set to run on Javascript via button click with the PDF. All relevant fields on the PDF are set as variables. The code works when ran within a browser. I am stuck on how to get the PDF to open a HTTP handler to perform the function.var jp = {};jp.flowState = 'ST_PendingPDFupload';jp.pressedbutton = 'S_Submit1';jp.F_CAC = this.getField("F_CAC").value.toString()var s = JSON.stringify(jp); //covert to string to send in XHRvar UID = this.getField("UID").value.toString();var urla = 'https://domain/forms-basic/secure/org/data/ba48a093-5a1d- 40ef-87f6-bb196b95fa9f/F_NewForm1/'var urlb = 'freedomIdentifyKey=00'var url = (urla + UID + urlb)var client= new XMLHttpRequest(); //open an HTTP requestclient.open("PUT",url,false);client.setRequestHeader('Content-Type', 'application/json');client.setRequestHeader('Accept', 'application/json');client.setR
how do i get the html code of adobe flash media live encoder
I am running MS Access 2010 and use VBA extensively. I would like to take a model "stamp" and, based on variables, fill in fields, such as Date, Amount, etc. and insert it into a pdf file. If possible, I would like to avoid each user having to have the adobe editor installed on his/her workstation.Here's an update... since a limited number of users will need the capability to do this, these operators already have Adobe Acrobat XI Pro installed. So, I will be able to interface with it to make this happen. Does anyone have any suggestions for this?Thanks, Eddie
If I were writing this to find opened word documents the code would beSet wdApp = GetObject(, "Word.Application")This gives me the number of open word documents.How can I do the same for pdf files?
How to convert adobe air app to HTML or any web-based language?I have adobe air app in working and want to make it run on the browser.Thanks in advanced.
Hi all,Thanks in advance for taking a look at this.I am trying to create a force refresh at one point in my Single Page App.My general problem is that when I update the page on the server - the changes do not appear because the cache needs to be refreshed. So I am trying to refresh automatically somehow.So, I have a link on the page that has an onclick="javascript:main()" which triggers a function that sets some vars and then goes to a section of the Page like this:Part of the functions is:---// set vars etc......// make time stamp for query strings force auto updatevar tm = new Date().getTime();window.location.replace("#main1?tm=" + tm);---example result:https://mysite.com/test.html#main1?tm=1555539113122Basic question: does the tm(timestamp always different) force a refresh? like...https://mysite.com/test.html?tm=1555539113122I am not sure it is really working. maybe because the xxx.html#main comes before the ?tm=xxx?My question is this the correct way to force an automatic refresh t
At First, I tried to Request my page without cfm extension using IIS Url rewrite module and I have succeeded. Now, I want to get back my .cfm extension to the requested url. I changed my web.config file as before and uninstalled url rewrite module, few pages in my website are accessing with .cfm extension and few are throwing "HTTP Error 404.0 - Not Found" even though the file exists. Error code - 0x80070002 ------------------------------------------------------I have used this for rewriting --------------------------------------------------------- <rewrite> <rules> <rule name="Hide .cfml ext"> <match url="^(.*)" ignoreCase="true" /> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsFil
Hi all,Using PHP, I am trying to connect to an external service which requires authentication. Rather than storing the private authentication text in the clear on a PHP Page with variables, I'm curious what the best encryption method would be for this purpose.some choices i've seen - mcrypt - openssl_encrypt and others...Some of the possibilities seem outdated.Can anyone point me to a current basic standard for 2018 to get me started?ThanksDave
Dear All,I want to build an html5 extension. I do not know how to start ?. I have download from below mentioned site.GitHub - Adobe-CEP/CEP-Resources: Tools and documentation for building Creative Cloud app extensions with CEP . Please suggest me, how do i execute and samples.Regards,Prakash C
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
すでにアカウントをお持ちですか?ログイン
アカウントをお持ちではありませんか? アカウントを作成
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.