No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
hi, i have been trying to get Tkinter to play a sound, however, tkSnack has brought me to this random error which i can't emplane, but i think its something to do with my operating system, ubuntu. [code]Exception in thread Thread-1: Traceback (most recent call last): File "/usr/lib/python2.5/threading.py", line 486, … | |
Hello, I decided I want to make a game where you have to move a ball through a maze and make it to the end without hitting any walls, some of which are invisible!! The game is extremely far from completion, and will be until I learn how to overcome … | |
Hello, I started learning C yesterday, I came here with lots of experience in python scripting. I created a script that uses a variable in a for-loop, that was defined before the loop its self. I get this error: [code]skilz.c: In function ‘main’: skilz.c:16: error: ‘prog’ undeclared (first use in … | |
Hello all, I have been doing some work on my HTML editor lately, and I have come to a (what seams like a) dead end. The file its self is about 3.7kb smaller than my text editor, ProssesIT, and yet it fails to run any where near as smoothly. When … | |
Re: this is probably a reallllyyyy old post but, im having trouble with changeing the icon. [code]from Tkinter import * root = Tk() root.wm_iconbitmap('icon.ico') root.mainloop()[/code] and i get this error: [code]Traceback (most recent call last): File "file", line 3, in <module> root.wm_iconbitmap('icon.ico') File "/usr/lib/python2.5/lib-tk/Tkinter.py", line 1529, in wm_iconbitmap return self.tk.call('wm', 'iconbitmap', … | |
Re: just bu looking at your post, i could not tell what you actualy wanted, however, here is code that will open a file and put its contents into a variable named data: [code]fileName = raw_input('What is the file name? ') file = open(fileName, 'w') #'w', means if the file does … | |
hi, I just created this awesome python application and i want to spread it around, but every one has python. I was just wondering if I could compile python source into a linux executable like py2exe, and then compile the executable into a .deb installer file. any help would be … | |
hello I have been doing a lot of Tkinter lately and I was wondering of there is a way i fit a scroll bar into a text wdiget using the .grid() method. right now the code i have writen is: [code]from Tkinter import * root = Tk() text = Text(root) … |
The End.