I just discovered this fantastic software (i am running the latest version on Windows Vista )
However i am using a phone service that requires me to enter speeddial numbers to get hold of my collegues. If i use the full phone number when i call a collegue i get charged for the call but when i use the speeddial number there are no charges for all "internal" calls.
Now over to the catch:
Your software wont let me to dial phonenumbers which are only 4 digits long using the Vista gadget!.
Is there a way to "tweak" the software so that it lets me dial shorter numbers using the Vista gadget?. (It seems to require at least 5 digits)
Unable to use short phonenumbers in Vista gadget
I know it and i will fix it to the next update.
If you want you can overide this restriction. Open the file
in notepad. Search for the lineand replace it with
If you want you can overide this restriction. Open the file
Code: Alles auswählen
C:\Programs\Windows Sidebar\Gadgets\myphonexplorer.gadget\flyout.htmlCode: Alles auswählen
if (isNaN(tmp) == false && tmp.length > 4 && (tMessage.value != "" || sAction != "SendSMS") && tmp.indexOf(",") == -1 && tmp.indexOf(".") == -1)Code: Alles auswählen
if (isNaN(tmp) == false && tmp.length > 3 && (tMessage.value != "" || sAction != "SendSMS") && tmp.indexOf(",") == -1 && tmp.indexOf(".") == -1)