Prompt me how to see the text in the translation box,https://translate.google.com/
Google Chrome, I can not even see the word @translator@.
>>>> Visible Text <<<<
Chrome Legacy Window
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