Search found 136 matches

by txuku
Sat Apr 28, 2018 5:10 am
Forum: Help Me
Topic: script with various saving options
Replies: 8
Views: 12321

Re: script with various saving options

Bonjour

What does it mean to share ??? :D
by txuku
Fri Feb 02, 2018 7:38 am
Forum: Help Me
Topic: How to Get current toolPreset name jsx
Replies: 5
Views: 8759

Re: How to Get current toolPreset name jsx

Bonjour

On the forum you have THIS ! :)
by txuku
Tue Jan 09, 2018 9:09 am
Forum: Photoshop Scripts
Topic: Extract Lens Data from EXIF
Replies: 2
Views: 9650

Re: Extract Lens Data from EXIF

Bonjour ! The exif information can be extracted with the app.activeDocument.info method Attention information varies depending on the model and brand of the device! And maybe the version of Photoshop ??? So I use this script to determine the number corresponding to the information I want to extract:...
by txuku
Wed Dec 20, 2017 7:25 am
Forum: Photoshop Scripting - General Discussion
Topic: Add Scripts in Filter Menu
Replies: 8
Views: 15288

Re: Add Scripts in Filter Menu

Bonjour

And using a .jsx script that launches your .jsxbin ? :)
by txuku
Sun Oct 29, 2017 9:03 am
Forum: Help Me
Topic: If Path named "" exists
Replies: 2
Views: 5042

Re: If Path named "" exists

Bonjour You can use the " try catch " method ! This by exemple var x=prompt("Enter a number between 0 and 10:",""); try { if(x>10) { throw "Err1"; } else if(x<0) { throw "Err2"; } else if(isNaN(x)) { throw "Err3"; } } catch(er) { if(er==&qu...
by txuku
Sat Oct 28, 2017 9:33 am
Forum: Help Me
Topic: add part of filename
Replies: 6
Views: 7711

Re: add part of filename

Bonjour

Since I program I renounce accents and punctuation ............... :)
by txuku
Thu Oct 26, 2017 9:10 am
Forum: Photoshop Scripting - General Discussion
Topic: Is it possible to change Brush Mode via Scripting?
Replies: 1
Views: 6301

Re: Is it possible to change Brush Mode via Scripting?

Bonjour I have three scripts that may be suitable for you : SelectOutil.jsx //SelectOutil.jsx selectTool('moveTool'); selectTool('artBrushTool'); //magicStampTool //selectTool('marqueeRectTool'); //selectTool('marqueeEllipTool'); //selectTool('marqueeSingleRowTool'); //selectTool('marqueeSingleColum...
by txuku
Sun Oct 22, 2017 8:55 am
Forum: Photoshop Scripting - General Discussion
Topic: Get timeline frame number?
Replies: 4
Views: 9617

Re: Get timeline frame number?

Bonjour

Do you do this in javascript or do you use the ScriptlisteneJS.log?

Can you show the code used and the data you want?

:)
by txuku
Fri Oct 13, 2017 7:02 am
Forum: Photoshop Scripting - General Discussion
Topic: Performance of custom Zoom In script
Replies: 14
Views: 27355

Re: Performance of custom Zoom In script

Bonjour

Glad to see you pass xbytor ! :)
by txuku
Sat Oct 07, 2017 2:43 pm
Forum: Photoshop Scripting - General Discussion
Topic: Performance of custom Zoom In script
Replies: 14
Views: 27355

Re: Performance of custom Zoom In script

Ah bon ! :) You have the xbytor function setZoom( ) that should suit you : function setZoom( zoom ) {// as percent cTID = function(s) { return app.charIDToTypeID(s); }; // from xbytor var docRes = activeDocument.resolution; activeDocument.resizeImage( undefined, undefined, 72/(zoom/100), ResampleMet...