local description ='This is a test message'HRLib.showTextUI(description)
isTextUIOpen
returnLastDescription: boolean?
Choose to return the last textUI's content
return: boolean status, string? textUIContent
Example
local isOpened, lastDescription = HRLib.isTextUIOpen(true)if lastDescription =='This is a test message' thenif isOpened then HRLib.Notify('The current message in the textUI is probably from HRScripts')else HRLib.Notify('The last message on the textUI was probably from HRScripts')endend