RE: [Gimp-developer] GIMP plug-in disabled.

2006-09-13 Thread DreamArtist
@lists.xcf.berkeley.edu Subject: Re: [Gimp-developer] GIMP plug-in disabled.   Thank you very much. That worked for me. But, my initial idea for this plugin is that, if I select this option from menu; it will create a new image and layer and draw a circle on that layer. Now, it looks like I will

Re: [Gimp-developer] GIMP plug-in disabled.

2006-09-13 Thread David Gowers
On 9/13/06, Sven Neumann <[EMAIL PROTECTED]> wrote: Hi,On Wed, 2006-09-13 at 00:13 +0930, David Gowers wrote:> Your plugin needs to take an image as its first input in order to be> repeatable.What do you mean when you say "repeatable"? What you are saying here doesn't make any sense to me.So that i

Re: [Gimp-developer] GIMP plug-in disabled.

2006-09-12 Thread Sven Neumann
Hi, On Wed, 2006-09-13 at 00:13 +0930, David Gowers wrote: > Your plugin needs to take an image as its first input in order to be > repeatable. What do you mean when you say "repeatable"? What you are saying here doesn't make any sense to me. Sven

Re: [Gimp-developer] GIMP plug-in disabled.

2006-09-12 Thread Simon Budig
Dream Artist Aspiring ([EMAIL PROTECTED]) wrote: > gimp_install_procedure ( > "plug-in-testp", > "TestP", > "A Test Plugin", > " ", > " ", > "2006", > "_testp", > "RGB*, GRAY*", > G

Re: [Gimp-developer] GIMP plug-in disabled.

2006-09-12 Thread Dream Artist Aspiring
Thank you very much. That worked for me. But, my initial idea for this plugin is that, if I select this option from menu; it will create a new image and layer and draw a circle on that layer. Now, it looks like I will have to create an image and just draw a circle on it. Thanks again for the help..

Re: [Gimp-developer] GIMP plug-in disabled.

2006-09-12 Thread David Gowers
On 9/13/06, Dream Artist Aspiring <[EMAIL PROTECTED]> wrote: Hi, Thank you very much for the reply. Here is the registration code. If not in Xtns, where should I put this?static voidquery (void){  static GimpParamDef args[] =    {  {    GIMP_PDB_INT32,     "run-mode",    "Run mode"  }, 

Re: [Gimp-developer] GIMP plug-in disabled.

2006-09-12 Thread Dream Artist Aspiring
Hi, Thank you very much for the reply. Here is the registration code. If not in Xtns, where should I put this?static voidquery (void){  static GimpParamDef args[] =    {  {    GIMP_PDB_INT32,     "run-mode",    "Run mode"  },  {    GIMP_PDB_INT32,    "image",    "Input image"  },   

Re: [Gimp-developer] GIMP plug-in disabled.

2006-09-12 Thread David Gowers
On 9/12/06, Dream Artist Aspiring <[EMAIL PROTECTED]> wrote: Hi all, I am very new to gimp and it's development. I am trying to learn gimp-plugins. I can run the plugin fine for the first using  the Xtns->... menu. But if I want to run the same plugin for second time, the menu entry is disabled. Is

Re: [Gimp-developer] GIMP plug-in disabled.

2006-09-12 Thread Nathan Summers
On 9/12/06, Dream Artist Aspiring <[EMAIL PROTECTED]> wrote: Hi all, I am very new to gimp and it's development. I am trying to learn gimp-plugins. I can run the plugin fine for the first using the Xtns->... menu. But if I want to run the same plugin for second time, the menu entry is disabl

[Gimp-developer] GIMP plug-in disabled.

2006-09-12 Thread Dream Artist Aspiring
Hi all, I am very new to gimp and it's development. I am trying to learn gimp-plugins. I can run the plugin fine for the first using  the Xtns->... menu. But if I want to run the same plugin for second time, the menu entry is disabled. Is there something that I am doing wrong? please let me know. T