Re: [Gimp-user] Anyway to add multiple Guides at once?

2009-05-29 Thread Niels Giesen
latest added image in script-fu is (vector-ref (cadr (gimp-image-list)) 0) so a one-off would be (map (lambda (guide) (gimp-image-add-hguide (vector-ref (cadr (gimp-image-list)) 0) guide)) '(10 230)) I do not know how to get the /active/ image though ... but here's a script http://n

Re: [Gimp-user] Anyway to add multiple Guides at once

2009-05-29 Thread D.Jones (aka) Capnhud
- , DJ wrote: > > Didn't see it in the manual, but was wondering if there is a > short-cut to adding multiple Guides at once (ie., a comma-separated list)? It seems difficult to imagine anything faster than the Gimp-python console for this: image = gimp.image_list()[0] # get the latest load

Re: [Gimp-user] Anyway to add multiple Guides at once?

2009-05-27 Thread David Gowers
On Wed, May 27, 2009 at 1:04 PM, DJ wrote: > Hi Gimp-user, > > Didn't see it in the manual, but was wondering if there is a > short-cut to adding multiple Guides at once (ie., a comma-separated list)? It seems difficult to imagine anything faster than the Gimp-python console for this: image = g