Helps to distinguish a local number international.

Hi all, I have a logic? The code? problem, I need to know when a certain number, I called you is local or international (I am in Argentina but, I make my app for the USA, is an another card Dialer).

I'll do something quite simple, in the callInitiated event, end the call by injecting a red key event and wearing the number dialed (Phone.getActiveCall () .getDisplayPhoneNumber ()), well, make a new call, card, breaks, etc. etc.

The problem I have as I say this, is, how can I distinguish a number is local or international.

I also try to use getDTMFTones, to get the true secuence composed, but always returns null (only tried it on a simulator).

Someone has done this kind of thing? (Code problem and goes in this forum) Can someone tell me how dial you an international number (ours)? you use an exit code or something special in the number? (Problem of logic... and this post belongs to any other place)

I work with Eclipse, installed the plugin with the 4.5 components, then added componentents for 4.2.1 these are what I use for compiling since I have to cover a wide range of devices and the version of the OS (from 4.2 to 4.7)

As far as I know if one begins with zero phone number is an international number.

Visit this link: http://www.countrycodes.com/

Tags: BlackBerry Developers

Similar Questions

  • Need HELP with a shadow shape number internal

    I create a rounded rectangle and add a gradient and an inner shadow (angle of 120). Then I create another rectangle rounded corners and when I add the gradient and inner shadow, I can not change the internal shadow at 30 degree angle (I want the two rectangles to be the opposite - inner shadow on the left one and the right of the other), but every time I change it it changes the two rectangles. I tried new layer, done to dissociate the vector mask - all I can think of - someone knows how to do this?

    Thank you in advance for your help!

    Uncheck the global light.

  • FaceTime local number in different countries

    HI, I was wondering if I can FaceTime my friend who is traveling abroad and using the local number she recorded locally. It uses the same number for roaming data roaming and NOT to use the wifi. While I, on the other side of the country (do not travel) and using 3G (data) do I or my friend have to pay for FaceTimeing while it is in another country (wifi) and I use my cellular data?

    As long as your data plan is not limited, your FaceTime call doesn't cost you money. Even if you receive this call via Wi - Fi, you may have to pay to get the Wi - Fi connection, if your WiFi is not free.

    See also: it costs money FaceTime internationally?

  • Help understand the 'Editing Local' option in the volume of the App Manager

    Any body can help me understand the "Local Assembly" option in Volumes App Manager?

    I want to know if I activate this option, what effect to my environment and I can see this effect? Thank you.

    local.png

    Hey,.

    What is happening here is that Appvolumes will check on what data store, the VDI is located and attach this data store Appstacks (if appstacks are in this data store).

    It is only of use if you have a storagegroup with mutiple data warehouses, otherwise it will always choose the 1 appstack you have.

    This is mainly done to make sure that you don't have to much traffic of data between servers and storage.

  • Please help me with connection Local & TweenLite

    I'll quickly explain what I'm trying to do because I wrote this once and accidentally hit the back button on my browser and it erased everything I just typed... never fact it? One of the most frustrating things I've experienced on a PC, never! (On a side note just good developers reading this, please include an automatic backup every 5 minutes on the input of teas areas...).

    Anyway, back to my original problem. I am trying to install a navigation bar (flash) floating on the top of my home page (flash) and have the .swf files communicate variables using the local connection method. After a lot of reading, it's the only way I've heard of this. If you have a better way to make this work, I'm all ears. The purpose of this is to have different pages (interpolation) open or closed according to the button, the user clicks on (eg. click the button on the services page, tween open the services page, click the portfolio page, tween services pages and in the portfolio page and so on). I found an excellent tutorial that shows how to accomplish this BUT the buttons and pages are all in the same .swf file is much easier than what I'm trying to do. I'm pretty new for ACE as a whole, but use the code in Basic (fluent) and currently a little HTML & CSS code so I understand most of the AS3 code already.

    A lot of the code is probably done properly, that I modified for the excellent tutorial I looked (here) on the use of TweenLite melted between pages regardless of the page I'm currently on (although I know that there are probably several questions). What is different between this tutorial and my site, is that my navigation bar is in a separate file; I need any page that is currently open to falter when you click on a hide button (located on the main pages); and pages need to hide if you click on the button of the page you are currently on. In the tutorial, the guy uses ACE to make sure pages don't fade again. I also think because pages and buttons are in another file that I need to send the variables (via local connection) to the other files and vice versa, because the reference variable on the other page code.

    If you happen to have 15-30 minutes to go through the tutorial and help me I would appreciate it more than you will ever know, because I intend to use this same method on most of the sites that I create in the future.

    Code navigation bar:

    Establish an incoming local connection

    var receiving_lc:LocalConnection;

    receiving_lc = new LocalConnection();

    receiving_lc. Connect ("my_lc2_as3");

    receiving_lc.client = this;

    Establish a local outgoing connection

    var sending_lc:LocalConnection;

    sending_lc = new LocalConnection();

    Give the IDs navigation bar buttons

    navBar.servicesBtn.ID = 0;

    navBar.portfolioBtn.ID = 1;

    navBar.aboutBtn.ID = 2;

    navBar.contactBtn.ID = 3;

    navBar.addEventListener (MouseEvent.CLICK, melted chained);

    Investor a reference to the currently visible element

    var currentClip:MovieClip = pages_arr [0]

    Function to send the command minimize or hide the command for the main .swf

    function crossFade(e:MouseEvent):void {}

    Creates a reference to the movieclip that is associated with the button that you just clicked

    var thisBtnsMovie:MovieClip = pages_arr [e.target.ID]

    If (currentClip! = thisBtnsMovie) {}

    sending_lc. Send ("my_lc_as3", "crossFadeFunc");

    currentClip = thisBtnsMovie;

    }

    if(currentClip == thisBtnsMovie) {}

    sending_lc. Send ("my_lc_as3", "hidePages");

    }

    addChild (currentClip);

    }

    Function to reset the number of pages_arr if someone clicks on the Hide button

    function resetCounter(e:MouseEvent):void {}

    import flash.display.MovieClip;

    var currentClip:MovieClip = pages_arr [5]

    }

    Main-Code page:

    Establish an incoming local connection

    var receiving_lc:LocalConnection;

    receiving_lc = new LocalConnection();

    receiving_lc. Connect ("my_lc_as3");

    receiving_lc.client = this;

    Establish a local outgoing connection

    var sending_lc:LocalConnection;

    sending_lc = new LocalConnection();

    Import GreenSock

    import com.greensock;

    com.greensock.easing import. *;

    com.greensock.plugins import. *;

    import flash.events.MouseEvent;

    TweenPlugin.activate ([ScalePlugin]);

    Creates an array of all pages

    var pages_arr:Array = [portfolioPage aboutPage, servicesPage, contacts];

    Sets all the pages of the invisible

    TweenMax.allTo (pages_arr, 0, {autoAlpha:0});})

    Sends the currentClip variable to the navigation bar? (Not sure if this is the right method)

    sending_lc. Send ("my_lc2_as3", "", currentClip);

    Send the pages_array to the navigation bar? (Do not know if it is just no more)

    sending_lc. Send ("my_lc2_as3", "", pages_arr);

    Function pages fade in and out

    function crossFadeFunc(e:MouseEvent):void {}

    Fade in the current clip

    TweenLite.to (currentClip, 1, {autoAlpha: 0, scale: 1.2, ease:Quad.easeIn});})

    Fades in the new clip

    TweenMax.fromTo (thisBtnsMovie, 1.2, {scale: 0}, {autoAlpha: 1, scale: 1, delay:. 2});

    }

    Function to hide the pages if the user clicks one of the buttons to hide on the pages

    function hideAllPages(e:MouseEvent):void {}

    Fade in the current clip

    TweenLite.to (currentClip, 1, {autoAlpha: 0, scale: 1.2, ease:Quad.easeIn});})

    Contains the code for the navigation bar in order to reset the counter pages_arr

    sending_lc. Send ("my_lc2_as3", "resetCounter");

    }

    Add event listeners to hide the buttons on each page

    servicesPage.hideBtn.addEventListener (MouseEvent.CLICK, hidePages);

    portfolioPage.hideBtn.addEventListener (MouseEvent.CLICK, hidePages);

    aboutPage.hideBtn.addEventListener (MouseEvent.CLICK, hidePages);

    contactPage.hideBtn.addEventListener (MouseEvent.CLICK, hidePages);

    P.S. If you have a program such as FlashDevelop (you can just copy/paste this code), the syntax and comments will be much easier to distinguish.

    Then, you need to use javascript to detect the browser resizing and call actionscript to position your navigation bar.  use the ExternalInterface class addCallBack to call actionscript from javascript.

    Use the example of html code in the help files (or the use of swfobject) to embed your main swf.

  • I can't ping or join the local network internal

    I can't reach or ping my network when I connect via VPN. The connection works fine, everything must be connected to the ASA and users is accepted through RADIUS

    Jørgen,

    I recommend you to use different network RA pool to be separated from your inside of the network number, this strategy troubleshooting efforts ease down the road that say to questions of troutbleshooting of the Interior can still function 192.168.0.0/24 and RA POOL 192.168.0.0/24, however, using the same network.

    I corrected a few things in your config file.

    You have allocated dhcpd for inside the host from 192.168.0.2 - 192.168.0.129

    and your pool of vpn RA is set from 192.168.0.60 - 192.168.0.75, your RA pool allocation must be 192.168.0.130 - 192.168.0.145 to have a few consistentcy.

    You must also add to your config "crypto isakmp nat-traversal" and customer RA try again

    If all above is not the thing, keep in your config nat-traversal crypto isakmp and re - create new network for your POOL of RA.

    Here's the easy script

    remove network RA POOL

    no local pool VPN_IMH 192.168.0.60 - 255.255.255.0 ip 192.168.0.75 mask

    create a new network POOL guess (172.16.1.0)

    local pool VPN_IMH 172.16.1.60 - 172.16.1.75 255.255.255.0 IP mask

    for your exempt nat acl add the following statement

    permit access ip 192.168.0.0 scope list inside_nat0_outbound 255.255.255.0 172.16.1.0 255.255.255.0

    remove this rule

    no access list inside_nat0_outbound extended permits all ip 192.168.0.0 255.255.255.0

    Let us know how works to help

    Concerning

  • HP 15-g132ds: I need help determine my motherboard model number

    While upgrading memeory I broke the ZIF connector for the power button, now having issues getting the mobile turn on and stay on.  Looking for a motherboard model and the reference number. Board of Directors is marked as ZS051 THE-A996P, Rev 4.0.  When searhcing this Board produces a list of part numbers, a way to make sure that it is what I want before I buy?

    Hi @BICOSTEEL,

    Please become a member of the HP's Support Forums. I understand that you have questions about the reference numbers. I'll be happy to help you.

    When I go to the HP parts store, it shows the motherboard as a card MOTHER UMA A4-6210 W8STD part number 764264-501.

    Please keep me informed of the progress of things.

    If you need help, let me know and I will gladly make all that I can to help you.

    Please let me know if that solves the problem by marking this post as "accept as a Solution.
    To simply say thank you, click the Thumbs up below!

    Thank you.

  • Help blackBerry Smartphones need to find international adapters

    I have a BlackBerry Torch 9800, and I travel internationally quite frequently.  I searched for the international versions of the small USB provided with my blowtorch; the part number is HDW-24481-001, but that's for the American version.  I'm sure it must exist for the United Kingdom and Europe, but I don't know how to find them.

    If anyone knows a source, any input would be appreciated.

    And, as a preventive measure, anyone who thinks that this post is not justified and feels compelled to post a note in a bad mood, please do not.  If you don't like the post, just ignore it.  Too many people who just want to ask a question these days is filled with rude comments and "a few seconds on Google", etc.

    BlackBerrysource.com is a good place for parts and accessories.

    And regarding the comment, I don't / didn't take personal. You just do not see on this site often enough to ask.

    Good luck.

  • How do I deal with the 'there was an error downloading this update. Quit and try again later. "Helps online says wrong serial number, say its good customer service and I come here for help. CS5 installed today on the new PC.

    Today I installed CS5 on my new PC.  Everything is OK.  Run update help PS and received this message:

    CS5 Adobe Extension Manager 5.0 updated

    There was an error downloading this update. Quit and try again later.

    Adobe Illustrator CS5 15.0.2 updated

    There was an error downloading this update. Quit and try again later.

    Update of Photoshop to Photoshop CS5 12.0.4

    There was an error downloading this update. Quit and try again later.

    Photoshop Camera Raw 6.7 update

    There was an error downloading this update. Quit and try again later.

    My serial number Adobe customer service is good and I come here to help!

    Help.

    I am running CS5 on Windows 10.

    [When a staff member requests the information hover private hover over their name]

    [you can then click the Message option in the pop-up window to send a private email]

    [Accident removed long log... Please only send a log of crash to a technician, when asked]

    Cloud & Win10 https://helpx.adobe.com/creative-cloud/kb/Windows_10_compatibility_FAQ.html

    -In addition, only CURRENT products will be tested and updated for compatibility with Windows 10

    - so if you have an older program, update you to Windows 10 at YOUR risk of problems

    -You can get CS6 and previous programs to install and run, or you can not (some do, some don't)

    An idea that MAY work to install or run some programs in Windows 10 old... works for some, not for others

    -http://www.tenforums.com/tutorials/15523-compatibility-mode-settings-apps-change-windows-1 0 - a.html

    - or run as Administrator http://forums.adobe.com/thread/969395 to assign FULL permissions can help... said yet, but sometimes it is necessary for all Adobe programs (this is same as using an administrator account)

    Try to install your updates manually

    Beginning of the updates here and product selection, read to see if you need to install updates in the order of the numbers, or if updates are cumulative for the product http://www.adobe.com/downloads/updates/

  • Help please change the script number

    Hello!

    There is one such script or plugin, hand Controller.jsx and there is a single track camera parameter limit somehow the number that allows you to control up to 1370, for example, I need to infinity, or at least to 20,000, to try to change the number in the main Controller.jsx file but nothing changed. wrote one person here, he said the difficulty of "PresetEffects.xml" in the folder "C:-Program Files-Adobe------Adobe after effects CC 2015------Support Files. I changed the track camera up to the desired value, but as soon as I change more than 1370 all is lost. Plug-and-project joint. project of https://Cloud.mail.ru/public/3AwZ/fCu2WcPSh and https://cloud.mail.ru/public/H6C8/smxDKdXPM

    Help me please.

    Here it goes

  • My system crashed and I need Adobe Acrobat, I bought years ago and can not find the records.  Help, please. My phone number is [removed]

    How can I reinstall Adobe Acrobat?  My name is Phil [private information removed].  I need Adobe Acrobat to submit documents for my work.  It is very important that I have reinstall Adobe Acrobat.  Can someone help me?

    You can download Acrobat DC, XI, X, 9, 8 from https://helpx.adobe.com/acrobat/kb/acrobat-downloads.html

    You will need your serial number to activate the software, or your Adobe ID if you have a subscription.

  • Need help is not the serial number

    I re install my adobe 9 pro extended edition on a new machine, my other a dying and I have the original cd but no serial number. I transferred all the CDs and DVDs in the carrier and I am in school and need of this program do - what I do

    First of all, see https://helpx.adobe.com/x-productkb/global/find-serial-number.html

    If this does not help, there are programs that can retrieve the serial numbers of installed programs; ask Google.

  • Help with card parent part number. Help, please

    I have a hp laptop dv9000 series. I removed my motherboard so I can replace it, but there is just no part number on it and hp only used several mobos for this series. My laptop is dv9628-nr... the serial number [text removed for privacy] P # is GS720UA #ABA... .i called hp, they me transferred to India and they said they can't tell me the number of mobo unless I have buy a warranty, so they obviously care nothing about the customer service... all help greatly appreciated.

    All HP replacement part numbers ending in-001, replacement part number is normally placed by the accessible memory slot to end-user on the bottom of the laptop.  In my view, that it's your machine:

    http://h10032.www1.HP.com/CTG/manual/c01311536.PDF

    I looked at the maps system, there are 5 part numbers, but if you live in Germany, which gets rid of two, if it's not an AMD processor that gets rid of one, now you just need to know the size of the video RAM 256 or 512 and you have narrowed it down.  Hope this helps, if that's the case, kindly give me a few congratulations!

  • SQL Help: How to collect summary number in group by?


    Hello

    I have the following table:

    create table tb_class_info (classNbr number (5), number (2) of ClassType, classTeacherNbr number (4));

    insert into tb_class_info values (101, 1, 12);

    insert into tb_class_info values (001, 2, 12);

    insert into tb_class_info_values (001, 2, 13);

    insert into tb_class_info_values (002, 2, 12);

    insert into tb_class_info_values (002, 2, 12);

    I would like to get statistics on the cnt, cnt for classType = 2 classTeacherNbr classNbr. I expect to have the following results:

    classNbr classType2Cnt classTeacherCnt

    101                0                         0

    001                2                          2

    002                2                          1

    The following SQL code I use:

    SELECT classNbr,

    SUM (CASE when classType = 2 THEN 1 ELSE END 0) as classTypeCnt,

    SUM (CASE when classType = 2 SO unique classTeacherNbr ELSE 0 END) as classTeacherCnt

    OF tb_class_info

    GROUP BY classNbr;

    However, I have the ' ORA-00905: lack of keyword ' error. Any suggestion on this subject?

    Thanks for your help!

    Select classnbr

    sum (case when classtype = 2 then 1 end)

    , count (distinct case when classtype = 2 then teachernbr end)

    of tb_class_into

    Classnbr group;

  • Need help to get the serial number

    I bought Photoshop Elements and first items grouped in version 8. I've updated both to version 10, two years ago but I have apparently lost the serial numbers for v10. The number of items in the Prime Minister appears in my account, but not Photoshop elements. I need to know what my current Photoshop Elements serial number is so I can upgrade. Can someone please help me find how to do this? Thank you

    To the link below, click on the still need help? the option in the blue box below and choose the option to chat...

    Serial number and activation support (non - CC) chat
    http://helpx.Adobe.com/x-productkb/global/Service1.html ( http://adobe.ly/1aYjbSC )

Maybe you are looking for

  • Removed all icloud photo library, 1.9 GB still in use

    I deleted all of my photo, My Photo Stream etc. flows including shared library iCloud. I have also ensured that the recently deleted album is empty. I disabled iCloud photo library on each device. It should not be a trace of left. However, I always t

  • the iCloud synchronization

    not subscribed calendar sync for icloud

  • EliteBook 8460p: HP EliteBook p 8460 - last ProtectTools version where is it?

    Hello Does anyone have the link to download the latest version of the tools of protection for Elitebook 8460p? Thank you!

  • Bluetooth connection for laptop Vista

    I have a Bluetooth adapter connected to my laptop. When I click on the Bluetooth icon and add a device, the computer detects and recognizes my Bluetooth headset, but when I click on 'connect', I get a window titled BtwApplExt, with the error message,

  • Wireless network adapter driver

    Hello After upgrade to W7 to professional W8 for my HP 802. 11b / g wireless network adapter does not work. Manager displays with a yellow!. I can't find any driver updates. May I ask your help please? I have HP Pavilion m8140.ch (for desktop) Thans.