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 toggle.

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] 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

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 menu

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 is

[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]

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 this

[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.

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

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

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 is possible to

[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_docmantask=cat_viewgid=23Itemid=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

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_docmantask=cat_viewgid=23Itemid=38 For an example of what it does:

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 corrected the

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_docmantask=cat_viewgid=23Itemid=38 I downloaded viewShortcuts.py and place it in my

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_docmantask=cat_viewgid=23Itemid=38 Hi: I

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