Conditional call forwarding and popup screen.

Hi all

I push a pop-up screen to cover a call out with my own information. However on my device and several others, a pesky "conditional call forwarding" popup is displayed by the phone which briefly takes precedence over my popup screen. Is this anyway to prevent this.

I push the screen by using the following code.

UiApplication.getUiApplication().pushGlobalScreen(activeOutDialScreen, 0,UiEngine.GLOBAL_SHOW_LOWER) ;

I tried setting the summary field on a few different things, but nothing can stop the pop-up conditional reference poster.

Any help or just confirming, that it is not possible would be greatly appreciated.

Kind regards

Alan

None

Tags: BlackBerry Developers

Similar Questions

  • Combination of call forwarding and online number?

    Hi people!

    I was wondering if it was possible to use these two functions at the same time to allow someone to call my online number and have the call transferred to my local phone (ex: my girlfriend in the United States I in Spain).

    Thank you very much!

    -C

    corybear87 wrote:

    Hi people!

    I was wondering if it was possible to use these two functions at the same time to allow someone to call my online number and have the call transferred to my local phone (ex: my girlfriend in the United States I in Spain).

    Thank you very much!

    -C

    Yes, it works as you want.

    About me You can also use an IP camera that your camera for Skype videoExample Instructions

  • I'm working with Acrobat XI and when I try to add text to the geopdf file I get a popup screen that says it is a secure document and editing is not allowed. How can I fix it?

    I'm working with Acrobat XI and when I try to add text to a geopdf file I get a popup screen that says it is a secure document and editing is not allowed. How can I fix it?

    I thought about it... need to use the defined comment tool, not the set of editing tools.

  • Close popup screen programmatically

    I have a popup screen that I displayed to inform the user that they are wating on entry. When I try to close it in my earpiece method it gives the error:

    IllegalStateException - UiEngineImpl.assertHaveEventLock)

    I push the pop-up screen on the stack using a runnable.invokeAndWait and push as a ModalScreen because otherwise it will not show.

    What is the error of assertHaveEventLock for, and why the window display not using invokeLater and pushScreen?

    The IllegalStateException is thrown because the thread that calls the close method (the listener) is not the thread main event.  Calling the method close must occur in a block, as described on the next page.

    How - to upgrade a screen on the main event Thread
    Article number: DB-00136

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800505/800256/...

  • How to close a popup screen pushed as a global screen

    I want to close a popup screen but my application is in background so

    UiApplication.getUiApplication () .popScreen (getScreen ());

    or

    UiApplication.getUiApplication () .getActiveScreen () m:System.NET.Sockets.Socket.close ();

    does not work is not something

    same Ui.getUiEngine () .getActiveScreen () m:System.NET.Sockets.Socket.close () does not work...

    in the popup screen, I have a custoListView (written own filed) there is an item when you click on an event

    listner function is called by there, I have to close popup screen... my class is like that

    SerializableAttribute public class SelectSms extends PopupScreen {}

    private vector _data;

    public boolean onClose() {}
    try {}
    Close();
    Returns true;
    } catch (Exception e) {}
    Returns false;
    }
    }

    public SelectSms() {}
    Super (new VerticalFieldManager(), Field.FIELD_VCENTER);
    _data = null;
    _data = MessageStore.getMessage ();
    last post [] message = Message [_data.size (new)];
    MSGC [] CustomListField = null;
    MSGC = new CustomListField [_data.size ()];
    for (int i = 0; i)<>
    message [i] = (Message) _data.elementAt (i);
    MSGC [i] = new CustomListField (message [i] .getMSG_BODY (), message [i] .getMSG_NO (), and [i] .getMSG_STUS ());
    last post mesg = message [i];
    MSGC [i] .setChangeListener (new FieldChangeListener() {}
    ' Public Sub fieldChanged (field field, int context) {}
    onClose();
    }
    });
    Add (MSGC [i]);
    }
    can someone help me how to close the popup screen.
            
    }
    }

    Place the UiApplication.popScreen () call in an executable object and pass this object to UiApplication.invokeLater ().

  • Popup screen problems

    I've tried using the search tool and google my whole day, but I can't seem to find the answer to these two problems.

    1. I'm positioning my pop-up screen in the middle of the screen. But as you can see in the image below it is nowhere near the Center.

    2. I'm trying to focus my two buttons in the middle of the popup screen with a verticalfieldmanager, but somehow it is fondant a position according to the width, I don't know what.

    Here is the code:

    private final static int _Width = 200;private final static int _Height = 200;private final static int _X = (Display.getWidth() - _Width) >> 1;private final static int _Y = (Display.getHeight() - _Height) >> 1;public class NetworkSettingScreen extends PopupScreen{
    
    public NetworkSettingScreen(){   super( new VerticalFieldManager());   LabelField lf = new LabelField("Network Settings", DrawStyle.HCENTER);    SeparatorField sf = new SeparatorField();         CheckboxField cbf1 = new CheckboxField(" WiFi", true);    CheckboxField cbf2 = new CheckboxField(" GPRS/Edge/3G", true);
    
      VerticalFieldManager vfm = new VerticalFieldManager(HorizontalFieldManager.FIELD_HCENTER);    ButtonField bf1 = new ButtonField("Save", DrawStyle.HCENTER); ButtonField bf2 = new ButtonField("Cancel", DrawStyle.HCENTER);   vfm.add(bf1); vfm.add(bf2);
    
      //add UI components to Pop-up screen  add(lf);  add(sf);  add(cbf1);    add(cbf2);    add(vfm);}
    
    public void sublayout(int width, int height){   super.sublayout(width, height);   setExtent(_Width, _Height);           setPosition(_X, _Y);}}//end of class
    

    http://i55.Photobucket.com/albums/G152/chengbang69/screenshot.jpg

    any help would be appreciated

    Hey chengbang69,

    I modified your code to obtain the expected results,

    final class NetworkSettingScreen extends PopupScreen
    {
        private final static int _Width = 200;
        private final static int _Height = 200;
        private final static int _X = (Display.getWidth() - _Width) >> 1;
        private final static int _Y = (Display.getHeight() - _Height) >> 1;
    
    public NetworkSettingScreen()
    {
        super( new VerticalFieldManager());
        LabelField lf = new LabelField("Network Settings", LabelField.FIELD_HCENTER);
        SeparatorField sf = new SeparatorField();
        CheckboxField cbf1 = new CheckboxField(" WiFi", true);
        CheckboxField cbf2 = new CheckboxField(" GPRS/Edge/3G", true);
    
        VerticalFieldManager vfm = new VerticalFieldManager(VerticalFieldManager.FIELD_HCENTER);
        ButtonField bf1 = new ButtonField("Save", ButtonField.FIELD_HCENTER);
        ButtonField bf2 = new ButtonField("Cancel", ButtonField.FIELD_HCENTER);
        vfm.add(bf1);
        vfm.add(bf2);
    
        //add UI components to Pop-up screen
        add(lf);
        add(sf);
        add(cbf1);
        add(cbf2);
        add(vfm);
    }
    public int getPreferredWidth() {
        return _Width;
    }
    public int getPreferredHeight() {
        return _Height;
    }
    
    public void sublayout(int width, int height)
    {
        super.sublayout(getPreferredWidth(), Integer.MAX_VALUE);
        setExtent(getPreferredWidth(), getPreferredHeight());
        setPosition(_X, _Y);
    }
    }//end of class
    

    The reason why you need to replace getPreferredHeight() and getPreferredWidth() is due to all subcalls and sublayouts which actually occur when you call super.sublayout. It will then use the 'default' screen page or getPreferredWidth/height.

    Just a friendly recommendation, adjusting the size of a screen to a static value is effective only if you also check the size of the font, currently if the user has a font above average size, a part of the text will not be seen, so, technically, the most effective way is to have the JAVA virtual machine to manage the resizing/flaking itself This can be done by simply using the same code that I posted above, however remove the substitution on sublayout, the width will be slightly larger that you set but at least you won't encounter unknowns.

    Hope this helps,

    Concerning

    André

  • How do I close the popup screen

    Hey, I opened a popup screen on the click of a menu item

    now, if the user presses the ESC key

    the pop-up screen should close

    I tried in a certain way, but does not work what to do

     protected boolean keyChar(char c, int status, int time)
            {
                 boolean retVal = false;
    
                if (c == Characters.ESCAPE)
                {
                    close();
                    UiApplication.getUiApplication().invokeLater(new Runnable()
                    {
                        public void run()
                        {
                            UiApplication.getUiApplication().popScreen(filter);
                            UiApplication.getUiApplication().popScreen(UiApplication.getUiApplication().getActiveScreen());//(filter);
                        }
                    });
                    retVal = super.keyChar(c,status,time);
    
                }
                return retVal;
            }
    

    kindly help what to do.

    the popup screen is blocked unless I click on a button on the pop-up screen for certain work

    What to do?

    Your pop-up screen should respond the the ESC key by calling the close() method.

    Override keyChar() in the pop-up screen, search for the ESC key and call close().

  • My I - phone 5 s is acting funny. I call a friend and she sees "Restricted" at the end instead of my name and phone number.  In addition, sometimes I call someone and the message is "that number is not available.

    My I - phone 5s has problems. I called a friend who has my name in his phone book and she sees on the screen "Restricted."  I try to call someone and I get"this number is not available. I call the company that provides the 'ULTRA' cell phone service and they tell me that I have to remove my caller ID. Yesterday I called a friend who I talked to for several years and my name does not appear on his phone.

    Your problem is a problem of carrier. You will need to go back to them and sorting.

  • my iphone 4S hanged and black screen

    I used the iPhone 4 (factory unlocked) for over a year now with only minor problems. Like a regular day, I was typing a message to my friend, but suddenly he hung then black screen follows... It was a shock suddenly! . I just put the phone to rest for a while and after about an hour, have crossed my fingers and tried again the Home button, but the black screen continued. If the backlight of the iPhone works I can say that, because I see the phone luminates but the "Slide to unlock" is cannot be seen. Since I have been using the phone for a while, I know the accurate position to "Slide to unlock" so if I slip my finger unlocks it too with the default 'Unlock (click) noise' but again once the icons of the apps is not visible, all I see is a grid and fadely. I get the SMS and calls even though I can't read nor I can see who's calling. Because the screen is blank, I can't use the phone but the phone seems to work.

    Try a hard reset by pressing Power and "home" set button until the Apple logo appears. If it is not resolved, try a restore of the phone via ITunes.

  • I've just updated to 25.0 and I noticed the drop-down history menu has been simplified and back, forward and home are now gone. These can be restored?

    I'm running on a Mac (Lion) with 25.0 FF. I usually hide the toolbar because I like the most on my screen space without having to switch to full screen mode. So I usually use a custom keyboard command to navigate forwards and backwards in my browser session, but sometimes the keyboard command fails and the page does not. In the past, all I had to do was go to the history of the menu drop-down and choose "Back" or "Forward." I also use the selection 'Home' to return to my home page. But since I updated to 25.0 these choices are now gone in the history menu.

    Is it possible to restore them? And are they gone for all users (was that a global change) or one of my addons just aren't playing nice and causing this problem? TIA!

    The following article, the keyboard shortcut for home on MacOS X is option + home.

    Hotkeys - quickly perform common tasks of Firefox

    Note: If the Windows keyboard shortcuts article appears, check the editing tools section in the left column to select the correct operating system.

  • Satellite A500 - crackling sounds and blue screen

    Hey everybody.

    I bought a laptop Toshiba Satellite A500-19w about 4 days ago (today it is Sunday, March 7, 2010).

    I had the sounds of crackling of my speakers which have been mentioned so many times in the forums, no real solution.
    I also experienced the crash of the blue screen, that's already happened 7 times while I was not strongly using my newly buy laptop.
    I'm not looking for a repair or a replacement, because I find it quite unacceptable to have to think about the errors, faults & fixes as much as the laptop is brand new.

    What I want is a refund, but I'm not sure on how to do it.

    I know that Toshiba has some sort of refund policy, but if someone can tell me exactly how it works, because I want to get rid of my laptop as soon as possible (I will not buy any more portable Toshiba, especially since I had some similar problems with my Qosmio f30).
    If someone can give me some guidance, because I don't want to be mocked or used and cheated out of refund.
    I bought my Toshiba in the Middle East (perhaps refund policies are different here).
    Thank you.

    Post edited by: mihran

    Hi mihran.

    If you want to pay off your laptop, you should talk with your computer store where you bought it. Only the can repay your laptop and not Toshiba directly.
    Of course it is also depending on the country where you life, but normally you can pay within 14 days I think. So in your case I speak with the seller or give them a call. They explain how to do this.

    But let me give you a little advice: regarding your problems with the crackling sound and blue screen I recommend that you contact an authorized service provider or ask a new A500 (this should be possible if you have only 4 days). Generally, I can say that a friend of mine has Satellite A500 and he is quite satisfied with her. This laptop has a great design equipped with new material for a good price. :)

  • Call forwarding does not work ;-((

    Hello

    I got Skypenumbers from the beginning. But since two months call forwarding no longer works. I renewed my subscription; I have 30 euros on credit account. I even tried a new Skype number to see if the old number could have crashed. But also the new number does not work with call forwarding.

    It's abit frustrating to read Skype/Microsoft does not very serious service.

    This problem will be resolved, or must we begin to use the other services?

    AB

    Dear Elaine,

    I have finanlly managed to get a conversation with the assistance service. It was still not available, but I got lucky.

    And they found the problem; I got in the App on one of my Macs 'private' privacy setting This is why di call forwarding does not work. So I changed it to open and now it works.

    Thanks for your help and advice; I am happy that this solved in the end.

    See you soon

    AB

  • Satellite Pro L300-21F does not start and the screen remains blank

    L300-21F is aged 18 months, so out of warranty. When you press the power button, you can hear the fan and a "click" but the hard drive does not start and the screen remains blank. The power and the battery on the headlight LEDs, but the switch light does not work. I checked the power supply and it is 19.3V and substituted a good known. Removed the battery, tried with just the power cord and still nothing. Pressing ESC or F2 when you press the button power does not bring to the top of the screen of the bios or any other message. I have concluded there is no power the jury. A friend he had its technology take a look and he concluded Council is probably a friend.

    So my questions are:
    1. He's probably right?
    2. is it a common problem with an easy solution?
    3. what else can do before shelling out for a new Board of Directors?
    4. is there a link where I can find how to disassemble the case?

    Any help appreciated

    Hello

    > 1. He's probably right?

    Yes, it looks like motherboard failure

    > 2. Is this a common problem with an easy solution?

    If it's a motherboard problem, the whole motherboard is replaced. Quite expensive part...

    > 3. What else can do before shelling out for a new Board of Directors?

    I don't think you can do anything with fried mobo

    > 4. Is there a link where I can find how to disassemble the case?

    Take a look at the site called irisvista.com

  • If I set up call forwarding on my Skype Premium plan with online number will be I charged or covered?

    Hi it's very confused, I tried to watch several posts on this topic and have not found a clear answer.

    I have a Skype Premium Plan that covers Unlimited United States and Canada and a number of Skype online. Now my question is IF I set up on my cell phone number call forwarding (who is T-mobile, it's my cell phone provider) I pay for minutes with Tmobile and having to pay the cost of returning with Tmobile or will be covered by my Skype subscription call?

    The reason I ask because I want to know covered with 100% certainty whether or not he is, also the same question that I have to if I configure Skype online number if set with a landline call forwarding will be covered or will I have to pay on the landline minutes if it's a no premises. I know on a landline, local calls would be covered, but I'm not local.

    Please help my Confusion,

    Thank you!

    -User of Skype confused

    I contacted Skype a few months there this topic, they said that if you have a subscription if it is covered by your subscription (for example, calls to the US & Canada unlimited) and make a call on Skype, it will be covered.

    I don't have e-mail or lost it somewhere it's months, but basically, that's what he said.

  • Call forwarding - Argentina

    Hello. I just bought a Skype (American - U.S.) number and I need to pass it on to my mobile phone in Argentina. The problem is that I get calls on Skype, when I have it running on my computer, and when I'm offline, they just go to your voicemail.

    What should I do to receive them in my celllphone here?

    I have already set up in the section "call forwarding".

    Thank you in advance.

    Sorry I was not clear enough - I want a screenshot of the settings in the client Skype Call Forwarding Options

    What do you observe when someone calls your Skype client using Skype while you're online?

    also, you say you have Skype credit - please confirm that you can call your Argentine mobile using SkypeOut number

    Kind regards
    Neil

Maybe you are looking for