- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
19 Posted Topics
Re: Hi, The problem seems to be the following... "room_image.jpg"...from what I know about Tkinter it only accepts the .gif type of images. There are one or two free image converters on the internet that convert a whole plethora of images such as .jpg etc to the .gif type of image … | |
Re: Hi, I also wanted to use other languages for a game etc that I wanted to do, so before I took on any language for what was needed I looked at how easy it would be for me to code my game in...C, C++, C#, Ruby, Perl, Java and while … | |
Re: G'day, My understanding of threads in Python is that only one thread at one time can perfom a particular job. Python does not support multiple threads, unlike Java etc. If you were to do one thread at a time you would need to put a Global Lock on each performing … | |
Re: Hi, I suggest that if you don't have any luck here, try the following addresses as some specialize in certain areas that may not be covered here. The first address is the general discussion list for the Python programming language. The second address is for all the addresses that mail.Python.org … | |
Hi, I need to put a time limit on a game, I think it's something like time.sleep() but have forgotten how it works. The game needs two minutes to be able to finish the game, but I have forgotten the formula. Can anybody enlighten me? Thanks for any help.:) fredzik. | |
G'day, Thanks Mr. Vegaseat, Jeff, Ene, Mawe for all of your great help so far...I'm slowly (very slowly!) getting used to Tkinter. But I'm again puzzled by how Tkinter does things. Some examples of code at the beginning say "from Tkinter import *" and some say "import Tkinter as tk" … | |
G'day, I've been puzzled for some time about how they code in the help section of GUIs those funny looking purple bookie thingies that when you click on them they open up and there are sub-sections with questions marks on pages that open and advice is given about how to … | |
Re: Hi, Yes mawe you're right, I've tried it as well and it seems to be performing. [code=Python] [list=1]<LI class=li1>>>> import sys [*]>>> [/list][/code] "Sys.py" is definitely there without a doubt! What the mystery is, is why would someone want to import it? I too found this same thing happening to … | |
Re: Hi, There may be some help for you at the following addresses: 1. [URL]http://www.thescripts.com/forum/thread612397.html[/URL] (thescripts developer network) 2. [URL]http://www.thescripts.com/forum/thread168034.html[/URL] (thescripts developer network) 3. [URL]http://mail.python.org/pipermail/python-list/2005-October/346460.html[/URL] (Python-list mailing list) 4. [URL]http://mail.python.org/pipermail/python-list/2005-October/346480.html[/URL] (Python-list mailing list) Just join their mailing lists and post your questions there. I'm sure they'll help you in some way. … | |
Re: G'day, I've found two addresses that might help. Both are mailing lists that specialize in the two areas (GTK and Glade ) that you're asking about: [URL]http://www.gtk.org/mailinglists.html[/URL] (GTK Mailing Lists) [URL]http://glade.gnome.org/lists.html[/URL] (Glade Mailing Lists) If you join their mailing lists they should be able to answer your questions promptly. Or … | |
Hello wall, Is there any way to be rid of the red Tk in the upper left hand corner? I remember reading somewhere that you can replace it with another icon, but can you completely remove it, leaving nothing but a blank space? Or can one replace it with: [code=Python]root.title("Any … | |
Hi, The last time I posted I think I asked too many questions and the main reason that I posted got lost somewhere amongst other side issues. The main reason I posted last time is the following: # The following code is not a game, it is configured just to … | |
G'day, Back again, this time with three problems. The code below contains a white entry box that I'm trying to get rid of. The main reason I'm trying to get rid of it is that the game I'm working on has a scrollable GUI, and with 50 or so frames … | |
Hi, I'm puzzled by how one positions in Tkinter. Take a look at the following code: [code=Python]print "...................................Hello, world!"[/code] This works fine in the Main Idle but when it comes to Tkinter I'm confused:confused: . The game I'm working on has about 30 "clues" dotted all about the screen. About … | |
G'day, I've worked on your code Vegaseat and have come up with the following rough sketch of how my game will look in the end: [code=Python]# using geometry manager Tkinter.Place for layouts # tested with Python24 vegaseat 28apr2007 import Tkinter as tk import random as rn #help('Tkinter.Place') root = tk.Tk() … | |
Hello every1, I've been googling about but can't seem to find a solution to the following problem: [code=Python] print "Hello world"[/code] How does one colourize the "Hello world" in the results. It can be any colour as long as it's not the standard blue. Also I need to know what … | |
G'day, First of all a very big thank you to both Jeff and Vegaseat for their great help...but sadly :icon_sad: it's not what I needed. Being a novice at Tkinter I did not realize what Tkinter was and was not capable of and I therefore blame myself :icon_redface: for any … | |
G'day, I've been googling for the last three weeks :eek: trying to get an example of a program larger than a simple "Hello World" that works inside it's own GUI. I've been working on the "GUI with calculator" in this same section of Daniweb, but as soon as I put … | |
G'day, I've been working with Pyhton for about six months and have been wanting to put a program into a seperate Tkinter GUI but have had no luck. I need to have a Tk GUI that has vertical scrolling exactly like the normal IDE except that positioned in the upper … |
The End.