Changing the Caption in the Title Bar ------------------------------------- When you have the title bar turned on for a piece (the default), you might find it advantageous to change the caption in the title bar to match the topic the user is viewing in your program. You can dynamically change the caption with the Windows API function SetWindowText(). The syntax is as follows: result := SetWindowText(WindowHandle, "Caption") ...where WindowHandle is Authorware's interal WindowHandle variable and Caption is the text you want to appear in the title bar. Caption can be a string constant or variable. Load SetWindowText from WINAPI.U32 for 32 bit systems and from USER.EXE for 16-bit systems.