Greetings
how to get the when you copy it will speak? pleas see Picture
after click listen Button Right Mouse then inspect element >> network >> Media
Thank
how to get the when you copy it will speak? pleas see Picture
after click listen Button Right Mouse then inspect element >> network >> Media
VBA Code:
Public Sub Get_TTS()
Dim IE As Object
Dim Url As String
Set IE = CreateObject("InternetExplorer.Application")
Url = "https://translate.google.com.sa/?hl=ar&tab=wT1#view=home&op=translate&sl=en&tl=ar&text=dog"
With IE
.navigate Url
While .busy Or .readystate < 4: DoEvents: Wend
.document.queryselector(".ttsbutton").Click ' or
'.document.queryselector(".src-tts").Click' all of them work will
' her I need to type Code that copy TTS Url Pleas see attch Picture
Application.Wait Now + TimeValue("00:00:05")
.Quit
End With
End Sub
Thank