새로운 Adobe 커뮤니티에 오신 것을 환영합니다.
Learn how to customize the way you work with Adobe apps.
최근 활동
public class MoveAssetTmpToOriginalPath implements WorkflowProcess { private static final Logger LOGGER = LoggerFactory.getLogger(MoveAssetTmpToOriginalPath.class); @8550701 private SessionService sessionService; private ResourceResolver resourceResolver; @8550701 private MailService mailer; @8550701 private UserPropertiesService userPropertiesService; @2226279 public void execute(WorkItem workItem, WorkflowSession workflowSession, MetaDataMap args) throws WorkflowException { try { resourceResolver = getSessionService().getReadServiceResourceResolver(); WorkflowData workflowData = null != workItem ? workItem.getWorkflowData() : null; String tempPath = null != workflowData ? workflowData.getPayload().toString() : null; String[] tempPathSplt = null != tempPath ? tempPath.split("/") : null; String replctAsstName = null != t
Hi all,I am trying to create a simple page that displays one image on Mobile phones.This image is landscape and roughly: width="600" height="240"If I add an image tag like:<img src="mypic.jpg" width="600" height="241" alt=""/>portrait view...it shows up too wide in portrait view - so you have to scroll left and right to see all of it. (not that great)landscape view...if you rotate the phone to landscape - it is just about full screen in landscape view. This is basically what I want.Also it's upright in both views.I am wondering if I can can set it up to start as already rotated in portrait mode which should encourage people to try to rotate their phone to see the better view.I tried transform: rotate(90deg) but couldn't get it to show correctly (odd size - not left alight etc.)Is there a good way to set this up?
Hi all,I am trying to set up a google scatter chart page from these links...https://developers.google.com/chart/interactive/docs/gallery/scatterchartand create data table here...https://developers.google.com/chart/interactive/docs/drawing_charts#chart.drawBasically I have the basic demo copy working.Now I am trying to populate the data table with time and date data like this...add rows like this...// Create the data table. var data = new google.visualization.DataTable(); data.addColumn('number', 'Time'); data.addColumn('number', 'Date'); data.addRows([ // this raw text works [22,5],[10,24],[9,5],[10,6],[10,7],[7,8] // but my var - datetime from database not working //Error: Every row given must be either null or an array. datetime ]);If I manually type in thi
Hello, I need to write an InDesign script that can query and modify the state of the "Profile:" and "Rendering Intent:" attributes in InDesign's "Image Color Settings" dialog box for selected placed pictures:I saw the example "colorSettings.jsx" someone mentioned in another post, but that script merely launches the above dialog box. Any help or example on how to locate these two attributes within an InDesign Javascript would be greatly appreciated. Thank you.Steve in California
I am using Visual Studio 2017 and Adobe reader 7 .com component from the toolbox in a windows form application.The issue is, it works fine in debug and as published on my .dev machine, but not anyone else's. The form will load but no .pdf control is displayed.Any help appreciated, please. Thanks.
Hi all,I have done a jQuery post to get a record set of popular products in varied categories- then I am doing an .each loop to display the products.But what I want is to somehow be able to group them by the category field so the display will look something like:category 1-- Product 1 (category 1 not shown)-- Product 4 (category 1 not shown)-- Product 27 (category 1 not shown)category 2-- Product 8 (category 2 not shown)-- Product 2 (category 2 not shown)-- Product 6 (category 2 not shown)etc.So I am not sure how to get this going in javascript.Is there a way to create an array from what I have already to get a DISTINCT list of unique categories?my simple idea is to do 2 loops:loop 1 through the unique distinct categoriesthen within each - loop a second time to just display items that match THIS CATEGORY.just a thought - any help would be appreciated.
Hello,I need drop down list or radio buttons for selection of LEFT or CENTER or RIGHT to align the selected text in a text frame.I want to modify the text alignment manually from the selection.Please help me.Thank you.
Hiwe are using acrobat reader dcwe need context menu option to search the selected text with our internal websiteCould you please guide me how to do this( SDK or Javascript)Steps to build the extension/addin
I need to see if someone has written an Event Booking or Event Registration program using ColdFusion.Any help on this will be appreciated.Thanks...
Hi, We are integrating Adobe e-sign with our C#.NET based application. Need to know how to add email addresses used in CC field for a document to be sent for signing using REST API implementation.
Hi I am designing an Access Database that combines a number of PDF documents and then adds a set of bookmarks to various locations locations within the document and also to some external files/folders. Currently I using VBA to open the PDF object and create a set of bookmarks, which for the most part work fine, however the are some issues with windows opening files in a browser, or not at all (It is not a file association issue).I have included some of the code below which should explain what I am Set gApp = CreateObject("AcroExch.App") Set gPDDoc = CreateObject("AcroExch.PDDoc") 'Set gAVDoc = CreateObject("AcroExch.AVDoc")...... If gPDDoc.Open(sTargetPDFPath) Then Set jso = gPDDoc.GetJSObject Set BMR = jso.BookMarkRoot BMR.createChild "BRIEF DOCUMENTS", "", 0 BMR.createChild "WITNESSES", "", 1 ... etc...The next part iterates though some records to retrieve file paths and creates Ja
I am an eLearning ID for a gov't entity. My courses are required to pass stringent 508 compliance tests. I have been using Captivate, and at times Lectora. I am having several issues from the screen reader not reading in order, to jumping back in to the TOC and getting stuck there, quizzes not being compliant and on and on. Upon researching I have found experienced developers stating that no OTS course development software will give you 100% results for 508 compliant courses. What I am wondering is should I just bite the bullet and dive into programming with HTML5, CSS and JS? I have had the classes but never tried to code outright, I will have a huge learning curve but feel it will be worth it. Also I need justification for the time involved to come up to speed. My manager takes a lot of stock in the software companies claiming to be the '508 answer'. I know marketing for dev software claims to be 508 compliant wizards but from what I have found, they are not, they just have their lit
I am having an awful time trying to figure out why I am getting Sandbox Security errors when making a request from our game host server to our gamesparks server.trying to ask gamesparks for a method we made for user name generationprivate const GET_NAMES:String = "https://E300018ZDdAx.preview.gamesparks.net/callback/E300018ZDdAx/generateName/YR5w9F53GYeMsP8LTBqijeeAsPM66v7J";private function getNames():void{var postVars:URLVariables = new URLVariables();postVars.count = 10var req:URLRequest = new URLRequest(GET_NAMES);req.method = URLRequestMethod.POST;req.data = postVars;var loader:URLLoader = new URLLoader(req);loader.dataFormat=URLLoaderDataFormat.VARIABLES;loader.addEventListener(Event.COMPLETE,check);loader.addEventListener(IOErrorEvent.IO_ERROR, onError);loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onSecurityError);loader.load(req);}protected function onSecurityError(event:SecurityErrorEvent):void{shellApi.logWWW(event.errorID, event.text);removeEventHandling(event.
Hi,I have an html page that send out a jQuery post to a php PDO page to query the db with a select statement. The result gets sent back to the HTML page as json_encode....The result may return an empty result with no records.I can check for this using count...if (count($records) > 0) {$output = [];foreach ($records as $key=>$record) {$output[$key]["First"] = $record['First'];$output[$key]["Last"] = $record['Last'];//etc.}else{$output = [];//????? How do I create a proper $output[$??] ??? response to send back a failed - empty result to the HTML PAGE?}print_r (json_encode($output));Thanks in advance - Dave
First, I will list my process:-Open .wav as .raw in Photoshop (with set px dimensions)-Place a composition over the canvas -export as .wav -edit/alter the audio in Audition -open back up in photoshop with the same set px dimension to see resultsexample: Piece:So, what I want to do is perform step 4 with a live feed of the effects happening to the image in a frame. This is how I assume I'll have to go about it:Figure out the mathematics behind .wav and .raw files to be able to open .wav as .rawInstall an audio effect package and create an audio effects chainCreate on/off buttons or sliders for different fxCreate frame with specifc px dimensions to view changes to audio/image.The goal here is to be able to have audience members interact with live pieces in an exhibition, showing the relationship between digital sound and image.Any help about references, where to start, etc. would be much appreciated!
Hi,I am having trouble with an HTML simple text input form that where the user may enter special characters such as single quote or double quote etc.form text example: I'm Feeling good.When processing the form - php - post to mysql DB shows the error :Syntax error or access violation: 1064 You have an error in your SQL syntax...the value it got was like:'I'm Feeling good',- which has 3 single quotes - causing the error...Q: Is there a way to properly escape whatever the special characters are that might be type to fix this issue for php?ThanksDave
Ok i am setting a script that i need it to calculate a percentage. if the percentage is over 30% it needs to go to red, if it's below it can stay in black. i'm going off a V3/V4 V3-PaymentV4-Income any ideas on how to get this setup for red? This is what it's using right now with the Field Properties Format being Set to Percentage (function () { // Get the field values, as numbers var v3 = +getField("payment").value; var v4 = +getField("ApplicantsTotalNetIncome").value; var v = v3 / v4; if (!isNaN(v) && v4 != 0) { event.value = v; } else { event.value = ""; } })();
Good morningI've tried a number of different approaches but can't seem to get this to work. I'm building a PDF Form in Adobe Pro DC to be used by our staff. I have an Appointment Date field (appt_date) and I need to verify that the date the user entered is between today and 4 weeks from now. I've seen a lot of code samples but the dates are always provided in the code, which doesn't help me.Any help would be appreciated. This code snippet is the last one I've tried, but it's not working (I think this was a "pure javascript" example rather than "Adobe JavaScript"). Thanks in advance!Chrisvar dateFrom = "01/08/2017";var dateTo = "01/10/2017";var dateCheck = "05/09/2017";var d1 = dateFrom.split("/");var d2 = dateTo.split("/");var c = dateCheck.split("/");var from = new Date(d1); // -1 because months are from 0 to 11var to = new Date(d2);var check = new Date(c);alert(check > from && check < to);
Good morning ladies and gentlemen!I recently created an inspection report which contains various 'Year service is due' fields. When I enter a past or present year, I'd like the cell background to turn red. If I enter a future year, I'd like the cell background to stay white. I don't know how to write code but I assume I can create a java script in this case. Can someone please assist?Thank you in advance!
I want to build a simple web application that has the following features but don't know which Adobe tool is best to initiate the project?1. Simple drag/drop functionality by dragging circle object from menu to blank canvas2. Drag more items to canvas and allow linking parent/child style3. Customise display names and properties4. Allow for graphical building of hierarchy structures5. Ability to link a document behind the nodes and share them or download themShould I use Captivate? DW? Thank you!
I recently decided I wanted to learn JavaScript, or at least get the gist of what it is and how it works. The reason I decided this was because of issues I’ve had with creating fillable Acrobat forms as well as other programs that allow JavaScript to be used. Countless times I’ve Googled how to solve a problem in Acrobat, only to find out it can’t be directly done with the standard software tools, followed by someone in a forum saying “you have to use JavaScript” in which they provide a series of brackets, indentions, hyphens, etc., which looks like Greek to me. I often copy and paste their “code” into what I’m working on and lo and behold it calculates exactly what I was wanting it to. But I hate not knowing what I am doing, so this is when I decided to learn the fundamentals of JavaScript. After doing brief research, as I understand it, in order to learn JavaScript, it is best to first learn HTML. When I google “HTML” or “HTML for beginners”
I am trying to use listeners for the nodes present inside the multifield for AEM 6.3 touch UI but the listeners are not working. The same listener is working outside the multifield.Kindly help me out in fixing the issue inside multifield.
I want to generate PDF file from angular2 website page. What would you suggest supporting that, if the site page has a complex structure and an ideal solution should convert page (html) to PDF without additional manipulations?
I am trying to use RTE inside multifield for AEM 6.3 touch UI. I am facing the below listed problems. 1.Paraformat style(p,h1,h2,h3,etc..) is getting applied for the entire line, instead of selected words on the same line. 2.How to include color picker inside RTE.3.When edit dialog is opened for the first time for authoring, author is not able to enter the text inside RTE present in multifield, whereas it works fine outside the multifield. Then, author gives ok without entering any text in RTE inside multifield. When edit dialog is opened for second time, able to enter the text in RTE present inside multifield.
Adobe SDK provides JavaScript, C/C++ Plugin and InterAppCommunication options. I am not sure what is the best way to go to support a use case: whenever a user open the PDF file by a Adobe Reader, it will ask the user to authenticate to a remote server, if it is successful, the PDF will be opened, if failed, the reader will be closed.
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
이미 계정이 있으신가요? 로그인
sso.login.detail.descriptionWithRegistrationLink
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.