#cs Function name = Alert($msg) Creater = kcvinu Example = Alert("Hello World!") This function is an alternative for MsgBox. It only takes one parameter as message text And it will display the script name as title #ce Func Alert($msg) Local $Length = StringLen(@ScriptName) Local $title = StringMid(@ScriptName,1,$Length-4) ; Stripping the script name without extension. MsgBox(0,$title,$msg) EndFunc