Hi all,
I was thinking of porting my python application to an iPad,
I see that there is general support for python on these devices
via PyObjC.
However, no support for Tkinter, that I can see.
Anyone know of such support?
Mick
___
Tkinter-discuss ma
Hi,
On Wed, 28 Apr 2010 14:37:18 -0700
Guido Carballo-Guerrero wrote:
> Michael, Wayne;
>
> I'm sorry, I just found my problem. Was something dumb:
>
> L1.config(image = photo1)
> L1.image = image1_2
>
> This was the problem. I should had:
>
> L1.config(image = photo1)
> L1.image = photo1
>
Hi,
On Wed, 28 Apr 2010 14:21:21 -0700
Guido Carballo-Guerrero wrote:
>
> Wayne, Michael;
>
> This is a sample code that shows what I'm doing. As you can see, even
> if I don't have a while loop, the picture is not being shown. Am I
> missing something? What is wrong with my code that I can't