前提・実現したいこと
pythonで翻訳された単語がウィンドウに出てくるプログラムを作っています。
単語をコピーすると翻訳された単語が映し出されたウィンドウが表示され、マウスのボタンをクリックするとそのウィンドウが消え
再度、単語をコピーをしたとき新しいウィンドウに翻訳された単語が表示される・・(以下繰り返し)
ということがしたいのです
発生している問題・エラーメッセージ
def endup()の地点の frame.destroy()でプログラムがエラーをはいて処理が止まってしまう。 destroyを実行した後、単語をコピーしてまた翻訳された単語が表示されたウィンドウされるようにしたい。 Traceback (most recent call last): File "C:\Users\kobay\python\test.py", line 53, in <module> window() File "C:\Users\kobay\python\test.py", line 43, in window frame.bind_all("<Button>",endup()) File "C:\Users\kobay\AppData\Local\Programs\Python\Python38-32\lib\tkinter\__init__.py", line 1397, in bind_all return self._bind(('bind', 'all'), sequence, func, add, 0) File "C:\Users\kobay\AppData\Local\Programs\Python\Python38-32\lib\tkinter\__init__.py", line 1340, in _bind return self.tk.call(what + (sequence,)) _tkinter.TclError: can't invoke "bind" command: application has been destroyed
該当のソースコード
python
1import tkinter 2import pyperclip 3from googletrans import Translator 4from tkinter import font 5import time 6 7 8 9def window(): 10 def endup(): 11 frame.destroy() 12 13 #原文と翻訳を取得 14 clip = pyperclip.paste() 15 translator = Translator() 16 result = translator.translate(clip, dest="ja") 17 18 19 #window生成 20 frame = tkinter.Tk() 21 frame.title("test") 22 frame.geometry("300x200") 23 24 #font 25 f1=font.Font(family='Helvetica', size=10, weight='bold') 26 f2=font.Font(family='メイリオ', size=10, weight='bold') 27 28 #表示 29 original = tkinter.Label(frame, text=clip,font=f1) 30 original.place(x=70,y=40) 31 32 processed = tkinter.Label(frame, text=result.text,font=f2) 33 processed.place(x=70,y=125) 34 35 part1=tkinter.Label(frame,text="原文",font=f2) 36 part1.place(x=20,y=0) 37 38 part2=tkinter.Label(frame,text="翻訳",font=f2) 39 part2.place(x=20,y=85) 40 41 42 frame.bind_all("<Button>",endup()) 43 44 frame.mainloop() 45 46copy1 = pyperclip.paste() 47copy2 = pyperclip.paste() 48while True: 49 copy1 = pyperclip.paste() 50 if copy1 != copy2: 51 time.sleep(0.1) 52 window() 53 copy2 = pyperclip.paste() 54 if copy1 != copy2: 55 time.sleep(0.1) 56 window()
試したこと
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。