Re: [Tutor] Print Screen

2006-11-04 Thread Luke Paireepinart
I didn't set up a design doc or anything.I just randomly have ideas sometimes and I just make a prototype first so I can see what kind of problems arise,because when I just think about it I can't determine what I will need in order to make the app. For example, all the functions that I found to do

Re: [Tutor] Print Screen

2006-11-04 Thread Chris Hengge
Wow, that hasn't come up in my searching, thanks! Looks like you are right and the project is dead, but the author did toss there code up for viewing so I can stumble around a bit there. On 11/3/06, Jonathon Sisson <[EMAIL PROTECTED]> wrote: Chris,I don't know if this has been mentioned yet, but t

Re: [Tutor] Print Screen

2006-11-04 Thread Jonathon Sisson
Chris, I don't know if this has been mentioned yet, but this site might be useful: http://bdash.net.nz/blog/2003/12/24/python-vnc-client/ The code base has (last I heard) fallen stagnant, but it may very well be worth a look as a starting point for your VNC project idea. Jonathon Chris Hengg

Re: [Tutor] Print Screen

2006-11-03 Thread Tony Cappellini
Date: Thu, 02 Nov 2006 20:09:59 -0500From: Bill Burns <[EMAIL PROTECTED]>Subject: Re: [Tutor] Print Screen To: Chris Hengge <[EMAIL PROTECTED]>Cc: pythontutor < tutor@python.org>Message-ID: <[EMAIL PROTECTED]>Content-Type: text/plain; charset=ISO-8859-1; format=flowed >

Re: [Tutor] Print Screen

2006-11-03 Thread Chris Hengge
Oh wow! That is great trick for lowering network requirements. Have you actually implimented that into a working app for test? You could shave a bit more from the bandwidth using that trick if you locked to a specific window for transfer *thinking blinking tray icons etc would get stripped*. How ar

Re: [Tutor] Print Screen

2006-11-03 Thread Luke Paireepinart
Chris Hengge wrote: > Wow.. I have visions of writing a little wanna-be VNC client/server > now using the ImageGrab.grab() =D > This ImageGrab trick does exactly what I wanted. Thanks for the tip! > > Actually, I want to write a little package for the learning experience > sometime over the holid

Re: [Tutor] Print Screen

2006-11-03 Thread Chris Hengge
Wow.. I have visions of writing a little wanna-be VNC client/server now using the ImageGrab.grab() =DThis ImageGrab trick does exactly what I wanted. Thanks for the tip!Actually, I want to write a little package for the learning experience sometime over the holidays (plus I use VNC fairly often), b

Re: [Tutor] Print Screen

2006-11-02 Thread Luke Paireepinart
>> Anyone know of a way to capture special keys like "Print Screen"? >> I have a small script to grab all they keycodes, but it doesn't seem to >> catch several keys on the keyboard. I've got a utility that I'd like to >> be able to automagically get a screenshot when something goes wrong so I

Re: [Tutor] Print Screen

2006-11-02 Thread Bill Burns
Chris Hengge wrote: > I posted this in a similar thread a few days ago, and no replies so I > think it needs its own listing. > > Anyone know of a way to capture special keys like "Print Screen"? > I have a small script to grab all they keycodes, but it doesn't seem to > catch several keys on th

Re: [Tutor] Print Screen

2006-11-02 Thread Terry Carroll
On Thu, 2 Nov 2006, Luke Paireepinart wrote: > >>> import ImageGrab > >>> ImageGrab.grab().save('temp.jpg') I never knew about that. Thanks, that's pretty cool. ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Print Screen

2006-11-02 Thread Luke Paireepinart
Chris Hengge wrote: > Awesome! Thanks again Luke > > How do I capture the keycode for print screen? (now I'm just curious, > because like I said, I've got a script that grabs all but maybe half a > dozen keys) Well, how are you doing it now? That's the important part. > > On 11/2/06, *Luke Pairee

Re: [Tutor] Print Screen

2006-11-02 Thread Luke Paireepinart
Chris Hengge wrote: > Because I dont know any other way to capture the screen? (In my mind > using print screen would be universal) =P The print screen button doesn't do anything. It generates a keycode just like any other button on the keyboard. Windows captures this keypress and interprets it as

Re: [Tutor] Print Screen

2006-11-02 Thread Chris Hengge
Because I dont know any other way to capture the screen? (In my mind using print screen would be universal) =POn 11/2/06, Luke Paireepinart < [EMAIL PROTECTED]> wrote:Chris Hengge wrote:> I posted this in a similar thread a few days ago, and no replies so I > think it needs its own listing.>> Anyon

Re: [Tutor] Print Screen

2006-11-02 Thread Luke Paireepinart
Chris Hengge wrote: > I posted this in a similar thread a few days ago, and no replies so I > think it needs its own listing. > > Anyone know of a way to capture special keys like "Print Screen"? > I have a small script to grab all they keycodes, but it doesn't seem > to catch several keys on the