In my BB app, i want to detect phone numbers as well as to call those phone numbers. In order to do that i have used ActiveRichTextField instead of LabelField. This field works fine to detect the phone numbers but the problem i am getting is that it fails to detect some of the numbers especially of the country Australia. It detects phone numbers of India perfectly fine but not for Australia and some other numbers. What i have done for this is posted below as:
ActiveRichTextField descField;
if (isFocaseble) {
descField = new ActiveRichTextField(replacedString.trim(),
ActiveRichTextField.FIELD_LEFT |
ActiveRichTextField.USE_ALL_WIDTH |
ActiveRichTextField.FOCUSABLE)
i have checked here if its focused or not because only numbers have to be gained focused since there are other data also which have no need to be given focus and replacedString is what the data getting from the webservice.Below are the snaps of my screen through which one can get the clear idea of my problem.
(1) Below are Numbers of Australia:

(2) Numbers of Australia

(3) Numbers of India

Can anybody have any idea regarding this? why i am not able to detect whole numbers and where am i lacking?
Any sort of help would be appreciable.