@wegaseat
IDLE works well, DrPython is better, PyScripter has a few quirks, but is hot!
i have tried many ide for py but pyscripter I like most, and yes it is hot.
they need to fix some stuff
@wegaseat
IDLE works well, DrPython is better, PyScripter has a few quirks, but is hot!
i have tried many ide for py but pyscripter I like most, and yes it is hot.
they need to fix some stuff
I want to make find in my text editor like in mozilla firefox on the bottom of my gui
this is only for learning.
class MyClass(Frame):
def onFind(self, target=None):
if target == None:
target = tkSimpleDialog.askstring('Find!', 'Search for string!')
if target:
where = self.text.search(target, INSERT, END)
if where:
pastit = where + ('+%dc' % len(target))
self.text.tag_remove(SEL, '1.0', END)
self.text.tag_add(SEL, where, pastit)
self.text.mark_set(INSERT, pastit)
self.text.see(INSERT)
self.text.focus()
def findToolbar(self):
frm = Frame(self.master)
frm.pack(side=BOTTOM, expand=YES, fill=X)
Button(frm, text='Quit!').pack(side=LEFT)
e = Entry(frm)
e.pack(side=LEFT)
e.focus_set()
target = e.get()
b = Button(frm, text='find', command=lambda: self.onFind(target))
b.pack(side=LEFT)
How to make when I open find toolbar that i dont have possibiliti to open the toolbar again when first is opened.
It seems that I cant get text from Entry, my target is empty
I want to make undo/redo functions for my text editor and my paint editor writen in tkinter.
which will be the easiest or the better way to do that?
thanks
I think that you need to bind events that select text, like when you select text with mouse or shift+arrows. make event funct that will enable cut/copy/paste enabled and disabled when you unselect text, bind to that funct mousc click and shift+arrows.
I hope you understand what I mean, sorry for bad english
Hi I have custom dialog that needs to popup in the middle of the screen or in the middle of my gui
hi all
i cant figure out how to put popup window to show in the middle of my text editor?
It is writen with Toplevel in tkinter.
thx
HI, I have exe file writen in c++ or c and wanna decompile it to source code.
Is that possible? If it is, is there any decompilet that can do that?
thanks!
Hey thanks for post, but I tried on other forums and nobody didn't have right solution.
Can you tell me how to open them in blender.
this is my last post on this subject
Hey people, does someone know program that can open something.X files and that is big about 2GB?
thanks
appologies for post here.
thanks ~S.O.S~
is there any another tool?
What are something.X files and how to edit them?
Thanks!