Strange behavior (disappearing buttons, tabs, and more)

Very recently (within the past 3 days and long after installing 10.4.9) Safari on my iMac G5 has been exhibiting very strange behavior.
Some of the symptoms:
- crashes frequently for no apparent reason
- toolbar loses buttons and/or buttons are there but don't react to mouse clicks; sometimes a standard button, like forward, will simply disappear while backward remains
- text in URL field will become 'bolded' and sometimes difficult to read/blurry
- tabs often lose their dividing line boundaries
- auto entries usually not present
I have erased the preference list for Safari in my user library and repaired my permissions without any success.
Any suggestions?
Thank you very much for any help.

Hi
Please post a crash report - when Safari crashes, the "quit" panel has a "report" button. Select it, then copy/paste the entire contents to your reply.
While you are at it, try the site from another User Account. If you need to create a new account, please follow these steps:
Here is guidance from Apple on how to set up the account. You can ignore step 7 in the article.
Also, on the system preference>Accounts panel, click on "log-in" options. There, select "fast user switching". This allows you to go back and forth between user accounts via an icon in your Menu Bar at the top of the computer screen.
Log-on to the new account and start Safari. If Safari is stable in the new account, then your problem is specific to your regular user account. Otherwise, similar response means a system-wide problem.
Post back with results.

Similar Messages

  • I get a strange behavior of the tab bar and of the location bar in Firefox 29.0 for Mac.

    I have just installed Firefox 29.0 for Mac.
    I get a strange behavior of the tab bar and of the location bar with this new version.
    Instead of the location bar, I get two rows of symbols. And it's impossible to write anything in the location bar.
    (I'd like to add a screenshot, but I cannot find a way to do it.)

    Thank you for your tip.
    I found the culprit: it was an extension called RSS Icon 1.0.6.
    I removed it and now Firefox 29.0 is working perfectly.
    Now I'll have to find a replacement for that extension.
    Thank you once again. Your tip was essential.

  • Strange behavior with the tab key and multiple users

    Hello,
    I'm stuck on this problem and none of the usual trouble-shooting techniques have yielded results, so perhaps someone will point me the right direction.
    I have an Intel iMac running 10.3.9 with two user accounts, and in one of the accounts the tab key fails to advance the cursor from field to field in any application, be it a browser, mail client, etc. The tab key works otherwise, I can switch between applications using apple tab, for instance. The other user account works fine. The keyboard & Mouse preferences are identical on both user accounts. In fact, after creating a new user account it too had no tabbing from field to field either, which would seem to indicate that it is not a problem in an individual account. Repairing the permissions did not help, and even a recent archive and install failed to change this. Anyone know where to look for an answer? Thanks in advance...
    iMac 2GHz Intel Core 2 Duo Mac OS X (10.4.9)

    I did a wholesale replacement of the preferences folder from the working account to the non-working one, and after going through the welcome screens and re-setting a variety of preferences (setting up mail.app again, etc...), the tab key is functioning as expected in all applications. Thanks!

  • BluetoothSelectDevices strange behavior on Windows 7 and 8

    Hi,
    I have strange problem with BluetoothSelectDevices function from Windows Bluetooth API. I am developing an application containing mixed managed and unmanaged C++ code. One of its
    required functions is to open a bluetooth devices selection dialog in order to give possibility to a user select previously remembered device or to pair and select a new device. First my problem appears when I call BluetoothSelectDevices with fAddNewDeviceWizard
    field of BLUETOOTH_SELECT_DEVICE_PARAMS set to FALSE. In this case I wand a user simply will select his device from a list without possibility to add and pair a new device. This is my function:
    static uint64 dialappBluetoothSelectDevice (HWND hwnd)
    BLUETOOTH_SELECT_DEVICE_PARAMS btsdp = { sizeof(btsdp) };
    btsdp.cNumOfClasses = 0; // search for all devices
    btsdp.prgClassOfDevices = 0;
    btsdp.pszInfo = L"Select Device..";
    btsdp.hwndParent = hwnd;
    btsdp.fForceAuthentication = FALSE;
    btsdp.fShowAuthenticated = TRUE;
    btsdp.fShowRemembered = TRUE;
    btsdp.fShowUnknown = TRUE;
    btsdp.fAddNewDeviceWizard = FALSE;
    btsdp.fSkipServicesPage = TRUE;
    btsdp.pfnDeviceCallback = 0; // no callback
    btsdp.pvParam = 0;
    btsdp.cNumDevices = 0; // no limit
    btsdp.pDevices = 0;
    if (BluetoothSelectDevices(&btsdp))
    LogMsg ("BluetoothSelectDevices returned TRUE");
    uint64 addr;
    BLUETOOTH_DEVICE_INFO * pbtdi = btsdp.pDevices;
    for (unsigned cDevice = 0; cDevice < btsdp.cNumDevices; cDevice ++)
    if (pbtdi->fRemembered) {
    addr = pbtdi->Address.ullLong;
    break;
    pbtdi = (BLUETOOTH_DEVICE_INFO*) ((BYTE*)pbtdi + pbtdi->dwSize);
    BluetoothSelectDevicesFree(&btsdp);
    return addr;
    LogMsg ("BluetoothSelectDevices returned FALSE, GetLastError = %d", GetLastError());
    return 0;
    So, after calling this function the “Select Bluetooth Device” window is opened, but it is absolutely clean: there is only my text "Select
    Device.." shown on the gray background and “Search Again” button at left-bottom window’s corner.  I have not overcome this problem for now.
    The next problem appears on Windows 8 systems only when I set fAddNewDeviceWizard = TRUE. In this case the dialog is really shown (white background) and a user can select and pair a new
    device. But when he completes device pairing, the function returns FALSE! Why? (On Windows 7 it works correctly). The GetLastError returns ERROR_CANCELLED (1223).
    This problem is my real showstopper. What am I doing not correctly?
    Thanks in advance.
    Sergey

    Hi RedSoftk,
    Welcome back!
    Problem1: I wonder if you really get one or more selected device.
    Problem2:  Maybe you could test if the Bluetooth is still connected after your app gives you a FALSE. if the FALSE is given you when you press the complete button, so it is possible that the Bluetooth has failed to paired and added to PC.
    Regards!
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Where do I control default Auto behavior of Button.Width and .Height in Visual Basic 2013 designer?

    Why does a Button auto-size itself to completely fill a cell in a Grid if I write the code for it in the .xaml-file but fit to the Button.Content if I drag-and-drop the Button into the Grid from the Controls toolbox? Somehow, the software remembers where
    the Button came from, but I can't see where, and if I look in the Properties window I can see what dimensions it gets from the auto-sizing, but I can't see any options to change the behavior. Apparently I have to hardcode the dimensions of the Button to fix
    it, and that, obviously, is not desirable.
    Incidentally, it seems that if I cut-and-paste the code for a Button from one .xaml-file to another, it behaves as if the component was drag-and-dropped into place, i.e. even if the Button fills out the Grid cell in the source project it wil shrink to fit
    the Button.Content in the destination project.
    Why is this? And where is it that I haven't looked to make the Button behave?
    Thanks in advance

    Hi,
    This is the default behavior in VS. Seems there is no way can control it. May be you can create a custom button to solve your problem.
    Best Wishes!

  • Disappearing pulldown menus and more

    This problem has happened before with CS6 but it popped up again this week during a very simple edit....and it's making me nuts. For example, I was working on a short 5-minute video with a series of short clips (XDCAM EX originally) strung together with simple titles and some Gaussian blurs dropped onto short title card clips. After a few minutes of "normal" response from my Mac Pro (3,1 Dual QuadCore, 16 GB RAM), the program will stop responding to keyboard commands such as Play and Stop via the Spacebar. If I happen to go up to the Menu Bar and click on one of the pulldown Menu items, the pulldown will only be visible as long as I keep the mouse key depressed. When I release the button, the Menu disappears. Here's a short video showing this happening:
    Any ideas as to why this is happening?

    You waited 3 months before bumping!
    I have never heard of it before.
    Does it only happen in Premiere?
    didyou try a reinstall?
    Did youtry deeting your preferences?
    Did you try updating your Drivers?
    What O.S vers  is it ? Does it need an update?

  • Can I make the home and refresh buttons bigger and more toward the middle of the screen like in previous version?

    The new version 4 has made the home button WAY smaller and pushed it all the way to the right and made the refresh button WAY smaller as well. I think that they were grouped together in previous versions.
    I use those icons all the time and it's way more inconvenient now than it was.
    In fact, that was one of the main reasons that I liked FF better than IE was that those icons were bigger and, as such, much easier to hit quickly.
    Can I move or adjust the size of the icons in this version?
    Thanks
    B

    [[How do I customize the toolbars?]] should help you out

  • Firefox 3.6.17 on Mac won't open tabs and more

    Mac OS X 10.6.7 (10J869)
    FireFox 3.6.17
    new tabs won't open, just put a new tab on tab bar titled Untitled and cannot switch to the new tab.
    Haven't tested all plugins, but firegestures, lastpass don't work.
    All worked fine yesterday...

    This issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    See:
    * [[Troubleshooting extensions and themes]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Strange behavior with Cisco AP and Intel 3945 wireles card

    Hi,
    I have an interesting problem with an Intel 3945 A/G card, and my cisco APs.
    1. Given:
    Cisco 1100 and 1200 AP running IOS 12.3.8-JEA
    Two laptop, one with Intel 2200 MPCI Card, the other with Intel 3945 MPCI Card
    Microsoft AD with IAS radius server
    a. 1 SSID with Simple EAP-TLS configuration Enterprise WPA/TKIP, no vlans, broadcast SSID. both card associate correctly and operate normally.
    b. 2 SSID, 1 with simple EAP-TLS configuration Enterprise WPA/TKIP (broadcast), and 2nd SSID Open/No encryption/No authentication (not broadcasted), both cards associate correctly and operate normally.
    c. 2 SSID, 1 with simple EAP-TLS configuration Enterprise WPA/TKIP (broadcast), and 2nd SSID WPS-PSK (not broadcasted), both cards operate normally.
    Now it gets interesting:
    c. 2 SSID, 1 with EAP-TLS/WPA Enterprise on its own VLAN 102, 2nd SSID Open/No Encryption/No authentication on a separate VLAN 105, VLAN 1 is used for admin and radius backhaul to IAS.
    If both SSID are broadcasted via mbssid guest-mode both Intel cards work as expected
    If neither SSID are broadcasted, both Intel cards work as expected
    If either SSID is broadcasted via normal guest-mode command, the Intel 2200 associates and works correctly, but the Intel 3945 refuses to assocate to the AP.
    Has anyone heard of side-effect?
    Alan

    I'm seeing a similar issue with the 3945 right now. However in my example the following is the case;
    APs are 1200 series IOS upgraded running 802.11b interfaces only. There are multiple SSIDs NONE of which are broadcasting.
    We've got a few different client types. The Cisco CB21ABG cards are fine, as are the Intel 2200 and 7920 phones. It's only the 3945 that has a problem and it's running Intel's 10.5.1.68 driver which is the latest. I'm considering downgrading it to an older driver.
    Anybody got a definate fix for this Intel card???

  • Strange behavior with Quick Cluster and one shared machine

    Hi, I've been struggling for a while with my compressor 4.0.7 distributed processing setup... Here is my configuration:
    1 Mac Mini running as a Quick Cluster with services (3 instances of compressor shared)
    1 Macbook Pro running Services Only (7 instances of compressor shared)
    1 Macbook Pro (much older) running Services Only (2 instances of compressor shared)
    All 3 systems are running Mavericks, but I had this same problem when all 3 were Mountain Lion.. Had to trash the app and all of the prefs in Library\Application Support\Apple Qmaster and Compressor and reinstall to get the app running on all of the upgraded machines, so a fresh start didn't fix this issue.
    The Mac Mini and the older Macbook Pro can see the cluster, submit jobs and are both utilized for rendering when jobs are submitted from the Mini or the older Macbook Pro
    The newer MBP can see the cluster in Share Monitor and in qadministrator, but cannot see any of the jobs in the history (the other Macbook Pro can see all details identically to the Mac Mini).  When a job gets submitted from this system it appears as "Not Available" on the Mac Mini share monitor and it only utilizes 1 local process to do the rendering, which stalls out after about 1 minute. Activity Monitor shows all 7 instances of compressord are running and not frozen but have no activity.
    Jobs submitted from the Mini and older MBP attempt to use the newer MBP for distributed rendering but stall out after about 30 seconds with a host error.  The shared volume never appears on the newer MBP. Qadministrator on the Mini can see the newer MBP and all of the listed services as available.
    Now here is the part that really blows my mind:
    After submitting a job to the cluster from the newer MBP, which will stall out and need to be cancelled as mentioned above; submitting a job from the mini will actually successfully use the services on the newer MBP. Share monitor on the newer MBP still does not display any jobs on the server cluster. Rebooting the newer MBP puts me right back in the "I won't play with those other macs" tantrum.
    Anyone else see this issue and have a fix for it? Workarounds are nice but this is very, very annoying when I get into crunch time.

    Do you have log files?
              - Prasad
              Chris Dempsey wrote:
              > We have 2 WebLogic 4.5.1 servers in a cluster with none of the Service
              > Packs installed. When a client uses the deployed entity beans or
              > servlets they work every other time. The times they do not work nothing
              > happens. No exceptions, no responses to the client ( i.e. HTTP 404s ),
              > nothing. I suspect something in the cluster setup since we do not have
              > these same problems on non-clustered entity beans or servlets. We have
              > made sure all the entity beans have the Shared Database flag set on and
              > added the delayUpdatesUntilEndOfTx false to the enviroment of the DD.
              > That didn't fix the problem. Any ideas?
              >
              > Thanks in advance,
              > Dallas Dempsey
              > DEM - Houston, TX
              

  • Strange behavior with entity beans and servlets in a cluster

    We have 2 WebLogic 4.5.1 servers in a cluster with none of the Service
              Packs installed. When a client uses the deployed entity beans or
              servlets they work every other time. The times they do not work nothing
              happens. No exceptions, no responses to the client ( i.e. HTTP 404s ),
              nothing. I suspect something in the cluster setup since we do not have
              these same problems on non-clustered entity beans or servlets. We have
              made sure all the entity beans have the Shared Database flag set on and
              added the delayUpdatesUntilEndOfTx false to the enviroment of the DD.
              That didn't fix the problem. Any ideas?
              Thanks in advance,
              Dallas Dempsey
              DEM - Houston, TX
              

    Do you have log files?
              - Prasad
              Chris Dempsey wrote:
              > We have 2 WebLogic 4.5.1 servers in a cluster with none of the Service
              > Packs installed. When a client uses the deployed entity beans or
              > servlets they work every other time. The times they do not work nothing
              > happens. No exceptions, no responses to the client ( i.e. HTTP 404s ),
              > nothing. I suspect something in the cluster setup since we do not have
              > these same problems on non-clustered entity beans or servlets. We have
              > made sure all the entity beans have the Shared Database flag set on and
              > added the delayUpdatesUntilEndOfTx false to the enviroment of the DD.
              > That didn't fix the problem. Any ideas?
              >
              > Thanks in advance,
              > Dallas Dempsey
              > DEM - Houston, TX
              

  • Strange behavior when getting data and storing it into a tdms file

    Hi
    I am getting data from a VISA device(10bytes every 20ms) in a string buffer and then using indexing array get each element which is 2 bytes , filtering the data in real time using a butterworth filter and then storing the data to a TDMS.
    The problem is that the data goes haywire after a brief the the different elemetns just switch. So for example x becomes resistance, GSR becomes  etc
    I have uploaded the VI and the TDMS file converted to excel format

    You really should be writing to the TDMS file while you acquire the data.  By using the Autoindexing Tunnels to build the arrays, you are causing A LOT of memory allocations, which causes things to really slow down.  I would venture to say that you are missing data, causing what looks like a shift in the data.  But you would need to be looking at the error coming out of the VISA Read to know for sure.
    So look into the Producer/Consumer.  The idea is to use a parallel loop to log the data while your current loop reads and processes the data.  The data is sent to the consumer loop via a queue.

  • Wierd button behavior: flashing between Up and Over, won't go to frames

    I have this strange behavior with buttons.  These are button instances, not movie clips used as buttons.
    I created a list of buttons for a drop down menu. Created the first one then dupliacted the symbol to create the others. The buttons have an Up and Over state. I coded each button in the normal way - for example:
    on (release, releaseOutside) {
        gotoAndStop("M1-2S-1");
    Problem:  the first button works fine but all the duplicated buttons act like movie clips with no stop. They cycle between Up and Over states and the goto code does not work.
    I an using Flash CS5, Actionscript 2.0

    Do all the instances have unique ids? Are the duplicate buttons displayed as Movie Clips (check the Properties tab)? If you're using goto actions anyway, why are you using buttons?

  • I have my tabs, and my Yahoo toolbar. I do not anything else. I don't have my address bar, back button, home button, bookmark button, or anything. Please help. Thank you.

    I can't use Firefox because all I have at the top of the screen is the orange Firefox button, tabs, and my Yahoo toolbar. I don't have my address bar. I don't have the back and foreward buttons. I don't have the Home button or the Bookmarks button. I don't have my Google search bar. I don't have any the things that I should have and that I need to make it work. How do I fix this? Thank you.

    I have been using 4.0 for about 2 months, and I know all of the new features and where everything is. But as of day before yesterday, the things that I mentioned '''are not there anymore'''! How do I get these things back? Thank you.

  • Strange Behavior connecting to Oracle

    Hi to All,
    On Server Windows 2003 I have installed Oracle 10g R2. On this Server run Toad for Oracle.
    If I run Oracle console, all work fine; running Toad the ORA-12154 error is displayed.
    I have tried to connect to DB with Toad from a client and all works.
    Have someone an idea on this strange behavior ?
    Thank You and Best Regards
    Gaetano

    This may be a problem?NO!
    12154, 00000, "TNS:could not resolve the connect identifier specified"
    // *Cause:  A connection to a database or other service was requested using
    // a connect identifier, and the connect identifier specified could not
    // be resolved into a connect descriptor using one of the naming methods
    // configured. For example, if the type of connect identifier used was a
    // net service name then the net service name could not be found in a
    // naming method repository, or the repository could not be
    // located or reached.
    // *Action:
    //   - If you are using local naming (TNSNAMES.ORA file):
    //      - Make sure that "TNSNAMES" is listed as one of the values of the
    //        NAMES.DIRECTORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA)
    //      - Verify that a TNSNAMES.ORA file exists and is in the proper
    //        directory and is accessible.
    //      - Check that the net service name used as the connect identifier
    //        exists in the TNSNAMES.ORA file.
    //      - Make sure there are no syntax errors anywhere in the TNSNAMES.ORA
    //        file.  Look for unmatched parentheses or stray characters. Errors
    //        in a TNSNAMES.ORA file may make it unusable.
    //   - If you are using directory naming:
    //      - Verify that "LDAP" is listed as one of the values of the
    //        NAMES.DIRETORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA).
    //      - Verify that the LDAP directory server is up and that it is
    //        accessible.
    //      - Verify that the net service name or database name used as the
    //        connect identifier is configured in the directory.
    //      - Verify that the default context being used is correct by
    //        specifying a fully qualified net service name or a full LDAP DN
    //        as the connect identifier
    //   - If you are using easy connect naming:
    //      - Verify that "EZCONNECT" is listed as one of the values of the
    //        NAMES.DIRETORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA).
    //      - Make sure the host, port and service name specified
    //        are correct.
    //      - Try enclosing the connect identifier in quote marks.
    //   See the Oracle Net Services Administrators Guide or the Oracle
    //   operating system specific guide for more information on naming.This error is clear.
    SQL*Net is being asked to resolved TNS_ALIAS & it reports that it can not find the requested name.
    EITHER
    1) the requested name is not correct
    or
    2) SQL*Net is looking in the wrong tnsnames.ora file & still not finding the requested name.
    Good Luck solving your mystery

Maybe you are looking for

  • Error in SSO login page.

    HI all, This time in windows 2000 Professional,I install infrastructure without error or warning(But in the installation log file I saw one error i.e., as follows.)(I put th error line into bold face.) Create Group URLrefreshed:oiddas/ui/oracle/ldap/

  • HT1175 My full back up reads 250gb but my time machine has only backed up 149gb what do I need to do to fully back up?

    I am using my time machine for the first time. I have bought an external backup mobile drive 1TB. I have turned time machine on and it has save only 149gb of 250gb. How do I get it to save 250gb? How do I see what it has actually saved and once store

  • Cannot install itunes on my windows 7 32 bit

    Hi, I cannot install itunes on my windoes 7 32bit. I tried installing several times but it wont let me complete it. Sometimes it shows error of 'Windows Installer Service could not be accessed'. Please help asap. Regards Tushar

  • En masse Price changes

    Hello, 1. Is there a way to change prices via some kind of upload for some thousands of conditions together for a particular access sequence? 2. Our pricing is based on USD on the basis of a set exchange rate which is different than what we define in

  • Mavericks and Dual Display not working as documented

    Hi all. Ok..something a little wierder here for my dual display scenario. I have two Samsung Syncmaster 2443 monitors. 15" MBP Retina purchased this year. Running in Clamshell Mode. I can get dual monitors happening (extended) but I cannot get the me