How to open a BB browser

Hello everyone, I'm new to BB. now, I can't sovle this problem: how to display the information on a Web site in a BB browser, that can help me and give me a complete example... Thank you, thank you, thank you very much...

Search this forum will help you tremendously.

Beside that... There are two options for you, one is that you can invoke the browser of your application, the second option is to use BrowserField to display web content in your application. Depending on your condition and the versio OS you planing to target you might choose the solution.

Example for the first option-

http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800440/How_To _...

Example for the second option is located under your samples installed JDE, browserfielddemo

Tags: BlackBerry Developers

Similar Questions

  • How to open the Opera browser in my browser application session

    Hello

    I am trying to open a web page using the browser of my application session, but he open the blackberry default browser, but I need to open the url in the browser opera of blackberry. Please guide me how to open the opera browser.

    You will need to call directly, I guess.

    See CodeModuleManager, ApplicationManager, ApplicationDescriptor.

  • I have Windows 7 Vista. I asked several times how to open a web browser without using my mouse and the other person has given me the right answer yet, or I misunderstood the answer (the more likely scenario)

    Given that I can't grasp how to open a browser window without using a mouse, it dawned on me that I can open new windows in just a window browser.  In fact, I would like that my home page contains all my most visited sites.  However, I am such a novice at this, I don't understand half the jargon, as what is the difference between a window and a tab.  I am a CPA, and for the first time in my life, I have no support from the computer.  I have called my programmer to answer questions and fix my computer.  Now I'm on my own and not completely lost since I tried to learn from my programmers, but we can't assume that I know nothing (or almost).  Thus, when answering my questions, please pretend I'm in third year.

    What is the difference between a window and a tab, and how can I open multiple windows web browser that a

    Hello tterrie,

    In addition to the link provided by Rick, here's a complete list of available shortcuts Internet Explorer.
    Hope this helps

    Chris.H
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How to open pdf in browser

    for some reason any, that I can't open the link of the pdf in the browser chrome, it only downloads the file. Help I need back to show in the browser and I already tried to re install

    Hi power supply,.

    Please see this help document: using Acrobat | Display PDF in browser. Acrobat, Reader XI.

    Let us know how it goes!

    Best,

    Sara

  • How to open a second browser window

    I want to click a button and have it open in a second browser window. How?

    You need only the part below... I'm not surprised that they start with such an example complicated for this function... they have a way to add confusion sometimes.

    buttonName.onRelease = function() {}
    getURL ("http://www.etc...", "_blank");
    };

    This code will be placed in the timeline (preferably on a layer devote you to 'actions') where the button exists in the same frame on a different layer (it's just good housekeeping).  The part "buttonName" who is any name that you assign as the instance name of the button.  Instance names are assigned in the properties panel. (click the button and enter the name in the properties panel).

  • How to open a new browser resized...?

    Please, I want to make a link that opens a "pop up" window of resixed... I can do this by using the option of behavior... but the problem is that when I do, the cursor does not change the shape of "arrow to the shape of the hand" so that no one knows that there is a link...! How can I solve this? Thanks in advance... and good year!

    You can use javascript as in the attached code.
    This would open a pop-up of the defined size.
    Pack the viewer has javascript disabled, it will open the new page in a new window

  • How to open the file browser window?

    Hello

    No idea how to create the file using FLEX browser window?

    Thanks in advance
    PRatap

    FileReference.Browse?

  • I get the pop-up windows and windows that automatically open on my browser, how can I solve this

    I get the pop-up windows and windows that automatically open on my browser, how can I solve this

    Do a scan for adware with Malwarebytes: http://malwarebytes.org/antimalware/mac.

    (copy and paste the link above into the address bar of your browser).

  • Just installed Firefox 9.0.1. When you open a new browser session, two tabs will open. One is my home page, and the other is a home page of Firefox. I want to just my home page to open. How do I get there? Thank you.

    Just installed Firefox 9.0.1. When you open a new browser session, two tabs will open. One is my home page, and the other is a home page of Firefox. I want to just my home page to open. How do I get there? Thank you.

    See the following for a few suggestions:

  • How can open 3GP video, I remove Open or save for a device browser dialog box?

    How can I design the following?

    A user clicks on a link video 3GP appearing open using the browser on the device:

    private void launchBrowser(int browserType, String url) {
      BrowserSession browserSession = createBrowserSession(browserType);
      browserSession.displayPage(url);
      browserSession.showBrowser();
    }
    

    The browser opens, but the user sees a dialog box with the instruction 'do you want to open or save the item?' more open, save and Cancel button.

    If the user selects open, the 3GP file plays without problem.

    I would rather 3GP just play the video to the user.

    1. Is there a way to remove the open or save dialog box for the device of the browser?
    2. What is ill-conceived and should I use a BrowserField?
    3. I'd rather a way to get the next job, but I'm short on time...
    public final class PlayVideo implements PlayerListener {
    
    private Player player;
    private VideoControl videoControl;
    
    private Video video;
    
    public PlayVideo(Video video) {
    this.video = video;
    }
    
    public void openVideoFullUrl() {
    final String url = video.getVideoURL();
    
    if (url != null) {
    Runnable r = new Runnable() {
    public void run() {
    new Browser(url);
    }
    };
    
    new Thread(r, "Event").start();
    }
    }
    
    public void openVideo() {
    
    try {
    if (this.video.getVideoURL() != null) {
    int transportType = 0;
    TransportDetective td = new TransportDetective();
    
    if (td.isCoverageAvailable(TransportDetective.TRANSPORT_TCP_CELLULAR)) {
    transportType = TransportDetective.TRANSPORT_TCP_CELLULAR;
    } else if (td
        .isCoverageAvailable(TransportDetective.TRANSPORT_WAP)) {
    transportType = TransportDetective.TRANSPORT_WAP;
    } else if (td
        .isCoverageAvailable(TransportDetective.TRANSPORT_WAP2)) {
    transportType = TransportDetective.TRANSPORT_WAP2;
    } else if (td
        .isCoverageAvailable(TransportDetective.TRANSPORT_MDS)) {
    transportType = TransportDetective.TRANSPORT_MDS;
    } else if (td
        .isCoverageAvailable(TransportDetective.TRANSPORT_BIS_B)) {
    transportType = TransportDetective.TRANSPORT_BIS_B;
    } else if (td
        .isCoverageAvailable(TransportDetective.TRANSPORT_TCP_WIFI)) {
    transportType = TransportDetective.TRANSPORT_TCP_WIFI;
    }
    
    HTTPRequestRunnable getData = new HTTPRequestRunnable(
        video.getVideoURL(), null, transportType, false);
    getData.run();
    
    String errorMessage = getData.getErrorMessage();
    if (errorMessage == null) {
    if (getData.gotResponse()) {
        byte[] response = getData.getResponse();
        if (response.length > 0) {
          // URL without suffix.
            String redirectedUrl = getData
                    .getCleanConnectionURL();
    
            player = Manager.createPlayer(redirectedUrl);
            player.setLoopCount(1);
            player.prefetch();
            player.realize();
    
            videoControl = (VideoControl) player
                    .getControl("VideoControl");
            videoControl.initDisplayMode(
                    VideoControl.USE_DIRECT_VIDEO, this);
            videoControl.setVisible(true);
    
        }
    }
    }
    }
    } catch (IllegalStateException e) {
    Logger.logEventWarn("[PlayVideo] Illegal state: " + e.getMessage());
    } catch (IllegalArgumentException e) {
    Logger.logEventWarn("[PlayVideo] Illegal arg: " + e.getMessage());
    } catch (SecurityException e) {
    Logger.logEventWarn("[PlayVideo] Security: " + e.getMessage());
    } catch (Exception e) {
    Logger.logEventWarn("[PlayVideo] " + e.getMessage());
    }
    }
    
    public void playerUpdate(Player player, String event, Object eventData) {
    if (event == PlayerListener.BUFFERING_STARTED) {
    Logger.debug("[PlayVideo] BUFFERING_STARTED.");
    } else if (event == PlayerListener.BUFFERING_STOPPED) {
    Logger.debug("[PlayVideo] BUFFERING_STOPPED.");
    } else if (event == PlayerListener.STARTED) {
    Logger.debug("[PlayVideo] STARTED.");
    } else if (event == PlayerListener.STOPPED) {
    Logger.debug("[PlayVideo] STOPPED.");
    } else if (event == PlayerListener.ERROR) {
    Logger.debug("[PlayVideo] ERROR.");
    } else if (event == PlayerListener.END_OF_MEDIA) {
    Logger.debug("[PlayVideo] END_OF_MEDIA.");
    }
    }
    }
    

    Have you tried to invoke the media application directly by using the content (CHAP) API Manager?

    Invoke the media application

    http://supportforums.BlackBerry.com/T5/Java-development/invoke-the-media-application/Ta-p/442964

  • How to open a link in the browser of the phone

    I tried to find out how to open links in the browser of the phone, but I'm getting a few surprising opion (StackOverflow) :

    It is not the answer, when you want to continue using PhoneGap Build, but I solved the problem by creating a development environment for Cordova (PhoneGap) on my machine and compile the application locally. In Cordoba 2.5.0 window.open('http://www.myurl.nl', '_system'); works perfectly, it will open the link in the system browser.

    So my advice is to stop using PhoneGap Build and start compiling your application locally.

    I don't know if there is already a good solution that works for all platforms and if I use the Phonegap also supported well build service.

    You ask the Forum of phonegap, but it seems a matter of generation phonegap, the phonegap right build forum is https://forums.adobe.com/community/phonegap/build

    This response seems old, you must use cordova-plugin-inappbrowser to open external links in the browser of the phone

    Install it by adding this line in the config.xml file

    and open the phone's browser with

    cordova.InAppBrowser.open('http://www.myurl.nl','_system');,

  • How to open the menu at the top of my browser bar?

    How to open the menu at the top of my browser bar?

    Press the Alt key to temporarily show the menu bar. Or you can click to the right of the Tabstrip control bar and select menu bar so that it shows all the time.

  • How to open a virtual machine in the browser?

    Hello

    IAM using vmware ws 6.5 I have a some vm on it, I want to know how to open them in the browser like mozilla and work as we do on the virtual machines I want on my local

    private subnet

    Thank you

    The answer is the same.  VMware server can be managed via a web browser, but virtual machine does not work inside of a browser, they can only be managed and controlled through a browser.

    -KjB

    VMware vExpert

  • When I open the Firefox browser, as well as my homepage of opening, a new tab opens in the same time, how can I stop this please?

    This problem has only just begun and I don't know why. When I click the icon to open the Firefox browser, my homepage tab opens and another new tab opens to the sides of my Home Page tab. I checked and none are tube not characters in my address of the home page.

    This seems to take place (e.g., Firefox opens my home page AND a new tab at startup - unsolved).

    In case one of your extensions is in question, could test you mode without failure of Firefox? It is a standard diagnostic tool to disable some advanced features of Firefox and extensions. More info: questions to troubleshoot Firefox in Safe Mode.

    You can restart Firefox in Mode safe help

    Help > restart with disabled modules (Flash and other plugins still works)

    In the dialog box, click on 'Start mode safe' (not Reset)

    Any difference when using the Home key or open a new window (Ctrl + n)?

  • How can I open a workable browser?

    I can't open a browser window that allows me to enter a URL. When I open Fiefox seven browser windows open at the same time (and which were recently used), which none have menus or toolbars no accept a URL. I've seen these before minimum browsers but they are not what I need as they are limited to only a particular page. An update of the effects without change. Any suggestions on what to the difficulty? This is the first time that I was still happy to have IE (gulp) on my system.

    You can check for problems with the sessionstore.js and sessionstore.bak files in the profile folder of Firefox that store session data.

    Delete the sessionstore.js file possible sessionstore-# .js files with a number and sessionstore.bak in the Firefox profile folder.

    Delete sessionstore.js will cause App Tabs and groups of tabs open and closed tabs (back) to get lost and you will have to re-create them (take note or bookmarks).

Maybe you are looking for

  • No sound alert or notification

    I do not receive the alert or notification sounds. Also no ringtones iPhone 5 s V 9.3.1

  • Why I can't open a WPS on SkyDrive?

    Why I can't open a WPS on SkyDrive?I think I should be able to convert a WPS in DOCX file into the cloud.  In my humble OPINION, this task is an ideal application of cloud. GFH

  • Error-insert the disc when try to open the flash drive.

    Original title: why connect my USB drive as an external drive. When the flash drive is plugged into the USB port, it seems that it will be added as a flash drive, but then the following equipment added window indicates that an external hard drive has

  • Time zone in Webworks works do not properly with OS 7.1.0.342 on BB9810

    Hello developers, We are running on a question of bringing together the correct time on a BlackBerry 9810 (OS 7.1.0.342 b1149). In Germany, we are now GMT + 2 due to the DST and the Javascript framework is always at the wrong time (GMT + 1). On 9810

  • Remove the intersect stmt

    Hi friends,I want to delete the records in the table, that is to say the set of records returned after applying intersect stmt as below Select FK_SERIES_ID, FK_SYLLABUS_ID, FK_QUALIFICATION_ID, FK_CANDIDATE_MST_ID, D_REG_CAND_SYL_DIMENSION_test FK_DI