summaryrefslogtreecommitdiff
path: root/pypers/bolzano/player/animated_text1.py
blob: cfc8b1e67a65845810aac6736a876e7dfc481607 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from Tkinter import *
word = "Anime"
DELTA_T = 100

class Spacer(object):
    nspaces = 0
    action = "increment"
    MAXSPACES = 10
    def manage_spaces(self):
        if self.action == "increment":
            self.nspaces += 1
        elif self.action == "decrement":
            self.nspaces -= 1
        if self.nspaces > self.MAXSPACES:
            self.action = "decrement"
        if self.nspaces < 0:
            self.action = "increment"
        return " " * self.nspaces

spacer = Spacer()

def make_animation(label):
    spaces = spacer.manage_spaces()
    centered_word = spaces.join(word).center(50)
    label.config(text=centered_word)
    root.after(DELTA_T, make_animation, label)

if __name__ == "__main__":
    root = Tk()
    lab = Label(root)
    lab.pack()
    root.after(DELTA_T, make_animation, lab)
    root.mainloop()