Unable to click on any button

Hi all
I encounter a problem, when I go to the URL of PIA, but when I sign in and I am unable to click anything thing such as update details. Why did this happen? Can anyone please assist me please.
Thanks

We had an issue similar to this.
It was caused by the user re-clicking a link/button before the page had time to load. It caused the page to load with errors although nothing looked wrong. But none of the controls worked when clicked.
Basically, it was caused by the user not waiting long enough.
Somtimes, even when the twirling thing in the right top corner has stopped, the bottom loading bar is still working. Have to wait till the bottom loading bar is finished.

Similar Messages

  • When I open firefox 4 beta the webpage does not load and i am unable to click on any buttons or access menus

    This has only started happening today. When I start firefox 4 beta it opens and begins to load my homepage (google.co.uk) but the page never fully loads and firefox freezes. I am unable to click on any buttons on the navigation bar or access menus. Keyboard shortcuts are also unresponsive.
    All that I am able to do on the browser is to use the three window buttons in the top right of the screen (minimise, maximise and close).
    After closing the window if I try to open it again I get a message saying that Firefox is already running, but not responding. Once going into task manager and stopping firefox under the processes tab and then restarting firefox the window again freezes as soon as it opens.
    I have tried restarting my computer and reinstalling the beta but with no success. I am still able to use firefox 3.6.13 as well as chrome with no problems.
    Any help would be much appreciated

    I had this too. Starting firefox in safe-mode and disabling all add-ons solved the problem. After re-enabling all add-ons did not bring back the problem.

  • Spinning Beach Ball at first click on any button

    Started out as spinning beach ball on the desk top but pointer was visible and moving on bars but not functional, would drop down but would not force quit. Shut down the hard way and now the SBB is on with the first click of any button and stays on everywhere. Have plenty of RAM and warranty just passed. Please give me suggestions. Thanks rohnjon
    MacOSXpanther   Mac OS X (10.3)  

    Repair Permissions.
    Go to Mac HD and open it and then choose Applications and open it then scroll down to Utilities and Open it then go to Disk Utility and when you open it click and highlight Mac HD and at the bottom choose Verify Permissions, after it completes this then click on Repair Permissions.
    If you can't do this and are unable to retrieve your system.
    I am afraid you might have to use the Disc's and do one or the other options Either Archive Install or Erase Install.
    I Know this is a pain, but not knowing exactly what all you have done I suggest a complete Erase Install.
    This will wipe everything off your hard drive and will reInstall your operating system. I f you had any other 3rd party programs you will have to Install them again.
    Cheers Don

  • When i launch Bridge CC and make first click on any button, the program freezes.

    When i launch Bridge CC and make first click on any button, the program freezes. How to solve this problem?

    This error can be caused by the My Web Tattoo extension (application?) that shows as FBSMTWB in your user agent.<br />
    See http://help.fastbrowsersearch.com/
    You may need to reset the user agent after you have removed that program.
    See [[Web sites or add-ons incorrectly report incompatible browser]]

  • Black power book is stuck in a pressed mouse mode. Unable to click on any icon

    Black MacBook laptop is stuck in pressed mouse mode. Unable to click on any icons. All keys and commands using apple work

    If you can find any USB wired mouse to use, to test and attempt a repair, or software reset of the MacBook, that would be very helpful; you could also check Console log entries (utility folder is Console's home) to see if there are any indications of other problems.
    With a mouse (even windows mouse) you should be able to access the System preference panel and also the keyboard viewer to see what is happening with the keyboard and mouse. You can click on keys in the keyboard viewer to test a mouse click or touch pad click; and also choose to ignore touchpad input while using a mouse, and other things.
    The touchpad may appear as a USB device, so System Profiler should show some evidence of that attached. If the touchpad has failed, depending on the exact build series MacBook, the repair options go from bad to worse. A few require the top part with keyboard replaced, as one piece, if yours happens to have that build. There are sources of tested good yet used parts, for less than any old-stock or replacement new parts, if it comes to that.
    An iFixit guide for that MacBook model identifier number may be helpful. Be sure to use the correct one for reference; they have an identify page at iFixit, there's also one at Apple where you'd put in a serial or model number (or sales model, or EMC, etc) and more info appears. The 'About this Mac' in the computer can help find what your computer is, by build, serial number, and that info helps online to learn more, or get parts.
    http://www.ifixit.com/info/ID-your-Mac/4
    Hopefully you can get access to a USB mouse to help troubleshoot, check or change settings, to do an SMC reset, or see if the NVRAM & PRAM reset may startle the MacBook into playing nice again.
    Good luck & happy computing!

  • Buttons stop working after 2 clicks of any buttons ??

    i've pasted in the action script below thats causing the problem and a shot of the timeline ... i'm really new to flash (this is my first atempt actually) ... Its driving me a bit nuts as all i'm trying to do is make a load of buttons work.
    At the moment what happens in browser preview is that i can click two or sometimes only one button (doesnt matter which) and from that point on none of the buttons work any more ...
    It seems like a common problem from what i have read around the web but i cant find an answer ...
    can anyone help please !?
    ps: it was working previously until i entered more (currently uncoded, but with rollovers) buttons onto frame 2 (all sitting within menu2 layer)..
    import flash.events.MouseEvent;
    stop();
    home_btn.addEventListener(MouseEvent.CLICK, gohome);
    comm_btn.addEventListener(MouseEvent.CLICK, commmenu);
    leis_btn.addEventListener(MouseEvent.CLICK, leismenu);
    hotel_btn.addEventListener(MouseEvent.CLICK, hotelmenu);
    resi_btn.addEventListener(MouseEvent.CLICK, resimenu);
    product_btn.addEventListener(MouseEvent.CLICK, productmenu);
    health_btn.addEventListener(MouseEvent.CLICK, healthmenu);
    retail_btn.addEventListener(MouseEvent.CLICK, retailmenu);
    educ_btn.addEventListener(MouseEvent.CLICK, educmenu);
    environ_btn.addEventListener(MouseEvent.CLICK, enviromenu);
    contact_btn.addEventListener(MouseEvent.CLICK, contactmenu);
    history_btn.addEventListener(MouseEvent.CLICK, historymenu);
    function gohome (event:MouseEvent):void{
    gotoAndStop(1);
    function commmenu (event:MouseEvent):void{
    gotoAndStop(2);
    function leismenu (event:MouseEvent):void{
    gotoAndStop(3);
    function hotelmenu (event:MouseEvent):void{
    gotoAndStop(4);
    function resimenu (event:MouseEvent):void{
    gotoAndStop(5);
    function productmenu (event:MouseEvent):void{
    gotoAndStop(6);
    function healthmenu (event:MouseEvent):void{
    gotoAndStop(7);
    function retailmenu (event:MouseEvent):void{
    gotoAndStop(8);
    function educmenu (event:MouseEvent):void{
    gotoAndStop(9);
    function enviromenu (event:MouseEvent):void{
    gotoAndStop(10);
    function contactmenu (event:MouseEvent):void{
    gotoAndStop(11);
    function historymenu (event:MouseEvent):void{
    gotoAndStop(12);

    if you click comm_btn and go to frame 2, any buttons that no longer exist on frame 2 will lose their listener.
    to remedy, all your buttons should be created in frame 1 and placed in a layer that has no other (than 1) key frames.
    if you don't want a button (eg, comm_btn) to be visible to users when you are in frame 2, for example, you can use:
    comm_btn.visible=false;
    // or
    removeChild(comm_btn);
    in a frame where you want comm_btn to be visible, use:
    comm_btn.visible=true;
    // or
    addChild(comm_btn);

  • MSCA VISION Release 12 - Unable to click on any function

    hi,
    I successfully installed Vision R12. I have been able to figure the MSCA Part as well. I am able to open the telnet session. But what is happening, is that when you click on any function. There is no response in the telnet session.
    It is as if, the MSCA Architecture is available and change organization and change responsibility are the only two functions which seem to be working.
    Any pointer on what to do would be helpful.
    In the meantime, I will check to see what function is getting called underneath.
    Thanks,
    Dhiraj

    Dhiraj,
    Have a look at the following notes, it may be helpful.
    Note: 189544.1 - F2 and F3 Function Keys Not Working In MSCA Telnet Session
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=189544.1
    Note: 275915.1 - MSCA / WMS Function Keys - Describe Standard Mobile Key Mappings and What They Mean (F2/F3/F4/etc.)
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=275915.1
    Regards,
    Hussein

  • I installed IE tab plus 1.2.0.12. when i am using explorer in mozilla and login into confirmit, the page is not loading properly. I am login and unable to click on any link.Please let me know your comments on this.

    http://author.confirmit.com//isa/KTAYBTGOKOMVCAAHHMPIDXAQKVOTBALO/srinu/Mozilla%20Firefox_trouble1.htm
    Please find this link. I am getting this message frequently.

    Hi Guru Prasandh,
    Thanks for your Reply.
    There is no error on page.
    If I got more than 10 records then it displays the Advance Worklist page fine but when I put Cursor on Table Navigation buttons it shows the Custom page path only not Sedded Worklist page path if I click on the Next & Previous buttons then it shows error on page on page bar and hangs out. It doesn't shows the next records.
    Personalize page, Diagnostics & ABout this page links are not highlighted when I put the mouse cursor.

  • I've just installed acrobat reader 11 I can't use it: Impossible to click on any button no reaction

    I installed the last acrobat reader 11 version last wenesday.
    I lauched it, all seems OK.
    Since yesterday, I try to use it again but impossible to interact with the opened window or pop up, nothing happen.
    I ty to click on button, menu items lift, ot popup button nothing happen.
    Acrobat standard 9 work fine but impossible to use the reader 11.

    After rebooting several time my computer it seems the problem disappereared.
    Before sending you this answer, I make a test and again, I have the problem.
    I have probably a conflick with a working application on my computer.
    I use 11.0.1.36 version of Acrobat reader with a windows XP workstation
    I will make other tests to try to obtain additional information.
    Thank for your response.
    Vernon

  • My iPhoto seems to have frozen. Was importing photos went to the import selected, it tells me it's importing them but nothing is happening and I can't click on any buttons to stop the import. Any help would be great. Thanks

    My iPhoto seems to have frozen, hooked my camera up to my MacBook selected the images I wanted imported and left the room for five minutes. When I came back it said it was still importing which I thought was funny as I was only importing 6 images. I tried to stop the import but the buttons are no longer highlighted and I can not shut down iphoto as it tells me it is still importing photos. Any help with this would be great as I have to get these photos uploaded for my assignment for school.
    Thanks

    Did you OK the option to have the application delete the photos off the memory card?  If not then just force quit iPhoto by typing Command+Option+Esc.  Then select iPhoto to force quit.
    If you did OK the option to delete the memory card I'm not sure if force quitting iPhoto will abort that function. You might try disconnecting the camera and then force quit iPhoto.
    If you do find that the photos were deleted and are not in the library you can recover them from the memory stick with an application like MediaRECOVER.  You can run it in demo mode to verify it can see and recover the photos on your card before you have to purchase it.
    OT

  • Fiery H1 version 2 unable to click "Full Properties" button

    Hi,
    Currently, having a few Macs which was install with Fiery H1 v2 driver downloaded from the white controller box without any issuses. However, 2 Mac encounter software hang when click on "Full Properties" I've use the Printer Remover utility provided by Canon to remove Fiery-related files including harmony file but still no luck. Created another new user account from this Mac & install the driver, I was able to click "Full Properties" to enter User ID & password / save as "Preset" / print colour and B&W jobs. Log back to other user account, still same issue of hanging. Done a Reset Printing System from this user profile & re-install back Fiery H1 v2 driver but still no go.
    Any help is greatly appreciated

    Well I checked the operation of the H1 v2.0 driver on 10.4.11 and I could not stop the Full Properties window from appearing. I tested this from Preview, Acrobat 8, CS3 and iWorks 08. In all cases, the Full Properties window would appear when selected.
    I had a look for some preferences related to the user account (given that a different user on the same Mac has no symptom) and the only EFI thing I could find in the ~/Library/Preferences was "EFI.HarmonyPrinterv2.plist". I am not sure that this file is removed when you use the 'Print Driver Removal' tool, but it might be worth seeing if the faulty user account has this file and if so, trash it to see if that helps.
    Pahu

  • Unable to click LOV Go Button

    Some clients can't click Go Button after openning LOV window.
    Mounse point is still arrow and can't click anything in iexplorer.
    But keyboard works.
    Anyone who see or solve same jam?

    This looks like a Pop Up blocker issue, this is a standard guideline from Oracle to remove pop up blocker, otherwise standard components like forms, LOVs would not work properly.
    The only work around for this is to use dhtml frames, this is something like u see in google websites like Orkut while uploading photos, but for this u would have to write ur own js to create frame Lov.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • When I click on any button on Facebook, it doesn't reasponed... why? and how can I fix it?

    I go to facebook, and none of the buttons work, they work on IE, Safari, and chrome just fine. I jsut click a button (such as comment, profile, and search) but nothing works. how can I fix this?
    == URL of affected sites ==
    http://facebook.com

    Hey Aggiesmommy 91,
    Thanks for the question. I understand that you are experiencing issues downloading purchased iBooks. Let’s see if we can troubleshoot this so you can enjoy those purchases.
    First, try forcing the iBooks application to close:
    Force an app to close in iOS - Apple Support
    http://support.apple.com/en-us/ht5137
    If the issue persists, try restarting your iPad:
    Restart or reset your iPhone, iPad, or iPod touch - Apple Support
    http://support.apple.com/en-us/HT201559
    Thanks,
    Matt M.

  • Photoshop CS5 problem with missing menu and unable to click any tools

    We have a user who was working on a couple documents. After backgrounding PS, they pulled it back to the foreground, but instead of the Photoshop menus appearing at the top, the tools palettes came up, but the menu at the top still says finder. They are unable to click on any tools or the documents. It's as if PS is unresponsive, but you can click to other apps and the spinning ball is not appearing. Activity monitor reports no hangs as well. We would to be able to save the open files, but are unable to do anything. Choosing to "hide" photoshop from the dock resulted in the documents hiding and now they will not appear again.
    Can anyone point us in a direction that might help?
    Thanks,
    Scott

    ForceQuit and Quit are options, but not a solution. I'm more interested in why it happens and when it happens, how to back out of it.
    I asked if you are offered »Quit« or »Force Quit«. I have never seen them both offered in that pop-up.
    In latter case you have no further options, I’m afraid.
    In the first case you could try quitting all other applications … no guarantees that would help, though.
    As to why it happens:
    How diligent are you with System maintenance, font validation etc. and are third party plug-ins installed?

  • How can we enable tick icon when user click any button

    how can we enable tick icon when user click any button in captivate 6@

    hi first of all thanks for imitate action.
    actually i want to make a menu (TOC) with tick icons, on starting all ticks are disabled but when i click on any button from my menu i want to enable tick for that particular button so that user can know easily the visited button.

Maybe you are looking for