Quantcast
Channel: Adobe Community: Message List
Viewing all 97529 articles
Browse latest View live

Pen annotations - how to make highlight default when in full screen mode

$
0
0

Hello

I'm using my Surface book 2 with a pen for annotating PDF files, and I prefer to highlight instead of drawing/marking when in full screen mode.

Right now the default for pen use is to mark or draw.

 

Is there a way to make HIGHLIGHT the default pen action when using reading or full screen mode?

It would make things much easier for me

 

Thanks!


Re: Alerts in Workflows

$
0
0

Hi,

 

Same error for us:

08/06/2019 5:26:43 PM alert2 WKF-560043 Error while sending notification with delivery template 'alertAssignee'.

08/06/2019 5:26:43 PM alert2 DLV-490055 Failed to load delivery ID 3611 into the cache: This delivery does not exist, has been deleted or the login does not have the required rights.

 

After giving "READ data" access to the 3 following folders: /Administration/Campaign Management/Technical delivery templates/, it works

 

Thanks!

Re: Closed Captions for use on Amazon

Re: Create a sitting down character

$
0
0

Interesting idea. I'll try it. If you could find a thread on this please link me to it. I did a search prior to posting and did not find anything.

Re: Searchability of OCR without opening the PDF?

$
0
0

Not possible with Adobe Acrobat.

Re: Multicam not working

$
0
0

more info needed:

01. Which Premiere Pro version are you using?

02. What are the video formats you are working with?

03. System Specs?

Importing slideshow from Photoshop to Premiere Elements 12

$
0
0

One again, no manuals, no answer to question online. Can someone please tell me how to import a slideshow created in Photoshop to Premiere? I already have a video in progress, also a slideshow I created in Photoshop. As I recall, I simply migrated it. But now when I try to do the same thing, I get an error message. I'm, sure you want to know what the error message says: "The importer reported a generic error."

 

Must the slideshow be processed in someway? I have manuals for older versions of both programs (PS 4.0 and Pre 2.0) and they say import the slideshow and complete the project. But, they do not say HOW to import the slideshow to Premiere. In Pre 12 I click on Add Media and go to the Organizer where the slideshow project appears. But when I click on "Edit Project in Premiere Elements," I get the error message. To say I am frustrated is a major understatement!

Re: How do you completely rotate a clip?

$
0
0

I have the same issue. Shot on android in landscape. Shows up on timeline as portrait?? I rotated clip but frame still in portrait. This cuts out a lot of my video.. Can't imagine that this should be a problem in this fancy editor. Have not heard a good fix for this yet. Crazy.


Re: Creative Cloud and Creative Suite 2-5

$
0
0

Please be careful giving out your log in and account information to anyone outside of the Adobe.com system. It's a good way to get scammed or worse.

 

All Adobe customer support - including Adobe chat and call numbers are located here:

Adobe Help Center

Re: Use javascript to handle files created by batch saveAs()?

$
0
0

Any hint or idea, or the definite conclusion that it is impossible, would be greatly appreciated... thank you in advance!

Split PDF based on content into different pdfs with custom file name but not all page have the identifier

$
0
0

Hi would really appreciate advice and expertise on a task I will like to do described below but given that I have very little expertise in Javascript but have Acrobat Pro DC, I am stuck.

 

I have a report that contains multiple reports in a single pdf which I want to split it into individual reports. The cover page of each report has a report number XPD Report - nnn. I want to be able to search for a specific string ("XPD Report") within the pdf, and then save the sequence of numbers that come after that string for my file name ("001","002"...). I would want to extract the cover page and the succeeding pages of the XPD report and include it into one pdf until it finds another unique XPD Report.

 

For example,

 

page 1    XPD Report - 001

page 2   

page 3    XPD Report - 002

page 4   

page 5    XPD Report - 003

page 6   

page 7

 

Using this example, pages 1 and 2 would be extracted into one pdf together. Page 3 and 4 would be extracted by itself, and pages 5, 6 and 7 would be extracted into one pdf.

 

I was trying to replicate as much as possible what I could find of the codes in the forum link below and running as an Action in Action Wizard, but to no avail.

 

https://forums.adobe.com/thread/2502247?q=Split%20PDF%20based%20on%20content%20but%20not

 

 

  1. var curDoc = app.activeDocs[0]; 
  2. var pageArray=[]; 
  3. var repeat = 0
  4. var dataCode = ""
  5. var startPage = pageArray[0]; 
  6. var startPageNumber = 0
  7. var lastPageNumber = curDoc.numPages; 
  8. lastPageNumber--; 
  9.  
  10.  
  11. // This part gets all the page numbers from the document as before 
  12. for (var p = 0; p < curDoc.numPages; p++) 
  13.     for(var n = 0; n< curDoc.getPageNumWords(p); n++) 
  14.     { 
  15.        if(curDoc.getPageNthWord(p,n)=="XPD REPORT -"
  16.        { 
  17.             dataCode=curDoc.getPageNthWord(p,n+1) ; 
  18.             pageArray.push(dataCode); 
  19.             break
  20.        } 
  21.     } 
  22.  
  23. // This bit has been refactored to stop the need to go through all the pages again 
  24. // it also uses the ability of insertPages to insert more than one page at a time. 
  25. for ( var i = 1; i < pageArray.length; i++) 
  26.     var endPageNumber = i - 1
  27.      
  28.     // if we have a match, AND we are not the last page, keep going 
  29.     if (( startPage === pageArray[i]) && ( i !== lastPageNumber)) 
  30.     { 
  31.         exportFile = false 
  32.     } 
  33.     // if we are the last page, we don't care about a match anymore. 
  34.     elseif ( i === lastPageNumber) 
  35.     { 
  36.         // catch if we are at the end of the document 
  37.         exportFile = true
  38.         endPageNumber = i; 
  39.     } 
  40.     // we are not the last page, and we are not a match for the pages we are looking for 
  41.     else 
  42.     { 
  43.         // catch when we have passed the current page 
  44.         exportFile = true
  45.  
  46.     } 
  47.     // once we have some files to process. 
  48.     if ( exportFile) 
  49.     { 
  50.         d = app.newDoc(); 
  51.         // call insert pages once with the page range to insert. 
  52.         d.insertPages ( 
  53.         { 
  54.             nPage: d.numPages -1
  55.             cPath: curDoc.path, 
  56.             nStart: startPageNumber, 
  57.             nEnd : endPageNumber, 
  58.         }); 
  59.         // remove initial page 
  60.         d.deletePages(0); 
  61.         // set up for the next run 
  62.         startPage = pageArray[i]; 
  63.         startPageNumber = i; 
  64.     } 

Adobe XD showing up blurry when sharing for review

$
0
0

Hi everyone!

 

I'm running into some import issues with XD that I hope someone can help me with.

 

I have two PSDs, same file setting for both files. I made JPEGs out of both of them to import into Adobe XD. I exported them 3 times the size in Photoshop so they are high resolution in XD. When I share my XD link with my client, one of the jpegs end up being super blurry while the other one retain it's high resolution. I believe it's something to do with the export setting in Photoshop but they are both exported the same way! Please note all the other elements in my presentation remained very high res, except for that one jpegs. I tried carrying all my layers from the PSD that's exporting the blurry jpegs into the PSD that exports high res jpegs and it solved the issue. But the thing is that, majority of my project is built with the low res PSD and I can't help but think there's a setting that can fix this issue. but yet again both PSDs are created using the same settings and bits. 

 

Is there a view setting I need to explore in Adobe XD? Or is there a setting I need to change in Photoshop?

 

Any help is very much appreciated! Thank you!

Re: Annotated pdf has some discrepancy in formatting with PC and Mac machines

$
0
0

Sorry for late reply, i have wrongly uploaded the PDF file. I am also not gettig bold formatting.

 

Please try this updated link:

 

Adobe Document Cloud

Re: Adobe Reader DC 2019.012.20034 Very Slow on Start

$
0
0

OS is Windows 10, 1809.

 

We are already on the latest version as noted in my post.

 

Using the default preferences already, which is causing the problem.  Protected mode is the issue.  When enabled, it's very slow.  This is happening on MANY machines..

 

I'm using an admin account.

 

You want me to uninstall and re-install on 1100 machines?  What kind of answer is that?

 

I included the ProMon file and my process for getting the results.

special accomodation

$
0
0

I tried taking the Adobe premiere pro Certified Expert exams today, but couldn't because of a challenge in my name on the documents and the profile. I was given an option to provide two names, but my ID carried three, which was seen as a discrepancy.

I wish to request for an exception to be able to take the exams again, even if tomorrow. I don't have the funds to schedule a new one, and my names are not incorrect, as I provided three documents to show, just that my profile name/exam name did not carry all three names.

Please assist in any way, because I need to get certified, and have waited 3 years for this opportunity.

Thank you for your kind consideration.


Re: Closed Captions for use on Amazon

$
0
0

moving your query to a forum where you are more likely to get a useful answer often is helpful.

Re: Scheduler created through archetype 19 doesn't seem to ever run OOTB

$
0
0

I compared your files with mine, and see no major differences. I updated a few plugin/dependency versions, but that didn't seem to help.

 

My issue is that the plugin activates, but the run function is never hit. Does yours run?

 

EDIT: Oh, I think it has to do with my cron-expression. I was using " * * * * * * " and never saw it run. Then I changed it to "0 * * * * ?" and then I saw it running. I guess I didn't understand how cron expressions work.

Re: Hide repeating table row based on value?

$
0
0

Hi there,

 

there's some minor details you need to fix in your code, see the following:

Bold text is where I amended the code

 

for (var a=0;a<data.BODY.ITEM_DETAIL.DATA_DETAIL.instanceManager.count;a++){

     //I suggest you take a hold of the instance within a variable to have shorter conditions for the next statements

     var oneDetail = data.BODY.ITEM_DETAIL.resolveNode("DATA_DETAIL[" + a + "]");

     for (var b=0;b<oneDetail.DETAILS.ITEM_CONDITIONS.CONDITIONS.DATA_COND.instanceManager.count;b++){

          //Same here, I suggest take a hold of each item within a variable

          var oneCondition = oneDetail.resolveNode("DATA_DETAIL.DETAILS.ITEM_CONDITIONS.CONDITIONS.DATA_COND[" + b + "]");

          if (oneCondition.VTEXT.rawValue== "Price"){

               oneCondition.presence="hidden"; 

          }

      }

}

instanceManager needs to be accessed to manage instances of the object itself.

It also can be accessed by using an underscore before the name of the object in question like the following:

 

data.BODY.ITEM_DETAIL._DATA_DETAIL.count

I hope this will help

Let me know if you need clarifications..

Re: os x 1014: IMSlib not found

$
0
0

I've made a support case of it now, let's see what they make of it.

Video stops half way through even fully rendered

$
0
0

This should be very simple. I dragged two videos into AE, and when I play them within AE, one plays nicely, but the other hangs up about half way through even fully rendered. They’re both MOV files, both small. The only difference that I can tell is that one (the one stopping) has an encoding of 11.3.1 when I look at the file info outside of AE. And it plays fine in Quicktime or my Finder. That’s the on that hangs up. Why? I’m on a Mac, btw. I'll attach screenshots showing the encoding. Not sure if that's the issue or how to remove that.

not-working.jpgwoking-fine.jpg

Viewing all 97529 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>