Name is the name of a window.
Returns a window handle.
Window names are case sensitive because the operating system works that way. Partial name matches are enabled by default. There is (will be) a setting to require full name matches.
function demo() { var handle; var name; handle = GetWindowHandle ( "World of" ); name = GetWindowText ( handle ); print ( name ); }