-
Notifications
You must be signed in to change notification settings - Fork 592
/
Copy pathmain.py
50 lines (38 loc) · 1.13 KB
/
main.py
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import tkinter
import subprocess
def makenew():
maker(numofwindows)
def maker(wins):
global numofwindows
subprocess.Popen(["python.exe", "note.py", str(numofwindows)], shell=True)
numofwindows = 1 + wins
maintain()
def maintain():
global numofwindows
storage = open("assets\\storage", "w")
storage.write(str(numofwindows))
storage.close()
def reset():
storage = open("assets\\storage", "w")
storage.write(str(0))
storage.close()
try:
getwin = open("assets\\storage", "r")
win = getwin.readline()
numofwindows = int(win)
getwin.close()
for i in range(0, numofwindows):
subprocess.Popen(["python.exe", "note.py", str(i)], shell=True)
except FileNotFoundError:
numofwindows = 0
manager = tkinter.Tk()
manager.title("Audio Notes - Master")
while True:
try:
makeNewBtn = tkinter.Button(manager, text='New+', command=makenew)
makeNewBtn.pack()
reset = tkinter.Button(manager, text='Reset-', command=reset)
reset.pack()
tkinter.mainloop()
except tkinter.TclError:
break