Re: [Gimp-user] Questing re. keyboard shortcuts

2008-01-04 Thread Sven Neumann
Hi, On Fri, 2008-01-04 at 03:36 +, Jeffery Small wrote: > Thanks for the tip! That's just what I was looking for. The only > remaining problem I see is that the Alt-S shortcut is still being grabbed > by the Keyboard Shortcuts menu itself to toggle the "Save keyboard > shortcuts on exit" to

Re: [Gimp-user] Odd behavior with rotation dialog

2008-01-04 Thread Sven Neumann
Hi, On Fri, 2008-01-04 at 02:30 +, Jeffery Small wrote: > What are you doing for rotation? I select the rotation tool from the > toolbox and as soon as I click in the image the Rotate dialog is displayed. That is what I do and I can not reproduce your problem then. Sven

Re: [Gimp-user] Odd behavior with rotation dialog

2008-01-04 Thread norman
< snip > > > I believe that you have explained his observation. He has not > committed the numerically entered rotation and it is negated when he > attempts to rotate the image with the mouse, and is much more > noticable at larger angles of rotation. I would like to add that I never actually do

Re: [Gimp-user] Opening files in Gimp2.4x from 3rd party thumbnail viewer

2008-01-04 Thread Sven Neumann
Hi, On Wed, 2008-01-02 at 14:07 -0800, David Herman wrote: > On Wednesday 02 January 2008, Sven Neumann wrote: > > IDimager > > Windows prog so I don't know if my advice will work. > > I'd go to the IDimager preferences and see if it is possible to > change the word gimp to gimp-remote where ap

Re: [Gimp-user] Questing re. keyboard shortcuts

2008-01-04 Thread Joao S. O. Bueno
On Friday 04 January 2008 05:43, Sven Neumann wrote: > Hi, > > On Fri, 2008-01-04 at 03:36 +, Jeffery Small wrote: > > Thanks for the tip! That's just what I was looking for. The > > only remaining problem I see is that the Alt-S shortcut is still > > being grabbed by the Keyboard Shortcuts m

Re: [Gimp-user] Questing re. keyboard shortcuts

2008-01-04 Thread Sven Neumann
Hi, On Fri, 2008-01-04 at 08:09 -0300, Joao S. O. Bueno wrote: > But the code is already in place, and works fine. Some people do use > it, as they do conflict with shortcut assignement, whcih makes for a > faster work flow than mnemonics. I see nor eason to remove this > feature - even if it

[Gimp-user] Opening files in Gimp2.4x from 3rd party, thumbnail viewer

2008-01-04 Thread Peter Taylor
Hi, Thanks to all who pointed me to gimp-remote to prevent multiple instances of Gimp when opening files from third party thumbnail viewers. I downloaded the Windows version, which requires the following registry entry to be added: [HKEY_LOCAL_MACHINE\SOFTWARE\GNU\gimp-win-remote] @="gimp-2.4.e

Re: [Gimp-user] Questing re. keyboard shortcuts

2008-01-04 Thread Jeffery Small
Sven Neumann <[EMAIL PROTECTED]> writes: >I don't think we will support the option to disable mnemonics much >longer. Mnemonics are standard user interface elements on a modern >desktop and it doesn't make sense to add extra code to disable them. Sven: I hope you will reconsider that. Having t

[Gimp-user] Displaying keyboard shortcuts

2008-01-04 Thread Jeffery Small
Speaking of keyboard shortcuts, is there any way to see a concise list of all assigned shortcuts ordered into groups (i.e., sorted by alpha-numeric, Shift, Control, Alt, Meta, Control-Shift, etc.)? If not, I think this would be a really useful function to add to the Keyboard shortcuts menu. Pressi

Re: [Gimp-user] Opening files in Gimp2.4x from 3rd party, thumbnail viewer

2008-01-04 Thread Alexander Rabtchevich
Thank you for the tip, it works. And the document http://windowsxp.mvps.org/imgeditor.htm adds information how to make GIMP default picture editor: * Click Start, Run and type CONTROL FOLDERS * Select the File Types tab * Select the image file type from the listing (e.g. jpg), and

[Gimp-user] Script-fu gimp-file-save-thumbnail function

2008-01-04 Thread Martin Bradley
Hi Folks, I'm trying to use this script to create a thumbnail of a jpg or gif image. However I am not getting any results, no new image stored. Image Process Gimp script To run this from the command prompt: gimp -c

Re: [Gimp-user] Script-fu gimp-file-save-thumbnail function

2008-01-04 Thread Kevin Cozens
Martin Bradley wrote: > (define (script-fu-create-thumb filename) > (let* ((img 0)) > ;; car needed here because gimp functions return values as lists > (set! img (car (gimp-file-load 1 filename filename)) > (gimp-file-save img filename) > (print (gimp-file-save-thumbnail img fi

Re: [Gimp-user] Opening files in Gimp2.4x from 3rd party thumbnail viewer

2008-01-04 Thread David Herman
On Friday 04 January 2008, Sven Neumann wrote: > Hi, > > On Wed, 2008-01-02 at 14:07 -0800, David Herman wrote: > > On Wednesday 02 January 2008, Sven Neumann wrote: > > > IDimager > > > > Windows prog so I don't know if my advice will work. > > > > I'd go to the IDimager preferences and see if it

[Gimp-user] Displaying keyboard shortcuts

2008-01-04 Thread mordac2
For those wanting a list of their current shortcuts - you can use this script... http://gimpthoughts.com/home/index.php?option=com_docman&task=cat_view&gid=23&Itemid=38 For an example of what it does: http://gimpthoughts.com/share/shortcuts/categories.html Couple notes: It creates a "shortcuts"

Re: [Gimp-user] Script-fu gimp-file-save-thumbnail function

2008-01-04 Thread Martin Bradley
Hi Folks, >You have an error in your placement of ')'. That was because I thought set was used similar to (let ..) >I don't think you need the file save since you haven't changed the file since >it was loaded. I have corrected the arguments. I saved the file first because gimp-file-save-thumbn

Re: [Gimp-user] Displaying keyboard shortcuts

2008-01-04 Thread David Gowers
Hi mordac, On Jan 5, 2008 2:33 AM, <[EMAIL PROTECTED]> wrote: > For those wanting a list of their current shortcuts - you can use this > script... > > http://gimpthoughts.com/home/index.php?option=com_docman&task=cat_view&gid=23&Itemid=38 > > For an example of what it does: > http://gimpthoughts.

Re: [Gimp-user] Script-fu gimp-file-save-thumbnail function

2008-01-04 Thread Kevin Cozens
Martin Bradley wrote: > I'd been slowly trying to learn Common Lisp and thought that Script-Fu had it. > Here is the scheme coding tutorial I was using, most likely the wrong > thing to be reading. > http://www.ccs.neu.edu/home/dorai/t-y-scheme/t-y-scheme-Z-H-1.html#node_toc_node_sec_4.1 Script-Fu

Re: [Gimp-user] Script-fu gimp-file-save-thumbnail function

2008-01-04 Thread Joao S. O. Bueno
On Friday 04 January 2008 19:35, Martin Bradley wrote: > Hi Folks, > > >You have an error in your placement of ')'. > > That was because I thought set was used similar to (let ..) > > >I don't think you need the file save since you haven't changed the > > file since it was loaded. > > I have correc

Re: [Gimp-user] Displaying keyboard shortcuts

2008-01-04 Thread Jeffery Small
On Jan 5, 2008 2:33 AM, <[EMAIL PROTECTED]> wrote: > For those wanting a list of their current shortcuts - you can use this > script... > > http://gimpthoughts.com/home/index.php?option=com_docman&task=cat_view&gid=23&Itemid=38 Hi: I downloaded viewShortcuts.py and place it in my plug-ins direct

Re: [Gimp-user] Displaying keyboard shortcuts

2008-01-04 Thread Kevin Cozens
Jeffery Small wrote: > On Jan 5, 2008 2:33 AM, <[EMAIL PROTECTED]> wrote: >> For those wanting a list of their current shortcuts - you can use this >> script... >> >> http://gimpthoughts.com/home/index.php?option=com_docman&task=cat_view&gid=23&Itemid=38 > > I downloaded viewShortcuts.py and plac

Re: [Gimp-user] Displaying keyboard shortcuts

2008-01-04 Thread David Gowers
On Jan 5, 2008 1:28 PM, Jeffery Small <[EMAIL PROTECTED]> wrote: > On Jan 5, 2008 2:33 AM, <[EMAIL PROTECTED]> wrote: > > For those wanting a list of their current shortcuts - you can use this > > script... > > > > http://gimpthoughts.com/home/index.php?option=com_docman&task=cat_view&gid=23&Itemi

Re: [Gimp-user] Displaying keyboard shortcuts

2008-01-04 Thread Kevin Cozens
Jeffery Small wrote: > I downloaded viewShortcuts.py and place it in my plug-ins directory. I forgot to mention that after the file is copied to the plug-ins directory you need to set the execute bits (ie. use chmod +x). -- Cheers! Kevin. http://www.ve3syb.ca/ |"What are we going to