E50 Web Browser & Red Button behavior

Is there anyway to change the behavior of the Red Button (End Call) when in the web browser on the E50?
Currently, if the red button is accidentally hit it instantly closes the web browser and all typing and web pages are closed and lost. This happens often when trying to hit the C (Clear) Button to erase words or typing.
It would be much better to either prompt first with an "are you sure?" confirmation or a "push and hold" the red button to close the web browser application without confirmation.

For older, S60 2nd Edition based phones there's the "NoRedClose" app.
Perhaps you could request the developer to make an S60 3rd Edition version of it, too (if one is not available already).
http://my-symbian.com/s60/software/applications.php?fldAuto=1772&faq=2
Message Edited by petrib on 08-Dec-2006
07:29 PM

Similar Messages

  • Close Web Browser Window Button.

    Is there a way to create a button that users can click to close the web browser window?  Is it possible to do it through javascript embeded on the button action?
    Thank you.

    Hi Eric
    As I said earlier. Play with JavaScript all you like. Good luck in finding a JavaScript method that will work 100% of the time. I've very doubtful you will.
    The simplest test of JavaScript is the Alert, which you have tried. Often testing JavaScript will fail when testing locally. Sometimes it's because the Flash Security is blocking things. To fix that, click here and follow the instructions.
    As for the slide, it all depends on your Captivate settings. If you want it blanked you can insert an image or something that would cover the background. Nav bar is another story. Probably just have to live with it that way or turn it off if you don't wish to see it. Or maybe insert a caption or image that indicates the movie has finished and to please close the window (since it didn't close automatically).
    Cheers... Rick
    Click here for Adobe Authorized Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • Help me to resolve this URGENT: browser back button behavior

    Hi All
    How can I force my application to give the following error in click of back button of browser or backspace .
    Warning: Page has Expired The page you requested was created using information you submitted in a form. This page is no longer available. As a security precaution, Internet Explorer does not automatically resubmit your information for you.
    To resubmit your information and view this Web page, click the Refresh button.
    hmm I am using no-cache, no-store and expire '0', Mine is struts application with resin as App server.

    HEY, take it easy, sometime knowing the reason for a thing may help to find another solution for the same problem. We are here to help, some people really help other one only tries to. In any case there is no need to be rude, nobosy here is working for you or have an obligation to answer you.
    1.- this should be on the j2ee forum place, because is everyone posts here all other section will be empty of people and answers, so please help yo keep all the forums running well. And may get better answers on less time.
    2.- I assume you are uusing J2ee and not applets. That may be a 100% different thing to fix that.
    3.- Can you post some architecture of the pages call to see, its different if its a home page than its a result of nested calls.
    4.- I guess you should do something like this to solve your peoblem:
    if using html forms inside a jsp as I guess you are using. You can get the JSP be call from a servlet that introduce inside the form a unique random created value inside a hidden type input. so each time you press the back button the cached jsp will be called and the unique number wont match with the new attention requirement. All you need for that is a shared resource between the 2 servlets. Maybe a EJB or something. It depends a lot on how are you doing the pages call. for that we need to know that. In anycase the message you are trying to get os not from your app, but from the browser, so you may need to implement something like security certificates to have that, but if not you may use a patched own solution like the one I gave you.

  • How do you use forward and back button on mouse and use "zoom" in web browser.

    Ok so apparently this forum is ruled with an iron fist or something my very honest and truthful problems with these issues seem to have been instantly deleted in my last discussion?
    I'll try this once more.
    1) How do you use the forward and back button on a mouse without having to buy a product like Steer Mouse? There must be a way to do this without having to buy a program given it's such a useful feature that 99% of users need. I don't want to spend hours researching something that should already work. Any advice?
    2) How do you zoom in for web browsers like Chrome without it globally zooming in everything on the monitor (even background applications). I don't want to zoom in background applications. I want to be able to zoom in the web browser and still maintain all the features like the side bar, not just a little magnifying glass type thing.
    I'm currently zooming in with the CTRL-Middle Mouse button, but I can't find a way to use this feature so it's useful to browse the web it seems to not scale the browser correctly but rather is a global zoom. Any solution for this?

    Thanks so much!
    Like I said I am new to Apple products so it's still unclear to me which programs I do or don't need as I'm setting up and configuring all my software and devices.
    The Logitech Control Center appears to work perfectly for what I was trying to do!
    I accidently clicked "This helped me" instead of "This Solved My Question", sorry about that this was a solve!

  • I tried down loading mozilla firefox to use as a web browser. It was downloaded 100% then when prompted to "run" the error message comes up with a red cross and the message'This file is corrupted" and won't let me proceed. What do I do now?

    I tried down loading mozilla firefox to use as a web browser. It was downloaded 100% then when prompted to "run" An error message comes up with a red cross and the message'This file is corrupted" and won't let me proceed. What do I do now?

    It is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files by Firefox.<br />
    You can try to disable the real-time (live) scanning of files in your anti-virus software temporarily to see if that makes downloading work.
    See http://kb.mozillazine.org/Unable_to_save_or_download_files

  • How to work with Back Button of Web Browser for Flex Application

    Hi...........
    I am developing a Web Site for that I have created 10 MXML Components for 10 links I am using ViewStack in Home Page and I added the 10 components to this ViewStack and I am using 10 links for 10 Components
    My problem is that When I am going through links it's fine but in my Web Browser I am not getting Back Button enabled for previous page to go
    Please help me.............................. 

    Hi,
    Here a Flex3 example:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
         layout="absolute"
         creationComplete="initApp()">
         <mx:Script>
              <![CDATA[
                   import mx.events.BrowserChangeEvent;
                   import mx.managers.IBrowserManager;
                   import mx.managers.BrowserManager;
                   import mx.utils.URLUtil;
                   public var browserManager:IBrowserManager;
                   private function initApp():void {
                        browserManager = BrowserManager.getInstance();
                        browserManager.addEventListener(BrowserChangeEvent.BROWSER_URL_CHANGE, parseURL);
                        browserManager.init("", "Shipping");
                   private var parsing:Boolean = false;
                   private function parseURL(event:Event):void {
                        parsing = true;
                        var o:Object = URLUtil.stringToObject(browserManager.fragment);
                        if (o.view == undefined)
                             o.view = 0;
                        tn.selectedIndex = o.view;
                        browserManager.setTitle((tn.selectedIndex == 0) ? "Shipping" : "Receiving");
                        tn.validateNow();
                        var details:Boolean = o.details == true;
                        if (tn.selectedIndex == 0)
                             shipDetails.selected = details;
                        else
                             recvDetails.selected = details;
                        parsing = false;       
                   private function updateURL():void {
                        if (!parsing)
                             callLater(actuallyUpdateURL);
                   private function actuallyUpdateURL():void {
                        var o:Object = {};
                        var t:String = "";
                        if (tn.selectedIndex == 1) {
                             t = "Receiving";
                             o.view = tn.selectedIndex;
                             if (recvDetails.selected)
                                  o.details = true;
                        } else {
                             t = "Shipping";
                             o.view = tn.selectedIndex;
                             if (shipDetails.selected)
                                  o.details = true;
                        var s:String = URLUtil.objectToString(o);
                        browserManager.setFragment(s);
                        browserManager.setTitle(t);
              ]]>
         </mx:Script>
         <mx:TabNavigator id="tn" change="updateURL()" width="300">
              <mx:Panel label="Shipping">
                   <mx:CheckBox id="shipDetails" label="Show Details" change="updateURL()" />
              </mx:Panel>
              <mx:Panel label="Receiving">
                   <mx:CheckBox id="recvDetails" label="Show Details" change="updateURL()" />
              </mx:Panel>
         </mx:TabNavigator>
    </mx:Application>

  • Programatically pushing toolbar button in web browser

    Hi all, I've got a tool going via a c++ plugin. Pushing the tool button and using it works well in Acrobat, including inside an internet explorer browser window acrobat plugin.
    What i'm trying to do now is activate the tool programatically by sending a command over DDE from another application. The call i'm using is: AVAppSetActiveTool , which is the call that gets used when you push the button manually.
    This works when running in a standalone Acrobat, but the AVAppSetActiveTool seems to have no effect when the document is loaded in a web browser.
    I'm wondering what to do to get this working?? i've tried making the browser AVWindow a 'key' window as well as bringing it to the front with no avail.
    Is there some magic I need to do before I call AVAppSetActiveTool programatically that will allow it to work inside the web browser plugin.
    many thanks,
    zoltan

    interesting situation.
    As far as I know, there is no way to force a specific tool to be active when running in an external window (such as the browser).
    Leonard

  • I have Firefox web browser but I have lost the click on Firefox " button" at the top of the monitor screen and can't get it back. How do I do that?

    I have Mozilla Firefox as my web browser. However I have just lost my Firefox "button" on the top of my monitor screen and can't get it back. How do I do that?

    Hello andytuveson, right-click on an empty section of the Tab Strip and uncheck Menu Bar in the pop-up menu.
    see : [https://support.mozilla.org/en-US/kb/display-firefox-button-menu-instead-menu-toolbar Display the Firefox button menu instead of the menu toolbar]
    thank you

  • When I open a new tab, an unwanted website opens instead of my desired home page. THIS IS ONLY AN ISSUE WITH NEW TABS; (opening the web browser AND clicking on the home button frings me to my desired home page.)

    When I open a new tab, an unwanted website opens instead of my desired home page. THIS IS ONLY AN ISSUE WITH NEW TABS; (opening the web browser AND clicking on the home button frings me to my desired home page.)
    I have attached the url of the unwanted site.

    Use this add-on [https://addons.mozilla.org/en-US/firefox/addon/custom-new-tab/ '''Custom new tab'''].

  • Web Browser button

    I have a  HP Pavilion dv6-6c notebook,  My web page keeps popping up, sporadically, it will sometimes, take me out of my website and pop up fresh.  It had been suggested that my Web Browser button is stuck and suggested that I have it taken out.  Any suggestions to fix this problem and not having to have this button removed.

    Hi ,  Thank you for visiting the HP Support Forums and Welcome. I have looked into your issue about your HP Pavilion dv6-6c Notebook and having issue with  Internet Explorer being erratic. If you are using Internet Explorer, then go to the Tools tab  Internet Options  Advanced and select reset.  Then close and launch Internet Explorer again. Try that out to see if it fixes it. You could try a different browser to see if it still causes the same issue. Here is a document on how to resolve and prevent virus on Windows 7. The computers with Windows 7 come with Windows Defender, I would scan the complete computer, just to make sure.
    Please let me know.
    Thanks.

  • Face time,click on Red Button(X) logs U out of Call, new behavior

    Face time,click on leftmost Red Button(X) logs U out of Call, new behavior
    In the past, if I clicked on leftmost Red Button(X), the conversation window would shrink, but you do not log out of the call.
    How to alter this behavior?
    How to reprogram Face time buttons?

    Niraja,
    You need to open the popup on click on the button and in the popup model access class you can use HTML controller to this conroller you need to pass the URL of the webDynpro application.
    I have done exactly same thing before and will upload docuemnt to the wiki pages. Mean while you can explore further on the above idea.
    Raj Kristam

  • Hello i have a problem with onfocus function on ipad. i am trying to bring my cursor on a text box on a button click. It works fine with safari web browser but not on ipad. Need a solution.

    Hello i have a problem with onfocus function on ipad. I am trying to bring my cursor on a text box on a button click. It works fine with safari web browser but not on ipad. Need a solution.

    I don't think that a software update from Apple will solve the issues that you are having. You have a rogue installation. After you posted I have just done the following:
    Disk Utility can verify  my partitioned Volume (including my boot disk) AND REPAIR the non-boot disks on the same Volume without a glitch. It repairs the non-boot disks containing data smoothly.
    I have used Mail to send some mails from some Yahoo and Hotmail accounts to my Thunderbird client containing GMail accounts - absolutely normal.
    I have iLife '09 but my iMovie '09 and iPhoto '09 open in a jiffy and I see no issues here. I have 6GB RAM (Maximum) on an early 2008 Macbook Pro with a 750GB hard drive partitioned with 120GB reserved for the Boot Drive.
    I am sorry that I cannot help further but I am sure there must be a way to reinstall the software without having to revert to restoring your ML backup. I have two clones and if you have such I would attempt to do that through that rather than through Time Machine - that is of course if you have a cloned drive.
    Good luck!

  • I seem to have lost my home and bookmarks button along with others from my web browser

    I seem to have lost my home and bookmarks buttons, along with others, from my web browser

    <u>'''Can't see the Menu Bar'''</u> (File, Edit, View, History...Help)? Hold down the key ( key in OSX) and press the following letters in this exact order: V T M
    The Menu Bar should now be displayed permanently, unless you turn it off again (View > Toolbars). Turning the Menu Bar on and off is a new feature in version 3.6.
    <u>'''See other bars'''</u> under View > Toolbars. Clicking on one of them will place a check mark (display) or remove the check mark (not displayed).
    <u>'''To display the Status Bar'''</u>, View, then click Status bar to place a check mark (display) or remove the check mark (not displayed).
    <u>'''Full Screen mode'''</u>
    http://kb.mozillazine.org/Netbooks#Full_screen
    Also see:
    ''' [[Back and forward or other toolbar buttons are missing]]'''
    '''[[Navigation Toolbar items]]'''
    <u>'''''Other Issues''''': to correct security/stability issues</u>
    <u>'''Update Java'''</u>: your version 1.6.0_19; current version 1.6.0.20 (<u>important security update 04-15-2010</u>)
    ''(Windows users: Do the manual update; very easy.)''
    See: '''[http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates Updating Java]'''
    Do the update with Firefox closed.

  • What is the red button... "IHELP" surrounded by blue, green, red and yellow in the lower right hand corner of the browser window all about?

    What is the purpose of the red button... "IHELP" in the lower right hand corner of the browser window? Does it have any purpose? If so what? When clicked on there is no response.
    == This happened ==
    Every time Firefox opened

    No such button exists by default. It sounds like some extension installed in your Firefox, view/disable them from Tools -> Add-ons, '''Extensions'''

  • I can get safari to go back to old setting, can anyoner explain how to, i can go to a different web address or see the 3 colors the green ,yellow, or red buttons to click out, how do i reset, and i have went to viewfull screen nothing anyone?

    i can get safari to go back to old setting, can anyoner explain how to, i can go to a different web address or see the 3 colors the green ,yellow, or red buttons to click out, how do i reset, and i have went to viewfull screen nothing anyone?

    http/:www.apple.com/support/safari
    this is not mbp, safari, or lion community

Maybe you are looking for

  • Can two different computers have the same Firefox profile? Schema/themes/bookmarks, etc?

    I would like the same settings mentioned above on my desktop and laptop. Any ideas? Thanks-

  • BEx Error - The specified value is out of range

    Hi We areBI 7.0 (SP14) & recently installed SAPGUI 7.10 (patch 7). When I select a query (Path: Info Areas --> WMH Warehouse Management -- > Shipping KPIu2019s --> Order Turnaround in Detail) and give date range greater than 2 weeks, then I can a cri

  • Custim repeats calender apps for the ipad

    I do not want any that are very expenstive. the default calender app is nice but not a lot of ways to customize it. the calender just needs the times and has to have custom repeat options. is calpad worth the price? i tried the lite version and filli

  • Time Capsule to Apple TV

    So I have set up the new Time Capsule baked up everything, created a new network and put the ATV on it but I don't seem to be able to connect to the Capsule with the ATV. The macbooks on. iTunes is cranked up.....what have I missed?

  • How to access two entity managers from two different servers?

    Hello My test programm is trying to access two glassfish application servers (gf 2.1). The code base of these servers is the same, the persistence layers are just accessing different databases -> one ist the staging/test system, the other the live se