12,297
edits
Line 35: | Line 35: | ||
else if theNumberInAddressBook begins with "0049" then | else if theNumberInAddressBook begins with "0049" then | ||
set theFormattedNumber to "0" & characters -1 thru -(lengthOfNumber - 4) of theNumberInAddressBook | set theFormattedNumber to "0" & characters -1 thru -(lengthOfNumber - 4) of theNumberInAddressBook | ||
-- or any other international prefix | |||
else if theNumberInAddressBook begins with "+" then | else if theNumberInAddressBook begins with "+" then | ||
set theFormattedNumber to "00" & characters -1 thru -(lengthOfNumber - 1) of theNumberInAddressBook | set theFormattedNumber to "00" & characters -1 thru -(lengthOfNumber - 1) of theNumberInAddressBook | ||
Line 73: | Line 75: | ||
Known Bugs: | Known Bugs: | ||
# browser window opens and resizes | |||
# <s>University numbers like +49 3643 583872 will be called externally, that means it will cost money! (surprisingly the cisco phone system isn't that smart to correct that internally)</s> fixed | # <s>University numbers like +49 3643 583872 will be called externally, that means it will cost money! (surprisingly the cisco phone system isn't that smart to correct that internally)</s> fixed | ||
# <s>doesn't work with phone number which start like 0049...., (0049), (49)</s> fixed | # <s>doesn't work with phone number which start like 0049...., (0049), (49)</s> fixed | ||
# <s>only works with phone numbers in Germany so far</s> fixed | # <s>only works with phone numbers in Germany so far</s> fixed | ||
# <s>doesn't work if page loading in browser takes longer than 1 sec.</s> fixed. | # <s>doesn't work if page loading in browser takes longer than 1 sec.</s> fixed. |