It is currently Mon May 06, 2024 2:42 pm


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 94 posts ]  Go to page Previous  1, 2, 3, 4, 5  Next
Author Message
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 8:01 pm  (#21) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13031
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
Steve wrote:


Just noticed there is also difference-clouds2

(define (script-fu-difference-clouds2

unlikely but ?

What's script-fu-difference-clouds2?

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 8:06 pm  (#22) 
Offline
GimpChat Member
User avatar

Joined: Dec 26, 2014
Posts: 198
Wallace wrote:
Steve wrote:


Just noticed there is also difference-clouds2

(define (script-fu-difference-clouds2

unlikely but ?

What's script-fu-difference-clouds2?


It’s the second line in the script

;Trying to reproduce this selection here: viewtopic.php?f=23&t=14475
(define (script-fu-difference-clouds2 image drawable turbulance seed detail xsize ysize


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 8:13 pm  (#23) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13031
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
Steve wrote:
It’s the second line in the script

;Trying to reproduce this selection here: viewtopic.php?f=23&t=14475
(define (script-fu-difference-clouds2 image drawable turbulance seed detail xsize ysize

I saw that.
Is that different form the filter difference-clouds?

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 8:21 pm  (#24) 
Offline
GimpChat Member
User avatar

Joined: Dec 26, 2014
Posts: 198
Wallace wrote:
Steve wrote:
It’s the second line in the script

;Trying to reproduce this selection here: viewtopic.php?f=23&t=14475
(define (script-fu-difference-clouds2 image drawable turbulance seed detail xsize ysize

I saw that.
Is that different form the filter difference-clouds?


Yes because of the 2 on the end, its unlikely you have another define named difference-clouds2, I guess i'm clutching at straws :oops:


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 8:47 pm  (#25) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4827
Location: Bendigo Vic. Australia
script-fu-difference-clouds2 is not registered so it won't display and is only called by the main script(no problems there)

_________________
Image
No matter how much you push the envelope, it'll still be stationery.


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 8:55 pm  (#26) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13031
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
Graechan wrote:
script-fu-difference-clouds2 is not registered so it won't display and is only called by the main script(no problems there)

I never had this issue of an installed script not showing.

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 9:00 pm  (#27) 
Offline
GimpChat Member
User avatar

Joined: Dec 26, 2014
Posts: 198
Wallace wrote:
Graechan wrote:
script-fu-difference-clouds2 is not registered so it won't display and is only called by the main script(no problems there)

I never had this issue of an installed script not showing.


It is a puzzle :gaah

One more clutch at straws

You could try opening the script and changing

"<Image>/Script-Fu/Lighting like Zeus ..." ;menu register

To

"<Image>/Testing/Lighting like Zeus ..." ;menu register

And see if it shows on the menu bar


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 9:16 pm  (#28) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4827
Location: Bendigo Vic. Australia
I would suggest changing
(define (script-fu-lightning to (define (script-fu-lightning-strike
and
(script-fu-register
"script-fu-lightning" ;function name to
(script-fu-register
"script-fu-lightning-strike" ;function name
It would still show under Script-Fu/Lighting like Zeus ...
Image

_________________
Image
No matter how much you push the envelope, it'll still be stationery.


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 9:24 pm  (#29) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13031
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
Steve wrote:

It is a puzzle :gaah

One more clutch at straws

You could try opening the script and changing

"<Image>/Script-Fu/Lighting like Zeus ..." ;menu register

To

"<Image>/Testing/Lighting like Zeus ..." ;menu register

And see if it shows on the menu bar

I changed the line you suggested and it's still a no-show. :(

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 9:27 pm  (#30) 
Offline
Script Coder
User avatar

Joined: May 07, 2014
Posts: 3975
Location: Canada
changed as suggested to not conflict with existing lightning.scm


Attachments:
LightningStrike.scm [10.13 KiB]
Downloaded 207 times

_________________
TinT
Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 9:30 pm  (#31) 
Offline
GimpChat Member
User avatar

Joined: Dec 26, 2014
Posts: 198
Wallace wrote:
Steve wrote:

It is a puzzle :gaah

One more clutch at straws

You could try opening the script and changing

"<Image>/Script-Fu/Lighting like Zeus ..." ;menu register

To

"<Image>/Testing/Lighting like Zeus ..." ;menu register

And see if it shows on the menu bar

I changed the line you suggested and it's still a no-show. :(


Sorry I'm out of ideas :(


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 9:35 pm  (#32) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4827
Location: Bendigo Vic. Australia
Wallace I've sent you a PM

_________________
Image
No matter how much you push the envelope, it'll still be stationery.


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 9:40 pm  (#33) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13031
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
Graechan wrote:
Wallace I've sent you a PM

Go it. ;)

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 9:46 pm  (#34) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13031
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
Image

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 9:51 pm  (#35) 
Offline
GimpChat Member

Joined: May 12, 2015
Posts: 4694
Works well for me!
Attachment:
Lightning Works.gif
Lightning Works.gif [ 815.51 KiB | Viewed 1713 times ]


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 10:42 pm  (#36) 
Offline
GimpChat Member
User avatar

Joined: Jul 06, 2013
Posts: 2606
Location: California
Before I start to download this script, which ones are needed? Is it Lightning.scm, vector to line stroke, lightning strike or is it all three that are needed for this script to run properly?


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 10:45 pm  (#37) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13031
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
mackenzieh wrote:
Before I start to download this script, which ones are needed? Is it Lightning.scm, vector to line stroke, lightning strike or is it all three that are needed for this script to run properly?

Use the lightning strike.scm and the vector to line stroke.py.

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 11:04 pm  (#38) 
Offline
GimpChat Member
User avatar

Joined: Jul 06, 2013
Posts: 2606
Location: California
Wallace wrote:
mackenzieh wrote:
Before I start to download this script, which ones are needed? Is it Lightning.scm, vector to line stroke, lightning strike or is it all three that are needed for this script to run properly?

Use the lightning strike.scm and the vector to line stroke.py.


Thanks Wallace! :)


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 11:19 pm  (#39) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 13031
Location: Native to NYC living in Arizona, Gimp 2.8 & 2.10, Win 11 PC.
mackenzieh wrote:
Thanks Wallace! :)

:bigthup

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
 Post subject: Re: Lightning like Zeus (script).
PostPosted: Sun Aug 28, 2016 11:22 pm  (#40) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4827
Location: Bendigo Vic. Australia
Wallace wrote:
mackenzieh wrote:
Before I start to download this script, which ones are needed? Is it Lightning.scm, vector to line stroke, lightning strike or is it all three that are needed for this script to run properly?

Use the lightning strike.scm and the vector to line stroke.py.

Wallace check your PMs, I've sent you another

_________________
Image
No matter how much you push the envelope, it'll still be stationery.


Top
Post new topic Reply to topic  [ 94 posts ]  Go to page Previous  1, 2, 3, 4, 5  Next

All times are UTC - 5 hours [ DST ]


   Similar Topics   Replies 
No new posts Attachment(s) Quick and Dirty Lightning Object

2

No new posts Attachment(s) Eagle head stroked with lightning brush.

10

No new posts Attachment(s) Looking for Script Coder to make Script of my VHS effect

2

No new posts Attachment(s) A liitle Start Help with a Script-Fu Script

3

No new posts Attachment(s) Cannot run test script-fu script via console

7



* Login  



Powered by phpBB3 © phpBB Group