It is currently Mon Jul 22, 2024 4:35 am


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 5 posts ] 
Author Message
 Post subject: new script-" Find Help"-(Gimp Help Forum,VideoTutorial+ browse CC)
PostPosted: Mon Apr 18, 2011 5:06 am  (#1) 
Offline
GimpChat Member

Joined: Apr 12, 2010
Posts: 5870
Thank to Rod that find and modify and posted here a nice "links" script .

I removed some of the gimp forum links added links for my favorite Video Tutorial side , replaced the links for a stock side with that for CreativeCommons search

The script now add 3 submenu, 2 in Help ("Help Forum", and "Video Tutorial") and 1 in Image (Browse "CreativeCommons")

links are for GimpChat,GimpTalk, the Flickr Gimpusers Group, MeetTheGimp,Gimptrick (on youtube), and the CreativeCommons search


But is very simple modify or add new links

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;based on a script from John Laubach <laubach_john@hotmail.com>
;revised by Rod ;http://www.gimpchat.com/viewtopic.php?f=9&t=395&p=19368#p19368
;last edit by PhotoComix



(define (gimpchat)
(plug-in-web-browser "http://www.gimpchat.com/")
)

(define (gimptalk)
(plug-in-web-browser "http://www.gimptalk.com/")
)

(define (flickr-gimpusers-group)
(plug-in-web-browser "http://www.flickr.com/groups/gimpusers/discuss/")
)


(define (Meet-the-gimp)
(plug-in-web-browser "http://meetthegimp.org/getting-the-old-shows/")
)

(define (GimpTrick)
(plug-in-web-browser "http://www.youtube.com/user/GIMPtricks")
)

(define (CreativeCommons)
(plug-in-web-browser "http://search.creativecommons.org/")
)

(script-fu-register "gimpchat"
_"_GimpChat"
_"most active & friendly GIMP forum"
"PhotoComix <photocomix@gmail.com>"
"PhotoComix <photocomix@gmail.com>"
"2011"
""
)

(script-fu-menu-register "gimpchat"
"<Image>/Help/Help Forum/")


(script-fu-register "gimptalk"
_"_GimpTalk"
_"another friendly gimp forum"
"PhotoComix <photocomix@gmail.com>"
"PhotoComix <photocomix@gmail.com>"
"2011"
""
)


(script-fu-menu-register "gimptalk"
"<Image>/Help/Help Forum/")


(script-fu-register "flickr-gimpusers-group"
_"_Gimpusers on Flickr"
_"Gimpusers group on Flickr"
"PhotoComix <photocomix@gmail.com>"
"PhotoComix <photocomix@gmail.com>"
"2011"
""
)

(script-fu-menu-register "flickr-gimpusers-group"
"<Image>/Help/Help Forum/")



(script-fu-register "Meet-the-gimp"
_"_ MeetTheGimp"
_"Most large collection of excellent video-tutorial"
"PhotoComix <photocomix@gmail.com>"
"PhotoComix <photocomix@gmail.com>"
"2011"
""
)

(script-fu-menu-register "Meet-the-gimp"
"<Image>/Help/Video Tutorial/")

(script-fu-register "GimpTrick"
_"_GimpTrick"
_"Excellent video-tutorial"
"PhotoComix <photocomix@gmail.com>"
"PhotoComix <photocomix@gmail.com>"
"2011"
""
)

(script-fu-menu-register "GimpTrick"
"<Image>/Help/Video Tutorial/")

(script-fu-register "CreativeCommons"
_"_Browse CreativeCommons "
_"search images licenced as Creative Commons"
"PhotoComix <photocomix@gmail.com>"
"PhotoComix <photocomix@gmail.com>"
"2011"
""
)

(script-fu-menu-register "CreativeCommons"
"<Image>/Image/")


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

_________________
My 3D Gallery on Deviantart http://photocomix2.deviantart.com/
Main gallery http://www.flickriver.com/photos/photocomix-mandala/
Mandala and simmetry http://www.flickriver.com/photos/photocomix_mandala/

Image

Mrs Wilbress


Last edited by PhotoComix on Mon Apr 18, 2011 7:12 am, edited 3 times in total.

Share on Facebook Share on Twitter Share on Orkut Share on Digg Share on MySpace Share on Delicious Share on Technorati
Top
 Post subject: Re: script - More helpful links-(help Forum, VideoTutorial, browse CC)
PostPosted: Mon Apr 18, 2011 5:18 am  (#2) 
Offline
GimpChat Member

Joined: Apr 12, 2010
Posts: 5870
PS feel free to suggest changes, i will not like add more submenu but i may add more entries
(my idea was
select only the very best to keep it simple and avoid too much new menu entry)

_________________
My 3D Gallery on Deviantart http://photocomix2.deviantart.com/
Main gallery http://www.flickriver.com/photos/photocomix-mandala/
Mandala and simmetry http://www.flickriver.com/photos/photocomix_mandala/

Image

Mrs Wilbress


Top
 Post subject: Re: new script-" Find Help"-(Gimp Help Forum,VideoTutorial+ browse CC)
PostPosted: Mon Apr 18, 2011 3:00 pm  (#3) 
Offline
GimpChat Member
User avatar

Joined: Mar 02, 2011
Posts: 1850
Location: Michigan
Maybe add the Tutorial Indexs for GIMP Talk and GIMP Chat in there?

_________________
Image
I'm back I think


Top
 Post subject: Re: new script-" Find Help"-(Gimp Help Forum,VideoTutorial+ browse CC)
PostPosted: Wed Apr 20, 2011 2:54 am  (#4) 
Offline
GimpChat Member

Joined: Apr 12, 2010
Posts: 5870
As comment in the script i added a template , to help to modify the script as example to add a link for non english gimp forums, or anyway other sides.

Not sure if is clear , any suggestion to make that sort to "how to" part more clear is welcome

all the changes are in the comment so nothing change in what this script does
Here i highlight the comment

Quote:
;based on a script from John Laubach <laubach_john@hotmail.com>
;revisited by Rod ;http://www.gimpchat.com/viewtopic.php?f=9&t=395&p=19368#p19368
;Last edit by PhotoComix
;
; to modify this script to your needs
;you may add new link, as example for a gimp forum in your language
;using this template: to add a link for side X
;this is to define X (scroll for the matching register part )


;(define (NAME OF THE SITE)
; (plug-in-web-browser "SITE URL HERE")



(define (gimpchat)
(plug-in-web-browser "http://www.gimpchat.com/")
)

(define (gimptalk)
(plug-in-web-browser "http://www.gimptalk.com/")
)

(define (flickr-gimpusers-group)
(plug-in-web-browser "http://www.flickr.com/groups/gimpusers/discuss/")
)


(define (Meet-the-gimp)
(plug-in-web-browser "http://meetthegimp.org/getting-the-old-shows/")
)

(define (GimpTrick)
(plug-in-web-browser "http://www.youtube.com/user/GIMPtricks")
)

(define (CreativeCommons)
(plug-in-web-browser "http://search.creativecommons.org/")
)

;this is to register X ,after the empty line
"NAME OF THE SITE" FOR X should be the same name used in "define X")
;
;
;(script-fu-register "NAME OF THE SITE"
;
; _"_Name for menu entry"
; _"tooltip text here"
; "PhotoComix <photocomix@gmail.com>"
; "PhotoComix <photocomix@gmail.com>"
; "2011"
; ""
; )


;(script-fu-menu-register "gimpchat"
; "<Image>/Help/Help Forum/")
;you may edit "<Image>/Help/Help Forum/" to use a different menu

(script-fu-register "gimpchat"
_"_GimpChat"
_"most active & friendly GIMP forum"
"PhotoComix <photocomix@gmail.com>"
"PhotoComix <photocomix@gmail.com>"
"2011"
""
)

(script-fu-menu-register "gimpchat"
"<Image>/Help/Help Forum/")

(script-fu-register "gimptalk"
_"_GimpTalk"
_"another friendly gimp forum"
"PhotoComix <photocomix@gmail.com>"
"PhotoComix <photocomix@gmail.com>"
"2011"
""
)


(script-fu-menu-register "gimptalk"
"<Image>/Help/Help Forum/")


(script-fu-register "flickr-gimpusers-group"
_"_Gimpusers on Flickr"
_"Gimpusers group on Flickr"
"PhotoComix <photocomix@gmail.com>"
"PhotoComix <photocomix@gmail.com>"
"2011"
""
)

(script-fu-menu-register "flickr-gimpusers-group"
"<Image>/Help/Help Forum/")



(script-fu-register "Meet-the-gimp"
_"_ MeetTheGimp"
_"Most large collection of excellent video-tutorial"
"PhotoComix <photocomix@gmail.com>"
"PhotoComix <photocomix@gmail.com>"
"2011"
""
)

(script-fu-menu-register "Meet-the-gimp"
"<Image>/Help/Video Tutorial/")

(script-fu-register "GimpTrick"
_"_GimpTrick"
_"Excellent video-tutorial"
"PhotoComix <photocomix@gmail.com>"
"PhotoComix <photocomix@gmail.com>"
"2011"
""
)

(script-fu-menu-register "GimpTrick"
"<Image>/Help/Video Tutorial/")

(script-fu-register "CreativeCommons"
_"_Browse CreativeCommons "
_"search images licenced as Creative Commons"
"PhotoComix <photocomix@gmail.com>"
"PhotoComix <photocomix@gmail.com>"
"2011"
""
)

(script-fu-menu-register "CreativeCommons"
"<Image>/Image/")


aaargh!! a smile popped inside the code :gaah !

_________________
My 3D Gallery on Deviantart http://photocomix2.deviantart.com/
Main gallery http://www.flickriver.com/photos/photocomix-mandala/
Mandala and simmetry http://www.flickriver.com/photos/photocomix_mandala/

Image

Mrs Wilbress


Top
 Post subject: Re: new script-" Find Help"-(Gimp Help Forum,VideoTutorial+ browse CC)
PostPosted: Wed Apr 20, 2011 2:11 pm  (#5) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14715
Location: USA
I fixed it PC. :)

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
Post new topic Reply to topic  [ 5 posts ] 

All times are UTC - 5 hours [ DST ]


   Similar Topics   Replies 
No new posts We have a new forum!

6

No new posts The other GIMP forum

3



* Login  



Powered by phpBB3 © phpBB Group