 | reply to DogFace05
Re: [Proggy] Google Voice dialer For some reason, 0.71.00 has stopped working for me (doesn't ring phone). I can still go in and dial from Google Voice, though... |
|
 | Exactly same thing happened to me starting yesterday. I think it is related to the issue stated at »Re: SIPsorcery + Google Voice » Occasional outgoing calls |
|
 | reply to JFerguson
said by JFerguson :
For some reason, 0.71.00 has stopped working for me (doesn't ring phone). I can still go in and dial from Google Voice, though... This should fix it. |
|
 | This version works but I don't need to specify '7' for Gizmo callback. just works on 747 numbers now.
Synchron  |
|
 | Correct. The new phonetype parameter is optional and will default to 7 for any callback number starting in 747, or 2 otherwise. The phonetype parameter allows for explicitly overriding the default. |
|
 | reply to DogFace05 Thank you much for your tool - I had been looking for a way to dial from an outlook contact and this is it!
For those who care to do something similar - I created a cmd file to run DogFace05's program with just a target phone number. Mine is c:\gvdial\gvdialb.cmd and contains 3 lines: c: cd \GVDial gvdial account password %1 3125551234
And run this macro from an outlook contact list: Sub DialContact()
Dim objItem As Outlook.ContactItem Dim NumberToDial, TempNumber As String Dim CheckChar As String
' one and only one item must be selected If Application.ActiveExplorer.Selection.Count 1 Then Exit Sub End If
For Each objItem In Application.ActiveExplorer.Selection If objItem.Class = olContact Then TempNumber = objItem.BusinessTelephoneNumber For I = 1 To Len(TempNumber) CheckChar = Mid(TempNumber, I, 1) If StrComp(CheckChar, "0") >= 0 And StrComp(CheckChar, "9") = 0 Then NumberToDial = NumberToDial + CheckChar End If Next Shell ("c:\gvdial\gvdialb.cmd " + NumberToDial) End If Next
Set objItem = Nothing
End Sub |
|
 | Very nice contribution, ljp. Thanks. |
|
|
|