Page 1 of 1

Add Scripts in Filter Menu

Posted: Mon May 15, 2017 8:31 am
by vkv
How to add script(JavaScript) in Photoshop's Filter menu. :?:

Re: Add Scripts in Filter Menu

Posted: Mon May 15, 2017 8:35 pm
by pixxxelschubser
Why not at the normal place in File --> Skripten menu?

Re: Add Scripts in Filter Menu

Posted: Tue May 16, 2017 5:09 pm
by vkv
I want to know how to create .8bf file from JavaScript.
Till now after lot of searching, i am unable to get any tutorial on this. :(

Some basic starting information also would be better for me. :)

Re: Add Scripts in Filter Menu

Posted: Wed May 17, 2017 5:48 pm
by Jaroslav Bereza
.8bf files are writen in C++

Examples are here: http://www.adobe.com/devnet/photoshop/sdk.html

Re: Add Scripts in Filter Menu

Posted: Fri May 19, 2017 5:58 am
by vkv
Hello Jaroslav,
Thanks for your reply.
I have seen several Photoshop extension panels like PPW, Parametric curves,Fixel Contrastica under filter menu. and these extension panels has .8bf file.
I am curious to know how to create such panels which shows in filter menu.

Re: Add Scripts in Filter Menu

Posted: Fri May 19, 2017 8:43 pm
by Jaroslav Bereza
Maybe you could create .8bf file in C++ and this would only run script file.

If you look into documenation there some ways how to change menu item location. But there are only few places where it can be.

Re: Add Scripts in Filter Menu

Posted: Wed Nov 08, 2017 9:50 pm
by DavideBarranca
Hi,
I did Parametric Curves and Fixel Contrastica – no plugins involved there, just look at the <javascriptresource> tag, e.g.

Code: Select all

<javascriptresource>
<name>Parametric Curves 1.1</name>
<menu>filter</menu>
<category>cs-extensions</category>
<about>Use it to build mathematically defined (Javascript) Curves Adjustment layers. Coded by Davide Barranca</about>
<enableinfo>true</enableinfo>
</javascriptresource>
The <menu> tag specifies where the script will show. You can choose between automate, filter, and help.
More info in the "JavaScript resource syntax" section of the Photoshop JS Reference.

Davide

Re: Add Scripts in Filter Menu

Posted: Tue Dec 19, 2017 6:52 pm
by Alex-rsr
Good Day.
Does this code works in .jsxbin files?

I try to integrate my scripts to ps menu, but it work only with .jsx files and don't work with .jsxbin files.

I hope, this is my mistake and this isn't photoshop rules.

Re: Add Scripts in Filter Menu

Posted: Wed Dec 20, 2017 7:25 am
by txuku
Bonjour

And using a .jsx script that launches your .jsxbin ? :)