Hi, can anybody help me?
I've already create xml file (ex : test.xml) and hal file (ex: test.hal)
and append the command to .ini file so it can be clicked..
And when i open axis it appears on the right side of the program..
But the quesiton now is when the button clicked , I want to show Tkinter Frame..
My Tkinter Frame file is like this :
class GUI:
def __init__(self, master=None):
self.master = master
self.master.title('L-System')
self.master.geometry('540x450+400+100')
self.master.resizable(0, 0)
self.objframe = Tkinter.Frame(self.master, borderwidth = 1, width = 550, height = 550)
self.objframe.pack(fill = Tkinter.BOTH)
root = Tkinter.Tk()
gui = GUI(root)
root.mainloop()
I've tested the Tkinter Frame on windows with python cmd and also in linux and it run well
But when i integrate into Axis it cannot show..
Could you please show some example?
Thx for the help..