Unable to use short phonenumbers in Vista gadget

For user who dont speak german please use this part of my forum
Antworten
Pelle

Unable to use short phonenumbers in Vista gadget

Beitrag von Pelle »

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)
weinbi
Moderator
Beiträge: 929
Registriert: Mo 11. Jun 2007, 11:25
Wohnort: Kärnten
Kontaktdaten:

Beitrag von weinbi »

AFAIK does this issue not only happen in the gadget, it is everywhere in MPE. Some users have already asked this and it will be fixed in the next version.
English FAQ || Deutsche FAQ
----------------------------------
HTC Desire
FJ
Site Admin
Beiträge: 32113
Registriert: Mi 15. Feb 2006, 01:16
Wohnort: Tirol

Beitrag von FJ »

I know it and i will fix it to the next update.

If you want you can overide this restriction. Open the file

Code: Alles auswählen

C:\Programs\Windows Sidebar\Gadgets\myphonexplorer.gadget\flyout.html
in notepad. Search for the line

Code: Alles auswählen

if (isNaN(tmp) == false && tmp.length > 4 && (tMessage.value != "" || sAction != "SendSMS") && tmp.indexOf(",") == -1 && tmp.indexOf(".") == -1)
and replace it with

Code: Alles auswählen

if (isNaN(tmp) == false && tmp.length > 3 && (tMessage.value != "" || sAction != "SendSMS") && tmp.indexOf(",") == -1 && tmp.indexOf(".") == -1)
Antworten