Search found 20 matches

by jaydoubleyou80
Fri Sep 22, 2017 12:33 pm
Forum: Help Me
Topic: add part of filename
Replies: 6
Views: 7660

Re: add part of filename

txuku, this is much better than what I was trying to do.
by jaydoubleyou80
Thu Sep 21, 2017 8:12 pm
Forum: Help Me
Topic: add part of filename
Replies: 6
Views: 7660

Re: add part of filename

I think this has a few issues. First, my regular expressions may work, but I think there's something wrong with the pivotal one, and I don't know enough to fix it. Second, this leaves a leading space at the beginning of the text that doesn't need to be there (again, probably my regular expression). ...
by jaydoubleyou80
Mon Aug 28, 2017 12:12 pm
Forum: Help Me
Topic: Javascript time limit(trial)
Replies: 11
Views: 14754

Re: Javascript time limit(trial)

I found a problem If you put your computer's date before expiration The trial continues to work Can you overcome this problem? Well, probably. But you'd only ever know to do that if you also knew how the script was identifying the date. I'm not sure how you might be able to work around it, but poss...
by jaydoubleyou80
Mon Aug 21, 2017 3:42 pm
Forum: Help Me
Topic: Smart Object Replacement, Saving,Naming
Replies: 4
Views: 7184

Re: Smart Object Replacement, Saving,Naming

Here's something I whipped up. It doesn't pay attention to size, or location, so if the things you are replacing the smart object with are of differing sizes, that would need to be addressed. Also, grab this PDF and you can look at what can be set for save for web options: http://wwwimages.adobe.com...
by jaydoubleyou80
Fri Aug 11, 2017 2:07 pm
Forum: Photoshop Scripting - General Discussion
Topic: Batch Data-driven variables automatically size text to fit a defined area
Replies: 1
Views: 4917

Re: Batch Data-driven variables automatically size text to fit a defined area

The following code assumes you have a layer named Flag, and a layer named Text. You can change that to determine which layer is what by layer order, or whether it's text or pixels, or whatever. I made a test file with a background, a rectangle pixel layer called Flag, and a text layer called Text. I...
by jaydoubleyou80
Thu Aug 10, 2017 12:08 pm
Forum: Help Me
Topic: ImageProcessorPro-3_2b5
Replies: 7
Views: 13640

Re: ImageProcessorPro-3_2b5

If you mean via script, you can set the PDFSaveOptions the same way you set any other file type options. In Adobe's Photoshop javascript reference PDF for 2015 ( http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/photoshop/pdfs/photoshop-cc-javascript-ref-2015.pdf , check page 149 for the settin...
by jaydoubleyou80
Thu Jul 27, 2017 11:51 am
Forum: Help Me
Topic: Javascript time limit(trial)
Replies: 11
Views: 14754

Re: Javascript time limit(trial)

Memetaltin, If you only call on that function with the if, the else will take care of anything out of the date range. So for instance, if you set the end date to 8/31/2017, once that date hits, the else will alert them the script can't be used. During the time period that the date is prior to 8/31, ...
by jaydoubleyou80
Wed Jul 26, 2017 2:45 pm
Forum: Help Me
Topic: Javascript time limit(trial)
Replies: 11
Views: 14754

Re: Javascript time limit(trial)

Ahh, right. Thanks for the clarification :D
by jaydoubleyou80
Tue Jul 25, 2017 8:31 pm
Forum: Help Me
Topic: Javascript time limit(trial)
Replies: 11
Views: 14754

Re: Javascript time limit(trial)

There's a way to encrypt your script after this that I don't recall as I've never done it, but if you use this code, you can determine the system date and then run your script if it is within your predefined date range. var endDate=new Date(); endDate.setFullYear(2017,6,26);//note that the month is ...
by jaydoubleyou80
Thu Jun 29, 2017 12:34 pm
Forum: Help Me
Topic: Read Notes by script (not only write by script)
Replies: 3
Views: 5452

Re: Read Notes by script (not only write by script)

According to the great Mike Hale, circa 2010, there is no direct access to notes or annotations. https://forums.adobe.com/thread/663347 I'm not sure if the metadata solution would work for you, but I've seen it mentioned in numerous places. https://stackoverflow.com/questions/16396358/how-to-access-...