Body Mass Index Implementation First Screen Result Screen [ setup . main . Window ] '-----Begin code for #main WindowWidth = 365 WindowHeight = 220 UpperLeftX = int ( ( DisplayWidth - WindowWidth ) / 2 ) UpperLeftY = int ( ( DisplayHeight - WindowHeight ) / 2 ) '-----Begin GUI objects code statictext # main . statictext1 , "Enter Your Name" , 15 , 52 , 102 , 20 TextboxColor$ = "white" textbox # main . name , 135 , 47 , 100 , 25 button # main . button3 , "Proceed Now!" , [ BMI ] , UL , 15 , 92 , 95 , 25 '-----End GUI objects code open "untitled" for window as # main print # main , "font ms_sans_serif 10" wait [ BMI ] print # main . name , "!contents? name$" m1$ = "Welcome " + name $ + " to BMI Calculator" notice m1$ close # main '-----Begin code for #1 WindowWidth = 550 WindowHei...