Re: [Gimp-developer] Problems using the PF_STRINGARRAY parameter type when writing a Python plugin for Gimp.

2018-05-23 Thread Kevin Payne
>I'm trying to write a very basic plugin for Gimp using Python and I >want its one and only parameter to be of type PF_STRINGARRAY. The goal >of my plugin for the time being, is to receive a list of files, and >then simply print their names on the Command line, when the plugin is >run.

Re: [Gimp-developer] Problems using the PF_STRINGARRAY parameter type when writing a Python plugin for Gimp.

2018-05-23 Thread Ofnuts
If you want to run the script as a batch it doesn't need (and really shouldn't be) a plugin. Then your code is just a plain Python function that takes string parameters, and you don't need to register it. See