Seite 1 von 1

Unable to use short phonenumbers in Vista gadget

Verfasst: Mo 19. Mai 2008, 14:32
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)

Verfasst: Mo 19. Mai 2008, 14:39
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.

Verfasst: Mo 19. Mai 2008, 19:13
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)