Dave Merchant
LEGEND
Dave Merchant
LEGEND
Activity
‎Apr 10, 2024
07:25 AM
3 Upvotes
THANK YOU, GEORGE_JOHNSON!!!!!!! That fixed my problem!! [Edit > Preferences > Accessibility > Always Use Page Layout Style > Single Page Continuous]
... View more
‎Apr 05, 2024
04:37 AM
Use a Gradient effects like Gradient Ramp or 4 color gradient. Is the only way to map the gradients color, would be great in the future have more control on this. Good look
... View more
‎Apr 05, 2024
03:56 AM
@Lina T.36546122szoo schrieb:
Can you please tell me how can I do this exactly?
I can't seem to find this brush effect
I have made a video about a similar thing: https://youtu.be/PNiSMUuERcQ
In order to outline text: Type > Create Outlines.
Alternatively you can apply the Effect > Path > Outline object to the text object.
... View more
‎Mar 08, 2024
05:32 AM
Disabling Edit => Preferences => Enable text indicators and tooltips in Acrobat Reader removed the sticky notes icons for me. However, I would like to store this info with the document.
... View more
‎Feb 29, 2024
07:49 AM
This worked perfectly. Thank you.
... View more
‎Feb 26, 2024
02:58 AM
Hmm I think I found a good solution 1. Go to document and resize your stage to -....-....- and click ok.
... View more
‎Feb 23, 2024
07:23 PM
I never had this problem until recently
... View more
‎Feb 12, 2024
12:02 PM
The "POSTER" tab is tile tab now.
... View more
‎Feb 05, 2024
10:02 AM
Nothing is happening ithink it's time to say goodbye to adobe premiere pro
... View more
‎Jan 11, 2024
04:39 AM
same issue
... View more
‎Dec 21, 2023
06:38 AM
It is also worth mentioning that I was able to run the code to identify all the links within my document (there are ~400), but the code you provided won't run. I am sure it is something I am doing wrong as I am not exactly fluent by any means with JavaScript.
... View more
‎Nov 17, 2023
05:35 AM
1 Upvote
Your above answer is labeled as the correct answer. Thank you very much for that. As this is the official community/forum of Adobe your above correct answer is obviously an official answer. A similar question on this community [ https://community.adobe.com/t5/acrobat-discussions/a-free-version-of-acrobat-reader-dc-for-commercial-purposes/m-p/9957911 ] has also been redirected to this page for the answer. In case, you don't want your above correct answer to be an official answer then kindly edit/delete it. Thank you again.
... View more
‎Nov 14, 2023
06:19 PM
Thank U. I did it...
... View more
‎Nov 06, 2023
07:09 AM
@billt71155688
it's been 10+ years and their business has grown significantly.
... View more
‎Oct 09, 2023
01:20 PM
Is this what you're looking to try and do? https://www.youtube.com/watch?v=MKVlSiVOaxk I haven't found a way to do this in After Effects yet. I'm sure it's possible with expressions, though. Hopefully, someone knows a good way of going about this in AE.
... View more
‎Oct 04, 2023
10:59 AM
What do you mean? You can't use adobe form?
... View more
‎Sep 30, 2023
07:06 AM
The OP?
... View more
‎Sep 27, 2023
09:16 AM
1 Upvote
Just click on TT on character panel..thats it your problem solved
... View more
‎Sep 16, 2023
11:58 AM
for you it doesn't make sense but for other people it makes sense, because when you have 400 episodes of a series or film to translate while you have the video in 1 language that you didn't understand and you have a video in language that you understood with poor quality you wanted to have it in good quality to understand what is being said!!!
... View more
‎Sep 04, 2023
08:15 PM
Well, that did the job perfectly! Thanks for uploading this simple fix.
... View more
‎Aug 15, 2023
06:35 AM
locked because of age/relevance.
... View more
‎Aug 07, 2023
07:36 AM
2 Upvotes
thank you sir....you save me my whole time....thanks again
... View more
‎Jul 30, 2023
02:20 PM
locked
... View more
‎Jul 26, 2023
04:50 AM
Simply untick "Enable Home Screen" box (in Preferences > Startup & Repair) and restart the app.
... View more
‎Jul 19, 2023
06:44 AM
Here is the script that I use for work, output is in Croatian but you can change it in the script. console.println("Dokument se sastoji od " + this.numPages + " stranica"); // counters var numA3 = 0; var numA4 = 0; // etc. // helper function to compare a number with some wiggle room - we look for portrait and landscape possibilities function inRange(wid, hei, targetWid, targetHei) { var wiggle = 2; // amount of error to allow in Points. Not all PDF software creates perfectly-sized pages return ( (wid >= targetWid - wiggle && wid <= targetWid + wiggle && hei >= targetHei - wiggle && hei <= targetHei + wiggle) || (hei >= targetWid - wiggle && hei <= targetWid + wiggle && wid >= targetHei - wiggle && wid <= targetHei + wiggle) ); } var unrecognizedSizes = {}; for (pagenum = 0; pagenum < this.numPages; pagenum++) { var pbox = this.getPageBox("Crop", pagenum); var width = pbox[2] - pbox[0]; var height = pbox[1] - pbox[3]; var recognized = false; if (inRange(width, height, 842, 1191)) { numA3++; recognized = true; } if (inRange(width, height, 595, 842)) { numA4++; recognized = true; } // etc... if (!recognized) { var dimString = (width * 0.3527777778).toFixed(0) + "x" + (height * 0.3527777778).toFixed(0); if (unrecognizedSizes[dimString] === undefined) { unrecognizedSizes[dimString] = []; } unrecognizedSizes[dimString].push(pagenum + 1); } } ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// console.println("A4 papiri - " + numA4 + " komada"); var pageRanges = []; var currentRange = null; for (pagenum = 0; pagenum < this.numPages; pagenum++) { var pbox = this.getPageBox("Crop", pagenum); var width = pbox[2] - pbox[0]; var height = pbox[1] - pbox[3]; var recognized = false; if (inRange(width, height, 595, 842)) { recognized = true; } // etc... if (recognized) { if (currentRange === null) { currentRange = { start: pagenum + 1, end: pagenum + 1, }; } else { currentRange.end = pagenum + 1; } numA4++; // Moved outside the `if (recognized)` block } else if (currentRange !== null) { pageRanges.push(currentRange); currentRange = null; } } if (currentRange !== null) { pageRanges.push(currentRange); } var output = ""; for (var i = 0; i < pageRanges.length; i++) { if (pageRanges[i].start === pageRanges[i].end) { output += "," + pageRanges[i].start; } else { var lastRange = pageRanges[i-1]; if (lastRange && lastRange.end + 1 === pageRanges[i].start) { output = output.slice(0, -2) + "-" + pageRanges[i].end + ","; } else { output += "," + pageRanges[i].start + "-" + pageRanges[i].end; } } } // Remove the initial comma output = output.slice(1); console.println(output); ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// console.println( "A3 papiri - " + numA3 + " stranica"); var pageRanges = []; var currentRange = null; for (pagenum = 0; pagenum < this.numPages; pagenum++) { var pbox = this.getPageBox("Crop", pagenum); var width = (pbox[2] - pbox[0]); var height = (pbox[1] - pbox[3]); var recognized = false; if (inRange(width, height, 842,1191)) { numA3++; recognized = true; } // etc... if (recognized) { if (currentRange === null) { currentRange = { start: pagenum + 1, end: pagenum + 1 }; } else { currentRange.end = pagenum + 1; } } else if (currentRange !== null) { pageRanges.push(currentRange); currentRange = null; } } if (currentRange !== null) { pageRanges.push(currentRange); } var output = ""; for (var i = 0; i < pageRanges.length; i++) { if (pageRanges[i].start === pageRanges[i].end) { output += "," + pageRanges[i].start; } else { var lastRange = pageRanges[i-1]; if (lastRange && lastRange.end + 1 === pageRanges[i].start) { output = output.slice(0, -2) + "-" + pageRanges[i].end + ","; } else { output += "," + pageRanges[i].start + "-" + pageRanges[i].end; } } } // Remove the initial comma output = output.slice(1); console.println(output); ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// console.println("Broj stranica ostalih formata:"); for (var dimString in unrecognizedSizes) { var pages = unrecognizedSizes[dimString].sort(function(a, b){return a-b}); var pageRanges = []; var rangeStart = null; var rangeEnd = null; for (var i = 0; i < pages.length; i++) { if (rangeStart === null) { rangeStart = pages[i]; rangeEnd = pages[i]; } else if (pages[i] === rangeEnd+1) { rangeEnd = pages[i]; } else { pageRanges.push([rangeStart, rangeEnd]); rangeStart = pages[i]; rangeEnd = pages[i]; } } if (rangeStart !== null) { pageRanges.push([rangeStart, rangeEnd]); } var rangeStrings = pageRanges.map(function(range){ if (range[0] === range[1]) { return range[0]; } else { return range[0] + "-" + range[1]; } }); console.println(rangeStrings.join(",") + " sa dimenzijama " + dimString + " mm"); }
... View more
‎Jul 17, 2023
12:25 PM
this was incredibly useful, thanks!
... View more
‎Jul 03, 2023
03:06 AM
1 Upvote
Hello everyone, I have a question, how would you suggest starting on this video. https://vimeo.com/841812023?share=copy
... View more
‎Jun 26, 2023
05:42 PM
@hschoenberger my motion 2.0 plugin is not working now from the updates, everytime i open my motion 2.0 plugin which i specifically buys it aint working and saying licence does not exist
... View more
‎Jun 22, 2023
02:38 AM
Yes, very much so. I wonder if there are instructions anywhere on how to change these?
... View more