regarding navigationMovement() mtehod

I used navigationMovement() to swipe left or right screen using transition between slides, first time I swipe the screen to the right the code works, but when I slipped twice then my code does not work.  Here is my code

public final class MyScreen extends MainScreen
{
    private boolean _pushed;
    /**
     * Creates a new MyScreen object
     */
    public MyScreen()
    {
        // Set the displayed title of the screen
        setTitle("MyTitle");
        add(new LabelField("A class extending the MainScreen class, which provides default standard"));
    }
    protected boolean navigationMovement(int dx,int dy,int status,int time)
    {
        try
        {

            if(dx > 0)
            {
                UiApplication.getUiApplication().invokeLater(new Runnable() {

                    public void run() {
                        // TODO Auto-generated method stub
                        UiApplication.getUiApplication().popScreen(UiApplication.getUiApplication().getActiveScreen());
                        push();
                    }
                });

                //counter++;
                //labl.setText("counter="+counter);
                //System.out.println("="+counter);
            }
            if(dx < 0)
            {
                UiApplication.getUiApplication().invokeLater(new Runnable() {

                    public void run() {
                        // TODO Auto-generated method stub
                        UiApplication.getUiApplication().popScreen(UiApplication.getUiApplication().getActiveScreen());
                        pushsecond();     

                    }
                });

                //counter--;
                //labl.setText("counter="+counter);
                //System.out.println("="+counter);
            }
            if(dy < 0)
            {
                 System.out.println("UP : ");
                // Dialog.alert("UP : ");
            }
            if(dy > 0)
            {
                 System.out.println("DOWN : ");
                 //Dialog.alert("DOWN");
            }
            this.invalidate();
        }
        catch(Exception e)
        {
            System.out.println("WError:"+e.toString());
        }
        return true;
    }
    public void pushsecond() {
        // TODO Auto-generated method stub
            MyPreview screen = null;
            TransitionContext transitionContextIn;
            TransitionContext transitionContextOut;

            UiEngineInstance engine = Ui.getUiEngineInstance();
            screen = new MyPreview();  

            transitionContextIn = new TransitionContext(TransitionContext.TRANSITION_SLIDE);

            transitionContextIn.setIntAttribute(TransitionContext.ATTR_DURATION, 500);
            transitionContextIn.setIntAttribute(TransitionContext.ATTR_DIRECTION, TransitionContext.DIRECTION_LEFT);

            transitionContextOut = new TransitionContext(TransitionContext.TRANSITION_SLIDE);
            transitionContextOut.setIntAttribute(TransitionContext.ATTR_DURATION, 500);
            transitionContextOut.setIntAttribute(TransitionContext.ATTR_DIRECTION, TransitionContext.DIRECTION_RIGHT);
            transitionContextOut.setIntAttribute(TransitionContext.ATTR_KIND, TransitionContext.KIND_OUT);
                    engine.setTransition(null, screen, UiEngineInstance.TRIGGER_PUSH, transitionContextIn);
                    engine.setTransition(screen, null, UiEngineInstance.TRIGGER_POP, transitionContextOut);

            synchronized(UiApplication.getEventLock())
            {
               UiApplication.getUiApplication().pushScreen(screen);
                _pushed = true;
            }    

    }
    public void push() {
        // TODO Auto-generated method stub
        Preview screen = null;
        TransitionContext transitionContextIn;
        TransitionContext transitionContextOut;

        UiEngineInstance engine = Ui.getUiEngineInstance();
        screen = new Preview();
        transitionContextIn = new TransitionContext(TransitionContext.TRANSITION_SLIDE);

        transitionContextIn.setIntAttribute(TransitionContext.ATTR_DURATION, 500);
        transitionContextIn.setIntAttribute(TransitionContext.ATTR_DIRECTION, TransitionContext.DIRECTION_RIGHT); 

        transitionContextOut = new TransitionContext(TransitionContext.TRANSITION_SLIDE);
        transitionContextOut.setIntAttribute(TransitionContext.ATTR_DURATION, 500);
        transitionContextOut.setIntAttribute(TransitionContext.ATTR_DIRECTION, TransitionContext.DIRECTION_RIGHT);
        transitionContextOut.setIntAttribute(TransitionContext.ATTR_KIND, TransitionContext.KIND_OUT);
                engine.setTransition(null, screen, UiEngineInstance.TRIGGER_PUSH, transitionContextIn);
                engine.setTransition(screen, null, UiEngineInstance.TRIGGER_POP, transitionContextOut);

        synchronized(UiApplication.getEventLock())
        {
           UiApplication.getUiApplication().pushScreen(screen);
            _pushed = true;
        }           

    }
}

I understand your requirement.  What I'm trying to do here is you help only to find a problem in your code, by obtaining allows you to verify things are working properly or suggesting tests that will help determine where the problem actually is.  The checks that I asked you to do are exactly the same as I would do in your situation.

In fact, I suspect the code you provided works very well - the problem is elsewhere.  So given what we know, we cannot tell you where the problem is at the moment in any case!  No, this does not mean that I want you to provide us with all your code.  If you work through a logical process to eliminate the possible causes of the problem, you will discover what the problem is yourself.

Think you make us wait is fix your code.  Rather, it is much better if we help you fix your own code isn't?  You will then use these debugging skills for your future problems.

No more questions.  What screen is exposed at that point, it does not work?  Which screen will be the trackpad in interaction with?

Tags: BlackBerry Developers

Similar Questions

  • NavigationMovement problem of strom.

    Hello

    protected boolean navigationMovement(int dx,                                     int dy,                                     int status,                                     int time)
    

    I use this method in strom to run operation, but when I m debugging this method with strom device, it is not invoke.

    I want to execute an operation to move item on which I selected. Is there another method I can use to perform the operation on the move.

    Thank you

    Kind regards

    Neev...

    Take a look at the touchEvent() method in the classes of the screen, as well as the TouchEvent class.

  • Using navigationMovement() as a trackpad/trackball mouse

    Greettings and regards other developers.  a few quick details I use the blackberry JDE 5.0 on Eclipse Galileo, I created a method of mouse for pavers and balls.  Try to expand my horizons of sale, two possible losses haunt my thoughts.

    side 1: the mouse works fine until you roll two directions at once, example left and upwards at the same time moves alone, he left or up not both.

    side 2: the touchpad does not roll like the balloon, this method will probably fine work for the ball, but not the key.

    This is the code for my navigationMovement() method

    protected boolean navigationMovement(int dx,int dy,int status,int time)
        {
            super.navigationMovement(dx, dy, status, time);
            if (!mouseOn)                               //places mouse on first run but doesnt repeat
                {
                mouses.addElement(new Sprite(Utility.SCREEN_WIDTH / 2, Utility.SCREEN_HEIGHT / 2));
                mouseOn = true;
                }
            Sprite f = (Sprite) mouses.firstElement();           //sprite class updates x and y coordinates                                                                               //Focussing on the x/y of the mouse(i know using a vector is silly here)
            f.x+= (dx * 10);
            f.y+= (dy * 10);    //moves the mouse according to dx/dy input
    
            if((f.x + mouse.getWidth()) > Utility.SCREEN_WIDTH) f.x = Utility.SCREEN_WIDTH - mouse.getWidth();
            else if(f.x < 0) f.x = 0;
            if((f.y + mouse.getHeight()) > Utility.SCREEN_HEIGHT) f.y = Utility.SCREEN_HEIGHT - mouse.getHeight();
            else if(f.y < 0) f.y = 0;        //keeps the mouse from scrolling off screen
    
            invalidate();     //update screen
            return true;
        }
    

    Is there a way to make the trackpad act as the trackball with this method, or it will be slow and jerky?  I know that the trackpads have magnitude and direction.  So I hope that's not too bad, it seems to work on the Simulator, but I need a tester phone or real app ready to try this for me.

    More importantly, how do I get the mouse to move both directions if the ball goes both directions? I have some ideas on what may be an if statement to check if both directions are going at once, then run both directions.  But it seems that both must be running.

    Thanks in advance.

    -Andy

    I just realized this post was a little out of place, thanks to blackberry api I got including this one.

  • my PC Backup, Reg Clean Pro &amp; Research protect all piggyback on my Installer Firefox 26, for which I had to replace my Norton caveat regarding security issues.

    my PC Backup, Reg Clean Pro & Research protect ALL grafted onto my Installer Firefox 26, for which I had to replace my Norton caveat regarding security issues.

    Based on your research, I also substitute a Norton Security warning.

    I have windows 7 and complete Norton Security

    You downloaded firefox from the official site. Sometimes the software gets supplied with malware or adware, as in your case.
    In some cases, I recommend uninstalling (your software also mentioned), FF data directory deleting and then reinstalling FF of mozilla.org

  • Yes, another question regarding the freezing of Safari - EtreCheck report included

    Yes, another question regarding the freezing of Safari.

    From a little over a month (I think), Safari started freezing regularly whenever I want to open new tabs or switch between tabs. I found myself to leave the program several times per day / hour. I can't identify any specific common cause (other than my MacBook being old) or any new software or updates that might have initiated the question. At first I thought he might have many tabs, I tried to open, but recently it happens even with only a few tabs open.

    I worked through the steps I found in this forum and others: empty the cache, start in safe mode, etc nothing works.

    Based on the previous suggestions, I have downloaded and run EntreReport which I included below. The note and maybe just a distraction, but EntreReport has crashed three times tonight, before he was able to produce the sub report. I ran the report after restarting my system with no other programs running.

    Suggestions are welcome at this stage because I want to start using Chrome or Firefox because I like the transfer procedure between my devices.

    Thank you in advance.

    Ben

    -----------

    EtreCheck version: 2.9.11 (264)

    Report generated 2016-04-28 22:48:58

    Download EtreCheck from https://etrecheck.com

    Time 05:45

    Performance: Below average

    Click the [Support] links to help with non-Apple products.

    Click [details] for more information on this line.

    Click on the link [check files] help with unknown files.

    Problem: Apps are broken

    Description:

    Safari freeze when opening new tabs / switching between the tabs.

    Hardware Information:

    MacBook Pro (15-inch, mid 2009)

    [Data sheet] - [User Guide] - [warranty & Service]

    MacBook Pro - model: MacBookPro5, 3

    1 2.66 GHz Intel Core 2 Duo CPU: 2 strands

    4 GB of RAM expandable - [Instructions]

    BANK 0/DIMM0

    OK 2 GB DDR3 1067 MHz

    BANK 1/DIMM0

    OK 2 GB DDR3 1067 MHz

    Bluetooth: Old - transfer/Airdrop2 not supported

    Wireless: en1: 802.11 a/b/g/n

    Battery: Health = battery check - Cycle count = 389

    Video information:

    NVIDIA GeForce 9400M - VRAM: 256 MB

    Color LCD 1440 x 900

    NVIDIA GeForce 9600M GT - VRAM: 256 MB

    Software:

    OS X El Capitan 10.11.4 (15E65) - since startup time: less than an hour

    Disc information:

    FUJITSU MJA2320BH FFS G1 disk0: (320,07 GB) (rotation)

    EFI (disk0s1) < not mounted >: 210 MB

    Macintosh HD (disk0s2) /: 319,21 go-go (54,93 free)

    Recovery HD (disk0s3) < not mounted > [recovery]: 650 MB

    HL-DT-ST DVD - RW GS23N)

    USB information:

    Built-in ISight from Apple Inc..

    Card reader Apple

    Apple Inc. BRCM2046 hub.

    Apple Inc. Bluetooth USB host controller.

    Apple Inc. Apple keyboard / Trackpad

    Computer, Inc. Apple IR receiver.

    Guardian:

    Mac App Store and identified developers

    Unknown files:

    ~/Library/LaunchAgents/com. GoodShop.updater.plist

    ~/Library/application support/GoodShop/updater

    A unknown file found. [Check files]

    Kernel extensions:

    / Library/Application Support/Symantec/virus

    [no charge] com.symantec.kext.SymAPComm (11.1.2f17 - 2015-05-23) [Support]

    / Library/Extensions

    [no charge] expressvpn.tap (20150118 - 2016-04-12) [Support]

    [loading] expressvpn.tun (20150118 - 2016-04-12) [Support]

    / System/Library/Extensions

    [no charge] com.DYMO.usbprinterclassdriver.kext (1.1 - SDK 10.9-2016-04-12) [Support]

    com.Silex.driver.sxuptp [no charge] (1.5.1 - 2016-04-12) [Support]

    com.symantec.kext.internetSecurity [no charge] (1.3.2 - 2016-04-12) [Support]

    com.Symantec.kext.IPS [no charge] (3.2 - 2016-04-12) [Support]

    Startup items:

    CMA: path: / Library/StartupItems/cma

    RosettaStoneLtdDaemon: Path: / Library/StartupItems/RosettaStoneLtdDaemon

    Startup items are obsolete in OS X Yosemite

    Launch system officers:

    [loaded] 8 tasks Apple

    [loading] 165 tasks Apple

    [operation] 65 tasks Apple

    Launch system demons:

    [loaded] 45 tasks Apple

    [loading] 161 tasks Apple

    [operation] 83 tasks Apple

    Launch officers:

    [no charge] com.adobe.AAM.Updater - 1.0.plist (2016-04-28) [Support]

    [failure] com.adobe.ARMDCHelper.cc24aef4a1b90ed56a... plist (2015-10-31) [Support]

    [operation] com.epson.Epson_Low_Ink_Reminder.launcher.plist (2015-01-19) [Support]

    [loading] com.epson.esua.launcher.plist (2015-06-29) [Support]

    [operation] com.epson.eventmanager.agent.plist (2014-09-21) [Support]

    [loading] com.google.keystone.agent.plist (2016-03-01) [Support]

    [operation] com.mcafee.menulet.plist (2016-03-23) [Support]

    [operation] com.mcafee.reporter.plist (2016-03-23) [Support]

    [loading] com.oracle.java.Java - Updater.plist (2013-11-14) [Support]

    [operation] com.symantec.uiagent.application.plist (2010-11-16) [Support]

    [operation] com.trusteer.rapport.rapportd.plist (2016-03-19) [Support]

    Launch demons:

    [loading] com.adobe.ARMDC.Communicator.plist (2015-10-31) [Support]

    [loading] com.adobe.ARMDC.SMJobBlessHelper.plist (2015-10-31) [Support]

    [loading] com.adobe.fpsaud.plist (2016-04-15) [Support]

    com.DYMO.pnpd.plist [no charge] (2014-10-16) [Support]

    [loading] com.expressvpn.tap.plist (2016-01-27) [Support]

    [loading] com.expressvpn.tun.plist (2016-01-27) [Support]

    [loading] com.google.keystone.daemon.plist (2016-03-01) [Support]

    [loading] com.macpaw.CleanMyMac3.Agent.plist (2016-04-18) [Support]

    [operation] com.mcafee.cspd.plist (2015-05-08) [Support]

    com.mcafee.ssm.ScanFactory.plist [no charge] (2016-03-16) [Support]

    com.mcafee.ssm.ScanManager.plist [no charge] (2016-03-16) [Support]

    [operation] com.mcafee.virusscan.fmpd.plist (2016-03-22) [Support]

    [loading] com.microsoft.office.licensing.helper.plist (2010-08-25) [Support]

    [loading] com.oracle.java.Helper - Tool.plist (2013-11-14) [Support]

    [loading] com.symantec.MissedTasks.plist (2009-11-10) [Support]

    [loading] com.symantec.Sched501 - 1.plist (2014-08-27) [Support]

    [loading] com.symantec.Sched501 - 4.plist (2015-01-08) [Support]

    [loading] com.symantec.Sched501 - 5.plist (2015-01-08) [Support]

    [loading] com.symantec.avscandaemon.plist (2009-10-10) [Support]

    [operation] com.symantec.diskMountNotify.plist (2009-09-14) [Support]

    [loading] com.symantec.navapd.plist (2009-09-14) [Support]

    [loading] com.symantec.navapdaemonsl.plist (2009-11-14) [Support]

    [operation] com.symantec.sharedsettings.plist (2009-07-22) [Support]

    [operation] com.symantec.symSchedDaemon.plist (2009-11-10) [Support]

    [operation] com.symantec.symdaemon.plist (2009-03-27) [Support]

    [operation] com.trusteer.rooks.rooksd.plist (2016-03-19) [Support]

    User launch officers:

    com [running]. GoodShop.updater.plist (2013-09-24) [Support]

    [loading] com.adobe.AAM.Updater - 1.0.plist (2015-10-25) [Support]

    [failure] com.facebook.videochat. [entrenched passage] .plist (2014-08-09) [Support]

    [loading] com.macpaw.CleanMyMac3.Scheduler.plist (2016-04-25) [Support]

    Items in user login:

    iTunesHelper Application (/ Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)

    Application of Google Reader (Google Drive.app/Applications /)

    Dropbox application (/ Applications/Dropbox.app)

    ExpressVPN application (/ Applications/ExpressVPN.app)

    CleanMyMac 3 Menu Application (/ Applications/CleanMyMac 4.app/Contents/MacOS/CleanMyMac 3 Menu.app)

    Other applications:

    [ongoing] com.DYMO.pnpd

    [ongoing] com.getdropbox.dropbox.83552

    [ongoing] com.google.GoogleDrive.81632

    [ongoing] com.macpaw.CleanMyMac3.Menu.80672

    [ongoing] com.mcafee.ssm.ScanManager

    [ongoing] com.mcafee.virusscan.ssm.ScanFactory

    [loading] 420 tasks Apple

    [operation] 193 tasks Apple

    Plug-ins Internet:

    o1dbrowserplugin: 5.41.3.0 - 10.8 SDK (2015-12-16) [Support]

    Default browser: 601 - SDK 10.11 (2016-04-18)

    Flip4Mac WMV Plugin: 2.4.4.2 (2012-12-25) [Support]

    DYMO Safari Addin: Unknown - SDK 10.9 (2014-10-26) [Support]

    AdobePDFViewerNPAPI: 15.010.20060 - SDK 10.8 (2016-03-11) [Support]

    FlashPlayer - 10.6: 21.0.0.226 - SDK 10.6 (2016-04-25) [Support]

    Silverlight: 5.1.30514.0 - SDK 10.6 (2015-09-16) [Support]

    QuickTime Plugin: 7.7.3 (2016-04-12)

    Flash Player: 21.0.0.226 - SDK 10.6 (2016-04-25) [Support]

    googletalkbrowserplugin: 5.41.3.0 - 10.8 SDK (2015-12-11) [Support]

    iPhotoPhotocast: 7.0 (2010-11-15)

    AdobePDFViewer: 15.010.20060 - SDK 10.8 (2016-03-11) [Support]

    SharePointBrowserPlugin: 14.3.0 - SDK 10.6 (2013-02-09) [Support]

    SiteAdvisor: 2.0 - 10.1 SDK (2015-03-30) [Support]

    JavaAppletPlugin: Java 8 updated 77 03 (2016-04-18) check the version of build

    Safari extensions:

    AdBlock - BetaFish, Inc. - https://getadblock.com (2016-03-30)

    Add to wishlist Amazon - Amazon.com - http://www.amazon.com/wishlist?ref=cm_wl_saf_ext (2011-07-09)

    GoodShop - GOODSEARCH LLC - http://www.GoodSearch.com (2013-09-24)

    SiteAdvisor - McAfee - http://www.siteadvisor.com (2015-09-28)

    PIN button - Pinterest, Inc. - http://www.pinterest.com/ (2015-07-03)

    3rd party preference panes:

    Flash Player (2016-04-15) [Support]

    Flip4Mac WMV (2012-05-15) [Support]

    Growl (2015-09-16) [Support]

    Java (2016-04-18) [Support]

    Norton\nQuickMenu (2010-11-16) [Support]

    Trusteer Endpoint Protection (2016-04-18) [Support]

    Time Machine:

    Time Machine not configured!

    Top of page process CPU:

    5% WindowServer

    1% kernel_task

    0% fontd

    0% SymDaemon

    Top of page process of memory:

    445 MB kernel_task

    Mdworker (18) 430 MB

    164 MB Google Reader

    Dropbox 123 MB

    VShieldScanner (4) 66 MB

    Virtual memory information:

    106 MB free RAM

    4.15 GB used RAM (770 MB cache)

    6 MB used Swap

    Diagnostic information:

    April 28, 2016, 22:42:12 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-28-224212_[redacted].crash

    com.etresoft.EtreCheck - /Applications/EtreCheck.app/Contents/MacOS/EtreCheck

    28 April 2016, 22:21:42 self-test - spent

    April 28, 2016, 19:49:12 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-28-194912_[redacted].crash

    April 28, 2016, 19:47:10 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-28-194710_[redacted].crash

    April 28, 2016, 19:38:58 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-28-193858_[redacted].crash

    April 28, 2016, 19:04:58 ~/Library/Logs/DiagnosticReports/rapportd_2016-04-28-190458_[redacted].crash

    /Library/rapport/*/rapportd.app/Contents/MacOS/rapportd

    April 28, 2016, 06:06:59 /Library/Logs/DiagnosticReports/Safari_2016-04-28-060659_[redacted].hang

    /Applications/Safari.app/Contents/MacOS/Safari

    April 28, 2016, 12:48:04 AM /Library/Logs/DiagnosticReports/SubmitDiagInfo_2016-04-28-004804_[redacted].cpu _resource.diag [details]

    / System/Library/CoreServices/SubmitDiagInfo

    April 27, 2016, 22:01:10 /Library/Logs/DiagnosticReports/Safari_2016-04-27-220110_[redacted].hang

    April 27, 2016, 21:57:37 /Library/Logs/DiagnosticReports/Safari_2016-04-27-215737_[redacted].hang

    April 27, 2016, 19:05:50 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-27-190550_[redacted].crash

    April 27, 2016, 06:57:28 ~/Library/Logs/DiagnosticReports/Airmail 2_2016-04-27-065728_ .crash [deleted]

    / Applications/Airmail 2.app/Contents/MacOS/Airmail 2

    26 April 2016, 19:48:11 /Library/Logs/DiagnosticReports/Safari_2016-04-26-194811_[redacted].hang

    Remove all apps viruses you have

    Symantec, McAfee, Norton...

    CleanMyMac3

  • I can get the signed to Hotmail, but I can't read my mail. Sorry, there is a problem with Hotmail right now Hotmail was not able to complete this application. Microsoft may contact you regarding any issue you are reporting.

    There are ten days began to have problems with Hotmail. Could isgn in but get the following message is displayed.
    Sorry, there is a problem with Hotmail now
    Hotmail was not able to complete this application. Microsoft may contact you regarding any issue you are reporting.
    I can email again and again my contacts but thats all.
    I then tried to do with Internet Explorer and it works fine. I don't like it is because I have problems with some Web sites.

    Clear the cache and cookies from sites that cause problems.

    "Clear the Cache":

    • Tools > Options > advanced > network > storage (Cache) offline: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Tools > Options > privacy > Cookies: "show the Cookies".

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • Something Apple regarding 10.11.4 gel and requiring a hard reboot?  I had several incidents since the upgrade (supposedly) gel to 10.11.4

    I'm having a problem with my Pro MacBrook retina (end of 2013).  Since the upgrade is supposed to 10.11.4, I eperienced several system freezes; all

    that required a hard reboot.  The machine is Core i7 to 2.3 gHz, 16 GB 1600 mHz DDR3 ram, 512 GB ssd.  Safari v.9 (1).  It is obvious that the other users are

    having the same experience - any word from Apple regarding a solution?  I expect this kind of thing from Windows, not Mac machine...

    There is no systemic problem with 10.11.4 gel. Where are you this information? If you get it from forums like this one do not forget that the few people who post here post about issues they know. Their messages do not represent millions of people, not problems.

    A lot of questions like yours goes back to 3rd party apps incompatible or drivers that have not been updated for 10.11.4. Provide details of your question and we will try to help you.

  • I get this notice when I try to send an e-mail: Windows Live Hotmail was not able to complete this application. Microsoft may contact you regarding any issue you are reporting. When I use Safari, I have no problem. in English

    I get this notice when I try to send an e-mail: Windows Live Hotmail was not able to complete this application. Microsoft may contact you regarding any issue you are reporting. When I use Safari, I have no problem.

    Clear the cache and cookies from sites that cause problems.

    "Clear the Cache":

    • Firefox > Preferences > advanced > network > storage (Cache) offline: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Firefox > Preferences > privacy > Cookies: "show the Cookies".

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions of the origin of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • Firefox is not fully load site Barclaycard of authentication. It load regarding the demand for certain letters in my password but does not load the button 'Submit', so I can't continue with my purchase and I switch to IE8 browser to buy whatever it is ov

    Firefox is not fully load site Barclaycard of authentication. It load regarding the demand for certain letters in my password but does not load the button 'Submit', so I can't continue with my purchase and I switch to IE8 browser to buy anything on the internet. Clues?

    This has happened

    A few times a week

    Is a few weeks ago

    Your UserAgent string in Firefox is totally messed up by another program that you have installed and Barclays does not know you use Firefox 3.6.6 - it is probably similar to IE 6.0 on this site.
    http://en.Wikipedia.org/wiki/USER_AGENT

    type of topic: config in the URL bar and press ENTER.
    If you see the warning, you can confirm that you want to access this page.
    Filter = general.useragent.
    Preferences are "BOLD", a line at a time, and then select reset, right click
    Then restart Firefox

  • HP laptop: HP telephone scam? Regarding the laptop computer viruses

    I just got a phone call from someone claiming to be with the HP support. On my phone caller ID showed as unknown caller. The man said that HP has determined that I got a virus in my laptop via social media.

    Anyone got some these calls? I'm pretty sure it's a scam, but do not want to double check. I asked the man on the phone to give me a call back number in case we were cut off. The number he gave me was 888-883 - 6944.

    Thank you

    Hello there @paularose,

    It has come to our attention that the person who contacted you is not with a valid HP company we know, nor the 888 number is affiliated with what be HP. Please, don't try to contact the number or give the appellant any information regarding your personal or your products. HP is aware of these false figures and it is not recommended to give them all the information.

    We apologize that you are getting these calls.

    Thank you

    Moderator of HP

  • in regard to my secret question and answer

    Hey,.

    I'm Nathan Rahul of the Nepal

    I know that my apple ID and also his password, but I forgot my secret question answer.

    Kindly tell me how I can do...

    Thank you and best regards,

    Rahul

    See here: https://support.apple.com/en-us/HT201485

    -AJ

  • With regard to F10 - 136 - straps on screen

    Hello

    I've been thinking about upgrading the bios, but my bios version 1.30 and on page Web from Toshiba is available only in version 1.20. It's really upwards (downwards) rank of the bios?
    I still have this straps on screen, and the instalation of the display driver does not help, because when the driver is installed the computer does not (office is not appear at all) so it can walk alone without driver or in safe mode

    Thanks Markus77

    Concerning

    Hello

    If you're on BIOS version 1.30 then you should not download the version currently on the site Web of Toshiba.

    Regarding your driver problem, it is quite possible that your current driver is no longer up-to-date that only available on the Toshiba site so I would not recommend this download at this stage.

    Your best option would be to take a safe backup of your files/data and restoring your operating system from the recovery DVD. This will return your system to its correct state, and as a result, your screen should work fine.

    If you still have display problems after the restoration of the operating system, then you may have a hardware failure should be corrected under your warranty.

    Kind regards

  • With regard to P40 Yoga M.2 connection. What is SATA or PCIe?

    My question is in what regards connection m2 on the motherboard for Lenovo's Yoga P40. Is the SATA PCIe m2 connection or a connection hybrid? No where on any of the PDF files produced gives the specifications that the connection type is, other that to say that there is a link to m2. Also please confirm that there is a size restriction of Bay "2242" size m2.

    The m2 in the P40 slot is SATA, not PCIe and is a size 2242. The answer has not changed since a few days ago.

    There are not many options here unfortunately. Everything is available in M.2 2242 rests on the SATA size which should make it easier.

  • HP Pavilion g6-2301ax: regarding the batteries

    My Baterry details-

    Type of warranty: 1

    Cycle count: 450 / 300

    Manufacturer: 13-15

    Age of the battery: n/a

    [personal information]

    Temperature: 34 ° C

    Capacity: 4400 mAh

    Full load: 3721 mAh (84%)

    Remaining capacity: 2486 mAh

    Current:-1385 my

    Voltage to the terminals: 11139 mV

    Nominal voltage: 10800 mV

    Cell voltage mV 1: 3708

    Cell voltage mV 2: 3720

    Cell voltage mV 3: 3711

    Cell voltage mV 4: 0

    Status: C0

    AC: No.

    Number of CT: 6CGFK03WY3QRJG

    Here, over voltage of the cell 4: 0 mV and Cycle count: 450 / 300,

    I just want to know the details of my baterry and the details of the foregoing "BOLD".

    It's time to change my battery and buy a new one?

    Please help me Sir.

    Hello

    Looks like it's much safer replace the battery to avoid damage to your computer. As mentioned above, could be 4,5 and 6 cells are dead which can cause short-circuit somehow.

    Kind regards.

  • Regarding the problem with network controllers

    Hello every1!

    I had a problem with the network controllers. I recently installed new windows in my laptop. Ultimate(64-bit) Windows 7 is. Everything was fine, except the LAN drivers. I got a drivers pack solution for drivers. We updated all the drivers except the network controller.

    When I bought my new hp Pavilion g6-1201tx a few years, I had a backup of my DVD players. But, due to virus attack, it has corrupted me n later when I tried to reinstall my windows, I had no option but to the install from the cd of windows 7.

    Now, my problem is that in the notification of networks, it shows that "network controller not installed driver. Even my bluetooth does not detect my wifi personal connection he used to before you reinstall windows. I am not able to find the appropriate driver from the hp site configuration too. His humble request to help me solve my problem regarding.

    Thank you.

    You are the very welcome.

    Here are links to the drivers you need.

    Wireless:

    http://h10025.www1.HP.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-108905-1&cc=us&DLC=en&LC=en&OS=4063&product=5163244&sw_lang=

    Bluetooth:

    http://h10025.www1.HP.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-101174-1&cc=us&DLC=en&LC=en&OS=4063&product=5163244&sw_lang=

Maybe you are looking for

  • How to upgrade

    I have an iphone 4S. I want to know can this update to ios 8, because many applications asking for system requirment ios 8. can I know that this can be upgraded? now I'm runinng ios 7.1.2

  • None put into Hibernate or standby in Windows Vista on Portege M200

    Hello I use a M200 with 2 GB of RAM, latest BIOS and Windows Vista business. As well as a few minor problems, I can't go to the energy saving Mode or Hibernation.After entering the command, the screen turns black and either nothing happens, or I got

  • my laptop is messed up after installing Windows Vista Service Pack 2

    My internet does not work and a message came up saying "internet explore has stopped working, there is a problem, windows will let you know if there is a solution" a box then came advising me to install Windows Vista Service Pack 2 and I did and now

  • All the icons and shortcuts are gone from my computer screen.

    I down loaded a wiget google today and subsequently, I have experienced this problem. All my programs and all shortcuts are availble by Explorer and open the folder deshtop. They work very well, but the computer screen does not display them. When I o

  • Amazon India

    I want to buy the HP 15-r014TX laptop. I want to know if I buy this laptop form "Amazon.in" in INDIA HP does the warranty cover?