I've traditionally used the default AutoIT progress functions as part of my installer scripts and am considering using the new GUI functionality. I used AutoBuilder 0.4 to construct the shell code at the bottom. What I need is the additional code to populate the position in the progress bar and the text in the updown list with the following stages: 0% - Installer Started 25% - Extracted Files 50% - Installation Completed 75% - Configuration Completed 100% - Installer Completed Can someone help me fill in the blanks please? Shell Code below->>>>>>>> ;Script generated by AutoBuilder 0.4 Opt("GUICoordMode", 1) Opt("GUINotifyMode", 1) GuiCreate("MyGUI", 331,144,(@DesktopHeight-331)/2, (@DesktopHeight-144)/2 , 0x04CF0000) $progress_1 = GUISetControl("progress", "Progress 1", 20, 30, 290, 30) $updown_1 = GUISetControl("updown", "Updown 1", 20, 80, 290, 60) GuiShow() While 1 sleep(100) $msg = GuiMsg(0) Select Case $msg = -3 Exit Case $msg = 0 ;;; Case $msg = $progress_1 ;;; Case $msg = $updown_1 ;;; EndSelect WEnd Exit