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 searchBut is very simple modify or add new links
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;based on a script from John Laubach <
[email protected]>
;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 <
[email protected]>"
"PhotoComix <
[email protected]>"
"2011"
""
)
(script-fu-menu-register "gimpchat"
"<Image>/Help/Help Forum/")
(script-fu-register "gimptalk"
_"_GimpTalk"
_"another friendly gimp forum"
"PhotoComix <
[email protected]>"
"PhotoComix <
[email protected]>"
"2011"
""
)
(script-fu-menu-register "gimptalk"
"<Image>/Help/Help Forum/")
(script-fu-register "flickr-gimpusers-group"
_"_Gimpusers on Flickr"
_"Gimpusers group on Flickr"
"PhotoComix <
[email protected]>"
"PhotoComix <
[email protected]>"
"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 <
[email protected]>"
"PhotoComix <
[email protected]>"
"2011"
""
)
(script-fu-menu-register "Meet-the-gimp"
"<Image>/Help/Video Tutorial/")
(script-fu-register "GimpTrick"
_"_GimpTrick"
_"Excellent video-tutorial"
"PhotoComix <
[email protected]>"
"PhotoComix <
[email protected]>"
"2011"
""
)
(script-fu-menu-register "GimpTrick"
"<Image>/Help/Video Tutorial/")
(script-fu-register "CreativeCommons"
_"_Browse CreativeCommons "
_"search images licenced as Creative Commons"
"PhotoComix <
[email protected]>"
"PhotoComix <
[email protected]>"
"2011"
""
)
(script-fu-menu-register "CreativeCommons"
"<Image>/Image/")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;