Some code to get you started.
Code:
gui 1: add, button, w160,Go To Gui 2
gui 1: show, y200 w180,First Gui
gui 1: color, FF80C0
return
buttonGoToGui2: ;name of button minus spaces Gui 1 can not have the number 1 before buttonGoToGui2 label
gui 1: destroy ;leave this out if you want to leave the first Gui open
gui 2: add, button, w260,Go To Gui 3
gui 2: show, y400 w280,Second Gui
gui 2: color, AEEFAD
return
2buttonGoToGui3: ;name of button minus spaces Gui 2 and higher needs the number before the button label
gui 2: destroy
gui 3: add, button, w360,Quit Application
gui 3: show, y600 w380,Third Gui
gui 3: color, 0000FF
return
3buttonQuitApplication:
gui 3: destroy
MsgBox Hope this helps!
ExitApp
GuiEscape:
GuiClose:
2GuiEscape:
2GuiClose:
3GuiEscape:
3GuiClose:
MsgBox Each label falls thru to the last label when the escape key is pressed or the X button is chosen to close the Gui.
ExitApp
DataLife