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" and I've even seen "from Tkinter"...nothing else?
Although this isn't the main reason I'm posting which is the following: How does one code a vertical scrolling Text Widget using the "place" positioning in the example below...
# The following code is not a game, it is configured just to test a GUI concept.
num=10
running = True
run=""
while running:
guess=int(raw_input('Enter a number between one and ten : '))
if guess!=num:
print " Number 1"
print
print " Number 2"
print
print " Number 3"
print
print " Number 4"
print
print " Number 5"
print
print " Clue No.1"
print
print " Clue No.2"
print
print " Clue No.3"
print
print " Clue No.4"
print
print " Clue No.5"
print "---------------------------------------------------------------------------"
if guess==num:
print " EXCELLENT!!!!!"
break
When asked to enter a number DO NOT put the number ten in the entry zone until you're ready to exit. The reason for this is to give you an idea of how the game I'm working on looks and how each "frame" is seperated. Which reminds me how do you get the same results as print "--------------" in a verical scrolling Text Widget using place???
I wouldn't post if I could find anything even close to what I need, but again:icon_cry: there is zero on the web about this.
Looking forward to your replies with the keenest eyes imaginable:):) :).
fredzik.