Re: [PythonCE] how to take screenshot from pocketPC screen

2006-09-25 Thread Bandung

There is also this free utility.  I haven't used it in years.  
http://www.freewareppc.com/graphics/cecapture.shtml CeCapture   will produce
screen captures from your pda and save them in your documents folder.  I'm
not a big fan of bmp images.  That's why I use the remote display utility
nowadays.



Bandung wrote:
> 
> You could try Remote Display from Microsoft.  
> http://www.microsoft.com/technet/prodtechnol/wce/downloads/ppctoys.mspx
> remotedsp   you will see the contents of your pda on a similar sized
> screen on your desktop.  Then use your favourite desktop capture utilitiy.
> 
> 
> 
> 
> jeffbarish wrote:
>> 
>> Petri Wunsch wrote:
>> 
>>> Has anyone been able to do a script which takes a sceenshot from the
>>> active window on PocketPC  and saves it to specified file?
>> 
>> I use Pocket Controller which has that capability built in.  It can also
>> capture a movie.  It's not free, but it has so many useful capabilities
>> that I can't imagine operating without it.
>> -- 
>> Jeffrey Barish
>> 
>> ___
>> PythonCE mailing list
>> PythonCE@python.org
>> http://mail.python.org/mailman/listinfo/pythonce
>> 
>> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/how-to-take-screenshot-from-pocketPC-screen-tf2331190.html#a6499807
Sent from the Python - pythonce mailing list archive at Nabble.com.

___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce


Re: [PythonCE] how to take screenshot from pocketPC screen

2006-09-25 Thread Bandung

You could try Remote Display from Microsoft.  
http://www.microsoft.com/technet/prodtechnol/wce/downloads/ppctoys.mspx
remotedsp   you will see the contents of your pda on a similar sized screen
on your desktop.  Then use your favourite desktop capture utilitiy.




jeffbarish wrote:
> 
> Petri Wunsch wrote:
> 
>> Has anyone been able to do a script which takes a sceenshot from the
>> active window on PocketPC  and saves it to specified file?
> 
> I use Pocket Controller which has that capability built in.  It can also
> capture a movie.  It's not free, but it has so many useful capabilities
> that I can't imagine operating without it.
> -- 
> Jeffrey Barish
> 
> ___
> PythonCE mailing list
> PythonCE@python.org
> http://mail.python.org/mailman/listinfo/pythonce
> 
> 

-- 
View this message in context: 
http://www.nabble.com/how-to-take-screenshot-from-pocketPC-screen-tf2331190.html#a6499782
Sent from the Python - pythonce mailing list archive at Nabble.com.

___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce


Re: [PythonCE] Starting Python in specified directory

2006-09-25 Thread Jeffrey Barish
Luke Dunstan wrote:

> Yes, "pythonrc.py". It is only run for interactive sessions, not when you
> double-click on a .py file, but that sounds like what you want.

Yes, that is what I want.  Where do I put pythonrc.py?  I tried putting it
in \Program Files\Python24 and its Lib and DLLs subfolders, but it isn't
read automatically in any of those cases.
-- 
Jeffrey Barish

___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce


Re: [PythonCE] Starting Python in specified directory

2006-09-25 Thread Luke Dunstan

- Original Message - 
From: "Jeffrey Barish" <[EMAIL PROTECTED]>
To: 
Sent: Monday, September 25, 2006 10:43 PM
Subject: Re: [PythonCE] Starting Python in specified directory


> Ingmar Steen wrote:
>
>> You could create a small dummy script in that path that
>> just contains 'pass' and starting that using the python interpreter with
>> the -i option (make a shortcut 'python -i "\My
>> Documents\myprog\dummy.py"').
>
> How do I create the shortcut in WM?
>
> Is there something like .pythonrc in WM that gets read everytime python
> starts?
> -- 
> Jeffrey Barish

Yes, "pythonrc.py". It is only run for interactive sessions, not when you 
double-click on a .py file, but that sounds like what you want.

Luke

___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce


Re: [PythonCE] Starting Python in specified directory

2006-09-25 Thread Jeffrey Barish
Ingmar Steen wrote:

> You could create a small dummy script in that path that
> just contains 'pass' and starting that using the python interpreter with
> the -i option (make a shortcut 'python -i "\My
> Documents\myprog\dummy.py"').

How do I create the shortcut in WM?

Is there something like .pythonrc in WM that gets read everytime python
starts?
-- 
Jeffrey Barish

___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce



Re: [PythonCE] how to take screenshot from pocketPC screen

2006-09-25 Thread Jeffrey Barish
Petri Wunsch wrote:

> Has anyone been able to do a script which takes a sceenshot from the
> active window on PocketPC  and saves it to specified file?

I use Pocket Controller which has that capability built in.  It can also
capture a movie.  It's not free, but it has so many useful capabilities
that I can't imagine operating without it.
-- 
Jeffrey Barish

___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce


[PythonCE] how to take screenshot from pocketPC screen

2006-09-25 Thread Petri Wunsch
Hi,

Has anyone been able to do a script which takes a sceenshot from the
active window on PocketPC  and saves it to specified file?



cheers

Petri
-- 
  I love deadlines. I love the whooshing sound they make as they go by.
- Douglas Adams
___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce


Re: [PythonCE] Starting Python in specified directory

2006-09-25 Thread Ingmar Steen
Hi Jeffrey
 
Windows CE doesn't have the concept of a 'current directory' (so a starting directory makes no sense either) but python for windows ce emulates it internally, so there's no direct way of doing this. iirc, python defaults to a) the directory where the script you start resides (if you start \my documents\myprog\myprog.py, it'll start in \my documents\myprog) or b) the default path of the interpreter when started without any options in \tmp (or something similar). You could create a small dummy script in that path that just contains 'pass' and starting that using the python interpreter with the -i option (make a shortcut 'python -i "\My Documents\myprog\dummy.py"').

 
Hope this helps (and works! haven't actually tried it myself).
 
Ingmar 
On 9/24/06, Jeffrey Barish <[EMAIL PROTECTED]
> wrote: 
I start Python from the Start Menu.  Is there a way to get it to start in aspecified directory (e.g., '\My Documents\myprog') everytime it starts? 
--Jeffrey Barish___PythonCE mailing listPythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce
___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce