{"words":[["0",""],["270","SPEAKER 1: Let's"],["480","write"],["640","a"],["700","program"],["1170","with"],["1280","a"],["1330","graphical"],["1830","user"],["2150","interface"],["2465",""],["2780","as"],["2920","well"],["3090","as"],["3170","a"],["3270","text"],["3670","field"],["3970","that"],["4070","allows"],["4420","the"],["4510","user"],["4830","to"],["4920","type"],["5230","in"],["5360","some"],["5550","string"],["5815",""],["6080","and"],["6220","hit"],["6400","Enter,"],["6730",""],["7060","at"],["7240","which"],["7430","point"],["7630","that"],["7820","string"],["8189","is"],["8300","provided"],["8575",""],["8850","to"],["8960","my"],["9090","program."],["9380",""],["9670",""],["9920","Much"],["10260","like"],["10500","GetString"],["10700",""],["10990","in"],["11060","the"],["11370","CS50"],["11640","Library"],["11990","works,"],["12460","but"],["12660","this"],["12850","time"],["13180","with"],["13290","a"],["13360","graphical"],["13820","user"],["14120","interface."],["14500",""],["14880","Let's"],["15090","get"],["15240","started."],["15690",""],["16180","I've"],["16219","already"],["16430","written"],["16660","some"],["16800","skeletal"],["17230","code,"],["17515",""],["17800","so"],["17990","let's"],["18190","now"],["18400","fill"],["18640","in"],["18720","a"],["18790","blank."],["19250",""],["19530",""],["19810","GTextField,"],["20130",""],["20450",""],["20790",""],["21290",""],["21600","calling"],["21950","it"],["22050","field."],["22410",""],["22770","Assigning"],["23100","it"],["23170","the"],["23250","return"],["23620","value"],["23910","of"],["24000","newGTextField."],["24470",""],["24820",""],["25170",""],["25480",""],["25790","And"],["25980","specifying"],["26290",""],["26600","that"],["26740","I'd"],["26840","like"],["27010","to"],["27110","see"],["27420","10"],["27750","characters"],["28190","from"],["28320","the"],["28410","user"],["28720","on"],["28790","the"],["28850","screen"],["29260","at"],["29360","a"],["29410","time."],["29690",""],["29970",""],["30440","Let's"],["30570","next"],["30830","call"],["31150","setActionCommand,"],["31580",""],["31955",""],["32330",""],["32615",""],["32900",""],["33350","passing in"],["33760","field,"],["34115",""],["34470",""],["34710","passing"],["35140","in"],["35320","say,"],["35720","quote"],["35920","unquote"],["36290","\"input.\""],["36690",""],["37090","In"],["37230","other"],["37380","words,"],["37780","let's"],["37850","associate"],["38330","with"],["38480","this"],["38680","text"],["38960","field"],["39330","unique"],["39700","string"],["39955",""],["40210","\"input.\""],["40565",""],["40920","just"],["41220","in"],["41300","case"],["41570","my"],["41690","user"],["42170","interface"],["42440",""],["42710","has"],["42870","multiple"],["43310","text"],["43620","fields,"],["43890",""],["44160","this"],["44360","string"],["44620","will"],["44750","uniquely"],["45180","identify"],["45505",""],["45830","this"],["46060","one."],["46375",""],["46690",""],["46975",""],["47260","Let's"],["47590","next"],["47850","call"],["48220",""],["48490","addToRegion,"],["48980",""],["49400",""],["49685",""],["49970",""],["50290","passing"],["50690","in"],["50810","window,"],["51150",""],["51490","passing in"],["51930","field,"],["52270",""],["52610","passing"],["53000","in"],["53110","quote"],["53340","unquote"],["53710","\"SOUTH,\""],["54055",""],["54400",""],["54700","a"],["54810","unique"],["55210","identifier"],["55530",""],["55850","defined"],["56260","in"],["56330","the"],["56410","Stanford"],["56670",""],["56780","Portable"],["57250","Library"],["57545",""],["57840","that"],["58000","specifies"],["58315",""],["58630","the"],["58700","southern"],["59190","or"],["59320","bottom"],["59680","region"],["59990","of"],["60070","my"],["60210","user"],["60550","interface."],["60875",""],["61200",""],["61560","Let's"],["61890","next"],["62180","induce"],["62550","an"],["62690","infinite"],["63100","loop."],["63530",""],["63955",""],["64380",""],["64805",""],["65230","And"],["65420","inside"],["65830","of"],["65940","this"],["66130","loop,"],["66370","let's"],["66560","listen"],["66800","for"],["66960","two"],["67220","events."],["67545",""],["67870","One,"],["68320","the"],["68440","user"],["68840","closing"],["69250","the"],["69330","window."],["69620",""],["69910","Or"],["70250","two,"],["70640","the"],["70730","user"],["70990","typing"],["71330","something"],["71670","into"],["71870","that"],["72060","text"],["72340","field."],["72750",""],["73060","Let's"],["73280","declare"],["73730","a"],["73810","gActionEvent."],["74100",""],["74390",""],["74780",""],["75130",""],["75600","Calling"],["75950","it"],["76020","event."],["76395",""],["76770","Assigning"],["77170","it"],["77230","the"],["77320","return"],["77690","value"],["78060","of"],["78190","waitForEvent."],["78445",""],["78700",""],["79050",""],["79490",""],["79700","Specifying"],["80015",""],["80330","that"],["80440","the"],["80540","type"],["80830","of"],["80970","event"],["81250","we'd"],["81400","like"],["81570","to"],["81670","listen"],["82030","for"],["82460","is"],["82630","an"],["82880","ACTION_EVENT,"],["83150",""],["83420",""],["83745",""],["84070",""],["84395",""],["84720","where"],["84950","ACTION_EVENT"],["85350",""],["85630",""],["85910",""],["86290","is"],["86420","a"],["86480","constant"],["86980","declared"],["87450","in"],["87520","the"],["87600","Stanford"],["88020","Portable"],["88470","Library"],["88775",""],["89080","that"],["89250","specifies"],["89560",""],["89870","that"],["90100","type"],["90340","of"],["90480","event."],["90830",""],["91180","Let's"],["91450","next"],["91730","check"],["92050","if,"],["92500",""],["92740","getEventType,"],["93160",""],["93390",""],["93745",""],["94100",""],["94405",""],["94710",""],["95050","passing"],["95410","in"],["95490","event,"],["95913",""],["96336","equals"],["96760","equals"],["97055",""],["97350",""],["97600","WINDOW_CLOSED,"],["97875",""],["98150",""],["98495",""],["98840",""],["99185",""],["99530",""],["99880","another"],["100250","constant"],["100505",""],["100760","declared"],["101160","in"],["101220","the"],["101300","Stanford"],["101720","Portable"],["102110","Library"],["102490","that"],["102650","indicates"],["103150","that"],["103270","the"],["103350","window"],["103650","has"],["103800","closed."],["104140",""],["104480",""],["104785",""],["105090","Then"],["105455",""],["105820","let's"],["106080","simply"],["106370","break"],["106680","out"],["106980","of"],["107110","this"],["107290","infinite"],["107770","loop."],["108110",""],["108450","Otherwise,"],["108830","let's"],["109060","now"],["109330","check"],["109690","whether"],["109940","the"],["110030","user"],["110450","has"],["110630","typed"],["110870","something"],["111220","into"],["111420","that"],["111600","text"],["111870","field."],["112160",""],["112450",""],["112910","If,"],["113200",""],["113550",""],["113900","string"],["114260",""],["114620","compare,"],["114970",""],["115320",""],["115686",""],["116052",""],["116420","getActionCommand,"],["116680",""],["116920",""],["117220",""],["117520",""],["117830",""],["118140",""],["118400","passing"],["118770","in"],["118860","event,"],["119165",""],["119470",""],["119850","comma"],["120200","quote"],["120470","unquote"],["120950","\"input\""],["121235",""],["121520",""],["121775",""],["122030","equals"],["122400","equals"],["122780","0."],["123200",""],["123510","In"],["123810","other"],["123970","words,"],["124370","if"],["124410","the"],["124480","unique"],["124880","identifier"],["125325",""],["125770","the"],["126130","text"],["126520","field"],["126870","into"],["127080","which"],["127340","the"],["127630","user"],["127720","has"],["127880","typed"],["128139","something"],["128439",""],["128740","is"],["128979","equal"],["129300","to"],["129410","that"],["129509","unique"],["129930","identifier"],["130204",""],["130479","that"],["130639","I"],["130680","specified"],["130975",""],["131270","earlier,"],["131635",""],["132000","let's"],["132120","do"],["132230","the"],["132380","following."],["132690",""],["133000","Printf"],["133430",""],["133795",""],["134160","quote"],["134390","unquote"],["134690",""],["134990","\"%s"],["135200",""],["135575",""],["135950","was"],["136340",""],["136730","inputted.\""],["137140",""],["137550",""],["137760","And"],["138000","let's"],["138260","plug-in"],["138540","for"],["138820","that"],["138970","%s"],["139310",""],["139575",""],["139840","the"],["139960","return"],["140340","value"],["140770","of"],["141020","getText"],["141295",""],["141570",""],["141835",""],["142100",""],["142400","passing"],["142840","in"],["142940","the"],["143060","field,"],["143510",""],["143780","where"],["143980","getText"],["144200",""],["144550","is"],["144650","another"],["144950","function,"],["145370","defined"],["145790","in"],["145860","the"],["145940","Stanford"],["146310","Portable"],["146720","Library,"],["146995",""],["147270","that"],["147470","gets"],["147730","the"],["147840","text"],["148095",""],["148350","from"],["148520","a"],["148600","field."],["149070",""],["149430","Let's"],["149650","now"],["149780","save,"],["150270","compile,"],["150575",""],["150880","and"],["151010","run"],["151190","this"],["151350","program."],["151800",""],["152210","Make"],["152560","text."],["152870",""],["153180",""],["153455",""],["153730","./text."],["154100",""],["154470",""],["154795",""],["155120",""],["155375",""],["155630","There's"],["155920","my"],["156050","user"],["156370","interface,"],["156675",""],["156980","and"],["157110","there's"],["157360","that"],["157510","text"],["157780","field"],["157980","at"],["158060","the"],["158130","bottom."],["158455",""],["158780","Let's"],["159010","type"],["159230","something"],["159560","like"],["160020","h-e-l-l-o,"],["160350",""],["160680",""],["161145",""],["161610","Enter."],["161960",""],["162310","And"],["162510","there,"],["162730","at"],["162810","the"],["162890","bottom"],["163180","of"],["163270","my"],["163370","console"],["163790","window,"],["164055",""],["164320","indeed"],["164710","we"],["164820","see"],["165280","that"],["165530","\"hello\""],["165870","was"],["166170","inputted."],["166470",""],["166770",""],["167070",""],["167370",""],["167670",""],["167970",""],["168270",""],["168570",""]],"paragraphs":[0,270,16180,30440,47260,61560,91180,108450,133000,149430],"speakers":{"270":"SPEAKER 1"}}