Howto Unsubscribe

2000-01-25 Thread Riyad Kalla

How do I unsubscribe from this list? I've checked the gimp.org section and
the archives of the list and all I can find is people making FUN of others
trying to unsubscribe, but not actually how to do it. Instead of flooding
this list with crap emails, I was hoping to get it right the first time and
not annoy the hell out of everyone.

Riyad Kalla



Re: Script-Fu from Perl-Fu?

2000-01-25 Thread Marc Lehmann

On Wed, Jan 26, 2000 at 12:27:20AM +0100, Stephan Skrodzki 
<[EMAIL PROTECTED]> wrote:
> GIMP version 1.1.11

^^^ that version is waay old it already has a long beard! please try a
slightly newer one, and most probably everything I said becomes more true.

-- 
  -==- |
  ==-- _   |
  ---==---(_)__  __   __   Marc Lehmann  +--
  --==---/ / _ \/ // /\ \/ /   [EMAIL PROTECTED] |e|
  -=/_/_//_/\_,_/ /_/\_\   XX11-RIPE --+
The choice of a GNU generation   |
 |



Re: Script-Fu from Perl-Fu?

2000-01-25 Thread Stephan Skrodzki

> On Tue, Jan 25, 2000 at 04:25:31PM +0100, Stephan Skrodzki 
><[EMAIL PROTECTED]> wrote:
> > Gimp->script_fu_drop_shadow(0,$unsel_lay,8,8,15,"black",60,1);
> > 
> > But still the same result, the script isn't found...
> 
> Which version of gimp are you using, btw? If it's 1.0, then it indeed
> is named "script-fu-drop-shadow", and then you need to call it either like:

nope, as I wrote in the very beginning of this threat:

function/macro "shadow" not found in Gimp at 
/home/skrodzki/.gimp-1.1/plug-ins/marly-text-button line 39 (ERROR)
-
stevekist:~/mac/dokumente/Evi > gimp -v

Gdk-WARNING **: locale not supported by C library
Message: Passed serialization test

GIMP version 1.1.11
-

Regards
 Steve


 
| Stephan Skrodzki Phone: +49-621-1565435 "Nobody expects the| 
| Mannheim, Germany  Fax: +49-621-1565083  Spanish Inquisition!" |
| Mobile: +49-173-2003491|
 




Re: Script-Fu from Perl-Fu?

2000-01-25 Thread Marc Lehmann

On Tue, Jan 25, 2000 at 04:25:31PM +0100, Stephan Skrodzki 
<[EMAIL PROTECTED]> wrote:
> Gimp->script_fu_drop_shadow(0,$unsel_lay,8,8,15,"black",60,1);
> 
> But still the same result, the script isn't found...

Which version of gimp are you using, btw? If it's 1.0, then it indeed
is named "script-fu-drop-shadow", and then you need to call it either like:

"Gimp::script-fu-drop-shadow"->(args)

or

&{"Gimp::script-fu-drop-shadow"}(args)

(see the section on "Calling Gimp Functions" in the manpage)

-- 
  -==- |
  ==-- _   |
  ---==---(_)__  __   __   Marc Lehmann  +--
  --==---/ / _ \/ // /\ \/ /   [EMAIL PROTECTED] |e|
  -=/_/_//_/\_,_/ /_/\_\   XX11-RIPE --+
The choice of a GNU generation   |
 |



Re: business charts / statistics graphic

2000-01-25 Thread Kelly Lynn Martin

On Tue, 25 Jan 2000 15:23:33 +0100, Mirek Szymczak <[EMAIL PROTECTED]> said:

>I´m actually new to gimp and i don´t know what this porgram can do .
>I need to create a statistic (mail usage) with "beautifull" charts ,
>the data is stored in a database , can i do this with gimp ? can i
>write a script fu for this ? how does it work , has someone an
>example?

This sounds like something for which gnuplot would be a better
candidate.

Kelly



Re: Script-Fu from Perl-Fu?

2000-01-25 Thread Stephan Skrodzki

> > marly-text-button: function/macro "script_fu_drop_shadow" not found in Gimp at 
>/home/skrodzki/.gimp-1.1/plug-ins/marly-text-button line 39 (ERROR)
> 
> You need to import the ":auto"-tag from the Gimp module to get all functions
> in your current module, or otherwise you have to call it as a static method:
> 
> Gimp->script_fu_drop_shadow(...)

No, I did test both: 

use Gimp qw(:auto __);

and 

Gimp->script_fu_drop_shadow(0,$unsel_lay,8,8,15,"black",60,1);

But still the same result, the script isn't found...

Regards
 Steve

 
| Stephan Skrodzki Phone: +49-621-1565435 "Nobody expects the| 
| Mannheim, Germany  Fax: +49-621-1565083  Spanish Inquisition!" |
| Mobile: +49-173-2003491|
 




business charts / statistics graphic

2000-01-25 Thread Robert J. Brown

> "Mirek" == Mirek Szymczak <[EMAIL PROTECTED]> writes:

Mirek> Hello Everybody !  I´m actually new to gimp and i don´t
Mirek> know what this porgram can do .  I need to create a
Mirek> statistic (mail usage) with "beautifull" charts , the data
Mirek> is stored in a database , can i do this with gimp ? can i
Mirek> write a script fu for this ? how does it work , has someone
Mirek> an example?

You might be better off with gnuplot to plot the actual data; then you 
could "decorate" it with gimp to dress it up.

-- 
  "And there came a writing to him from Elijah"  [2Ch 21:12]  
R. J. Brown III  [EMAIL PROTECTED] http://www.elilabs.com/~rj  voice 847 543-4060
Elijah Laboratories Inc. 457 Signal Lane, Grayslake IL 60030  fax 847 543-4061
-  M o d e l i n g   t h e   M e t h o d s   o f   t h e   M i n d  --



Re: Script-Fu from Perl-Fu?

2000-01-25 Thread Marc Lehmann

On Mon, Jan 24, 2000 at 04:39:01PM +0100, Stephan Skrodzki 
<[EMAIL PROTECTED]> wrote:
> This is the result I get then:
> 
> marly-text-button: function/macro "script_fu_drop_shadow" not found in Gimp at 
>/home/skrodzki/.gimp-1.1/plug-ins/marly-text-button line 39 (ERROR)

You need to import the ":auto"-tag from the Gimp module to get all functions
in your current module, or otherwise you have to call it as a static method:

Gimp->script_fu_drop_shadow(...)

-- 
  -==- |
  ==-- _   |
  ---==---(_)__  __   __   Marc Lehmann  +--
  --==---/ / _ \/ // /\ \/ /   [EMAIL PROTECTED] |e|
  -=/_/_//_/\_,_/ /_/\_\   XX11-RIPE --+
The choice of a GNU generation   |
 |



business charts / statistics graphic

2000-01-25 Thread Mirek Szymczak

Hello  Everybody !

I´m actually new to gimp and i don´t know what this porgram can do .
I need to create a statistic (mail usage)  with "beautifull" charts
, the data is stored in a database , can i do this with gimp ? can i
write a script fu  for this ? how does it work , has someone an example?

thanx in advance
Mirek



Second Grader Offers IPO - Makes $30 Million In First Day Of Trading(fwd)

2000-01-25 Thread Kingsly John



-(.)---(.)-
 I'm going to live forever, or die trying!
___

 e-mail: [EMAIL PROTECTED] | ICQ: 14787510 | Phone: +971-50-4979201
___


-- Forwarded message --
Date: Sun, 23 Jan 2000 19:30:00 PST
Subject: Second Grader Offers IPO - Makes $30 Million In First Day Of Trading

Silicon Valley, CA -

 Second grader Timmy Watson announced an initial public offering for
his web page titled "I Love My Kitty" on the NASDAQ stock exchange
yesterday.

 I Love My Kitty LLC (KTTY) made over thirty-million in the first
day of trading.  The stock rocketed from an initial two dollars a share
to a whopping four-hundred-and-sixty dollars a share in the first two
hours of trading.

   I Love My Kitty LLC is based on Timmy's web page of the same name
which explains to everyone how much he loves his kitty Mittens.
Investors are hoping to build, "A radical new E-commerce site based on
"I Love My Kitty".  According to Saul Schlepstein, an expert in
e-business, "ILMK could very well be the next Amazon.com!  I mean this
page has everything!  Cute kids!  Cats!  We think it will soon be one of
the strongest e-commerce sites on the net!  It's amazing!  I think I
just wet my pants!"

   Not everyone is excited about the new company though.  Timmy's older
sister Tanya is reported to be creating her own site entitled "I Love My
Barbie!"  Many investors are holding off on buying ILMK stock in case
ILMB turns out to be better positioned in the market than ILMK.  Daniel
Codpiece of the investment firm of Morton Morton And Ted noted that,
"Tanya is in the FOURTH grade.  Making us suspect that she will come out
with a much more marketable product."

   In response to investors fears that ILMK will be eclipsed by his
sister's page, Timmy announced that, "Tanya is a big poopy head!"  He
also informed the press that she seems to have a particularly virulent
strain of "cooties".