You also might try the API $mytext = "Hello world. " & @crlf & "This is a test" $from = "en" $to = "ru" $url = "https://translate.googleapis.com/translate_a/single?client=gtx" $url &= "&sl=" & $from & "&tl=" & $to & "&dt=t&q=" & $mytext $oHTTP = ObjCreate("Microsoft.XMLHTTP") $oHTTP.Open("POST", $url, False) $oHTTP.Send() $sData = $oHTTP.ResponseText Msgbox(0,"raw data", $sData) $sDat