下記のようなClassのグループ化が行われており、各Classでエラーが発生しています。
FirstFrame: Input Settings
SecondFrame: Output Setthings
FirstFrame
1class FirstFrame: 2 def __init__(self,master): 3 FrameOne = tk.LabelFrame(master, text="Input Settings", fg="white", bg="#52514F", padx="5", pady="5") 4 FrameOne.grid(column=2, row=2, padx='20', pady='10', sticky='nsew') 5 6 self.Text_Input_Path = tk.Label(FrameOne, text="Input Path ", fg="white", bg="#52514F", font=('Helvetica', 10)) 7 self.Text_Input_Path.grid(column=0, row=0, sticky='w') 8 self.Field_Input_Path = tk.Entry(FrameOne, fg="black", highlightbackground="#52514F") 9 self.Field_Input_Path.grid(column=1, row=0, sticky='nsew') 10 self.Button_Input_Path = tk.Button(FrameOne, text="Open File", command=self.file_dialog_input_path, highlightbackground="#52514F", font=('Helvetica', 10)) 11 self.Button_Input_Path.grid(column=2, row=0, sticky='e') 12 13 def file_dialog_input_path(self): 14 self.file_dialog_input = tk.filedialog.askopenfilename(initialdir = "/",title = "Select file",filetypes=[('MOV file (*.mov)', '*mov'), ('AVI file (*.avi)', '*.avi'),('MP4 file (*.mp4)', '*.mp4')]) 15 self.Field_Input_Path.insert(tk.END, self.file_dialog_input) 16 print (self.file_dialog_input) 17 TextOutputText = tk.Text(FifthFrame, height=8, width=45, bg="grey", highlightbackground='grey') 18 TextOutputText.delete('1.0', tk.END) 19 TextOutputText.insert(tk.END, self.file_dialog_input + "\n") 20 os.system("" + ffprobe_path.name + " file:" + self.Field_Input_Path.get()) 21 TextOutputText.insert(tk.END, str(os.system("" + ffprobe_path.name + " file:" + self.Field_Input_Path.get())))
エラー:Attribute 'file_dialog_input' defined outside init
SecondFrame
1class SecondFrame: 2 def __init__(self,master): 3 FrameTwo = tk.LabelFrame(master, text="Output Settings", fg="white", bg="#52514F", padx="5", pady="5") 4 FrameTwo.grid(column=2, row=3, padx='20', pady='10', sticky='nsew') 5 6 Text_Output_Path = tk.Label(FrameTwo, text="Output Path", fg="white", bg="#52514F", font=('Helvetica', 10)) 7 Text_Output_Path.grid(column=0, row=0, sticky='w') 8 Text_Output_Name = tk.Label(FrameTwo, text="Output Filename", fg="white", bg="#52514F", font=('Helvetica', 10)) 9 Text_Output_Name.grid(column=0, row=1, sticky='w') 10 Field_Output_Path = tk.Entry(FrameTwo, fg="black", highlightbackground="#52514F") 11 Field_Output_Path.grid(column=1, row=0, sticky='nsew') 12 Field_Output_Name = tk.Entry(FrameTwo, fg="black", highlightbackground="#52514F") 13 Field_Output_Name.grid(column=1, row=1, sticky='nsew') 14 Button_Output_Path = tk.Button(FrameTwo, text="Select Path", command=self.file_dialog_output_path, highlightbackground="#52514F", pady='2', font=('Helvetica', 10)) 15 Button_Output_Path.grid(column=2, row=0, sticky='nsew') 16 Extension_Value = tk.StringVar() 17 Extension_Value.set(".MOV") # default value as MOV | デフォルトMOV 18 #self.Extension_Option = tk.OptionMenu(FrameTwo, Extension_Value) 19 #self.Extension_Option.grid(column=2, row=1, sticky='nsew') 20 #self.Extension_Option.config(bg='#52514F', font=('Helvetica', 10), pady='2') 21 22 def file_dialog_output_path(self): 23 self.file_dialog_output = tk.filedialog.askdirectory(initialdir = "/",title = "Select path") 24 self.Field_Output_Path.insert(tk.END, self.file_dialog_output) 25 print (self.file_dialog_output) 26 #TextOutputText = tk.Text(FifthFrame, height=8, width=45, bg="grey", highlightbackground='grey') 27 #TextOutputText.delete('1.0', tk.END) 28 #TextOutputText.insert(tk.END, self.file_dialog_output)
エラー:Instance of 'SecondFrame' has no 'Field_Output_Path' member
Attribute 'file_dialog_output' defined outside init
こちらのエラーが解消できません。
そして、Output pathのPrintが機能しておらず、ファイルパスが表示されません。
お力をいただけると幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/09/15 08:47