Quick Notes on appJar (Button, Subwindow, TextEntry, Table, InfoBox)
Notes On appJar appJar Create A Basic Window from appJar import gui app = gui ( ) app . setSize ( 400 , 400 ) app . setFont ( 16 ) app . addLabel ( "Example" ) app . go ( ) Button from appJar import gui app = gui ( ) app . setSize ( 400 , 400 ) app . setFont ( 16 ) def pressA ( ) : app . addLabel ( "Pressed A" ) app . addButton ( "A" , pressA ) app . go ( ) app.addButton([title], [action when button is pressed]) before after Subwindows from appJar import gui app = gui ( ) app . setSize ( 400 , 400 ) app . setFont ( 16 ) def pressA ( ) : app . startSubWindow ( "newWindow" , title = "This is a new winodw" ) app . go ( startWindow = "newWindow" ) app . addButton ( "A" , pressA ) app . go ( ) after pressing the button A Table & Pop out info box from appJar import gui app = gui ( ) app . setSize ( 400 , 400 ) app . setFont ...