[Gimp-user] Wacom Tablet not working with GIMP

2012-09-17 Thread torreyproctor
Is their a way to get the pressure sensitivity of my Wacom Bamboo Capture tablet working with GIMP. Is tablets pressure sensitivity still unavailable to GIMP 2.8.2 Mac OS X? -- torreyproctor (via gimpusers.com) ___ gimp-user-list mailing list gimp-us

Re: [Gimp-user] Wacom Tablet not working with GIMP

2012-09-17 Thread Patrick Shanahan
* torreyproctor [09-17-12 08:48]: > Is their a way to get the pressure sensitivity of my Wacom Bamboo > Capture tablet working with GIMP. It works with mine on openSUSE 12.2+Tumbleweed. Just had to plug it in. > Is tablets pressure sensitivity still unavailable to GIMP 2.8.2 Mac OS > X? Don'

Re: [Gimp-user] xcf file corrupt?

2012-09-17 Thread Richard Gitschlag
> Date: Mon, 17 Sep 2012 04:52:25 +0200 > From: for...@gimpusers.com > To: gimp-user-list@gnome.org > CC: t...@gimpusers.com > Subject: [Gimp-user] xcf file corrupt? > > GIMP closed while I was in the middle of saving an image and is now telling me that the xcf is corrupt and that there is no

Re: [Gimp-user] Wacom Tablet not working with GIMP

2012-09-17 Thread Richard Gitschlag
It is a known bug that GIMP completely fail to detect a tablet that does in fact exist during its startup process (and there is no way to make GIMP re-check its input devices besides closing GIMP and restarting). To check if this is the case with you, try running your pen across the tablet for

Re: [Gimp-user] Wacom Tablet not working with GIMP

2012-09-17 Thread Jehan Pagès
Hi, On Mon, Sep 17, 2012 at 9:47 PM, torreyproctor wrote: > Is their a way to get the pressure sensitivity of my Wacom Bamboo Capture > tablet working with GIMP. Is tablets pressure sensitivity still unavailable > to GIMP 2.8.2 Mac OS X? > I have a Wacom Bamboo, and I have Gimp from the sourc

[Gimp-user] xcf file corrupt?

2012-09-17 Thread curseofdark
>> Date: Mon, 17 Sep 2012 04:52:25 +0200 >> From: for...@gimpusers.com >> To: gimp-user-list@gnome.org >> CC: t...@gimpusers.com >> Subject: [Gimp-user] xcf file corrupt? >> >> > GIMP closed while I was in the middle of saving an image and is now >telling me that the xcf is corrupt and that the

[Gimp-user] script-fu: illegal function?

2012-09-17 Thread Gary Aitken
When I try the following in the script-fu console: ((define (find-dot txt txtLen offset) (print "foo")) (find-dot "abcd.ef" 7 1)) "foo" Error: illegal function The find-dot macro obviously exists and is being executed. So what is the illegal function it is complaining about? Thanks

Re: [Gimp-user] xcf file corrupt?

2012-09-17 Thread Jernej Simončič
On Mon, 17 Sep 2012 20:16:19 +0200, curseofdark wrote: > I'm using 2.6.11 on windows 7, and GIMP closed because of a computer crash > not a program error, sorry I wasn't more specific! The computer crashed in > the middle of saving the image This is the problem - if the machine crashed while th

[Gimp-user] xcf file corrupt?

2012-09-17 Thread curseofdark
>On Mon, 17 Sep 2012 20:16:19 +0200, curseofdark wrote: >> I'm using 2.6.11 on windows 7, and GIMP closed because of a computer crash >> not a program error, sorry I wasn't more specific! The computer crashed in >> the middle of saving the image >This is the problem - if the machine crashed whi

Re: [Gimp-user] script-fu: illegal function?

2012-09-17 Thread Kevin Cozens
On 12-09-17 02:28 PM, Gary Aitken wrote: ((define (find-dot txt txtLen offset) (print "foo")) (find-dot "abcd.ef" 7 1)) First, you wrapped the whole thing in ( ). Drop the leading and trailing parentheses. Second, that is a line of Scheme code and Scheme does not contain a "print" function.

Re: [Gimp-user] flip through python console problems

2012-09-17 Thread Kevin Cozens
On 12-09-13 03:16 PM, free wrote: pdb.gimp_item_transform_flip(layer, 320, 0, 320, 1) the flip succeeds, but it generates a distortion on the flipped layer. When I try to flip that layer through gimp's interface, it is smooth. You probably want to use the "simple" flip function. The version yo

Re: [Gimp-user] script-fu: illegal function?

2012-09-17 Thread Richard Gitschlag
That's right - parentheses are not "free" in Scheme scripting, every opening parenthesis must be immediately followed by a function call. When you just want parentheses to group a few statements together with, call the (begin ... ) function: (begin (function a) (function b) (etc ) ... ) --

Re: [Gimp-user] xcf file corrupt?

2012-09-17 Thread Maarten De Munck
Jernej Simončič schreef op ma 17-09-2012 om 20:53 [+0200]: > This is the problem - if the machine crashed while the file was being > written, it's possible that only a small amount of data reached the disk. > Since the metadata (file name, size etc.) is updated by the OS > independently, the file s