can anyone give me some resources about how to learn JYTHON apart from its website? as i don't know java i am having quite problem with different java module like, swing, io. btw, i found wxpython quite hard to understand.
thanks for the link. but still it did not serve my purpose. i think i was not clear enough in my first post. look at this simple example.Hello,
Would this tutorial from IBM help?
http://www.ibm.com/developerworks/java/tutorials/j-jython1/
Bertus
from javax.swing import *
from java.awt import *
#show two message by clicking two buttons
frame = JFrame("Title",size=(300,120))
button1 = JButton("Click")
frame.add(button1)
button1.setSize(10,10)
button1.setLocation(10,10)
button2 = JButton("Click2")
frame.add(button2)
button2.setSize(10,10)
button2.setLocation(20,20)
frame.visible = True
thanks a lot man. it is the best tutorial i have found so far on this topic.
by Jeff Child
by Jake Hertz
by Jeff Child
by Jake Hertz