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 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
Can this "program" be put into a vertical scrolling Text Widget using place?
I have no idea how to code the above "program" as there are zero examples to work with. I don't even know if "place" functions inside a "vertical scrolling Text Widget" as there is no documentation to say that it can. It has instead "tag", "mark" and others.
I assume from what little I know about Tkinter that the "vertical scrolling" function is merely a sheath over the parent Text Widget and works in a similar way as a List box vertical scrolling function would...but the question is, does the "tag" or "mark" etc take over where "place" would normaly do the job and how does one code the above according to these rules?
Thanks in advance.
fredzik.