Yahoo finance interactive charts problem on Chrome for my iMac ML

Somehow Yahoo finance interactive charts could not be displayed  at all on my iMac using Chrome browser, basic charts can be displayed though. No error message, looks it's loading something, but never show charts.
I have tried to clear cache, still not working. Chrome version: Version 22.0.1229.94, iMac OS X 10.8
Thanks

See if Java or Flash is disabled.
Reverse these procedures.
Disable Java in your Browser settings, not JavaScript.
http://support.apple.com/kb/HT5241?viewlocale=en_US
http://support.google.com/chrome/bin/answer.py?hl=en-GB&answer=142064
http://support.mozilla.org/en-US/kb/How%20to%20turn%20off%20Java%20applets
See in each Browser which version of Flash it thinks it has...
http://kb2.adobe.com/cps/155/tn_15507.html
Then Test Adobe Shockwave & Flash Players...
http://www.adobe.com/shockwave/welcome/

Similar Messages

  • Yahoo Finance - Interactive Charts problems with Snow Leopard - help?

    Hi,
    I'm used to using Yahoo Finance and chart tracking of multiple stocks with their interactive chart. Now it seems stuck: thus, I can't add multipe indexes or other stocks to compare it too. (firefox and safari)
    Less of an issue, the cursor when the "Compare to:" box pops up is under each stock/index you want to compare to; say appl to palm or rimm (no comparison of course though!!) (firefox and safari same problem)
    any ideas? I feel like the top issue was only one when I installed snow leopard
    many thanks

    I have the same problem. I thought upgrading to Snow Leopard might help, but no. I've now seen the problem on various Macs, with Firefox and Safari. Several months ago, or longer, it stopped working. Once in a while it works once or twice. I had used it extensively for several years. Some sort of change was made, at Yahoo and/or Apple, and now it's broken. I also have the issue with the cursor hidden underneath the box.

  • Yahoo Finance Interactive Charts Don't Work W/Safari

    Does anyone know how to make the Yahoo interactive charts work with Safari? They seem to work only about 5% of the time. I had to download Google Chrome to have consistent views.

    I changed the chart settings on Yahoo charts to "candlestick" instead of "line" type and that worked. I then changed the setting back to "line" type and it worked again. For now at least, the problem is solved. I'll try again tomorrow and see what happens...

  • Finance Interactive Chart is blank in Firefox (for both Google and Yahoo Finance)

    I've tried updating Java, Flash, Silverlight (it would really be nice to know for sure what Google and Yahoo Finance use). But they all were updated. I cleared my cache, tried restarting in safe mode (which is ironic because if the plugin isn't loaded, how is the site going to display the chart), hit Ctrl+F5, flipped off the monitor, but nothing is allowing the charts to display. I had previously allowed Adobe to update Reader and restart my computer, which I think led to the blank financial charts. Now I have to use Chrome or IE.

    I've been using Firefox almost exclusively for years and didn't have problems with the Yahoo! Finance interactive charts until version 15. I just updated to 16.0.1 last evening and it didn't fix anything. I've updated Flash, tried <ctrl>f5 - nothing helps. Something was done in a recent update to create the problem. It would certainly be nice if this was undone and fixed.
    Actually, I wouldn't mind downgrading a couple versions. I didn't have any of the problems I'm having now. I'm getting to the point that if something doesn't look right, I'm bouncing over to Chrome.
    Please don't let FF slide into the same mess as IE!

  • Why doesn't FF 16.0.2 display Yahoo! Finance Interactive Charts?

    I've just installed the latest upgrade (Firefox 16.0.2) and it still won't load the Yahoo! Finance interactive charts. It works in Chrome, so it's not my Java installation. Any idea when this will be repaired?

    You are reading text but comparing it to a number.  The solution is to either compare to text such as "-1" or coerce the text item read to a number, e.g. set economy1 to text item 1 of fileContents as number.  Don't forget to reset the text item delimiters.

  • Stacked 100% bar chart - Problem with datatips for zero value data points

    I have a stacked 100% bar chart that shows datatips in Flex 4.   However, I don't want it to show datatips for
    data points with zero values.   Flex 4 shows the datatip for a zero value data point on the left side of a bar if the data point is not the first in the series.
    Here's the code that illustrates this problem.    Of particular concern is the July bar.    Because of the zero value data point problem, it's not possible to see the datatip for "aaa".
    Any ideas on how we can hide/remove the datatips for zero value data points ?        Thanks.
    <?xml version="1.0"?>
    <s:Application
    xmlns:fx="
    http://ns.adobe.com/mxml/2009"xmlns:mx="
    library://ns.adobe.com/flex/mx"xmlns:s="
    library://ns.adobe.com/flex/spark"creationComplete="initApp()"
    height="
    1050" width="600">
    <s:layout>
    <s:VerticalLayout/>
    </s:layout>
    <fx:Script><![CDATA[ 
    import mx.collections.ArrayCollection;[
    Bindable] 
    private var yearlyData:ArrayCollection = new ArrayCollection([{month:
    "Aug", a:1, b:10, c:1, d:10, e:0},{month:
    "July", a:1, b:10, c:10, d:10, e:0},{month:
    "June", a:10, b:10, c:10, d:10, e:0},{month:
    "May", a:10, b:10, c:10, d:0, e:10},{month:
    "April", a:10, b:10, c:0, d:10, e:10},{month:
    "March", a:10, b:0, c:10, d:10, e:10},{month:
    "February", a:0, b:10, c:10, d:10, e:10},{month:
    "January", a:10, b:10, c:10, d:10, e:10}]);
    private function initApp():void {}
    ]]>
    </fx:Script>
    <s:Panel title="Stacked Bar Chart - Problems with DataTips for Zero Value Items" id="panel1">
    <s:layout>
    <s:HorizontalLayout/>
    </s:layout>
    <mx:BarChart id="myChart" type="stacked"dataProvider="
    {yearlyData}" showDataTips="true">
    <mx:verticalAxis>
     <mx:CategoryAxis categoryField="month"/>
     </mx:verticalAxis>
     <mx:series>
     <mx:BarSeries
    xField="a"displayName="
    aaa"/>
     <mx:BarSeries
    xField="b"displayName="
    bbb"/>
     <mx:BarSeries
    xField="c"displayName="
    ccc"/>
     <mx:BarSeries
    xField="d"displayName="
    ddd"/>
     <mx:BarSeries
    xField="e"displayName="
    eee"/>
     </mx:series>
     </mx:BarChart>
     <mx:Legend dataProvider="{myChart}"/>
     </s:Panel>
     <s:RichText width="700">
     <s:br></s:br>
     <s:p fontWeight="bold">The problem:</s:p>
     <s:p>Datatips for zero value data points appear on left side of bar (if data point is not the first point in series).</s:p>
     <s:br></s:br>
     <s:p fontWeight="bold">For example:</s:p>
     <s:p>1) For "June", eee = 0, mouse over the left side of the bar to see a datatip for "eee". Not good.</s:p>
     <s:br></s:br>
     <s:p>2) For "July", eee = 0 and aaa = 1, can't see the datatip for "aaa", instead "eee" shows. Real bad.</s:p>
     <s:br></s:br>
     <s:p>3) For "Feb", aaa = 0, datatip for "aaa" (first point) does not show. This is good.</s:p>
     <s:br></s:br>
     <s:p>4) For "Mar", bbb = 0, datatip for "bbb" shows on the left side of the bar. Not good.</s:p>
     <s:br></s:br>
     <s:p fontWeight="bold">Challenge:</s:p>
     <s:p>How can we hide/remove datatips for zero value data points?</s:p>
     <s:br></s:br>
     </s:RichText></s:Application>

    FYI.
    Still have the issue after upgrading to the latest Flex Builder 4.0.1 with SDK 4.1.0 build 16076.   
    Posted this as a bug in the Adobe Flex Bug and Issue Management system.     JIRA
    http://bugs.adobe.com/jira/browse/FLEXDMV-2478
    Which is a clone of a similar issue with Flex 3 ...
    http://bugs.adobe.com/jira/browse/FLEXDMV-1984

  • BB bold calendar sync with Yahoo mail July 2011- problem remains unresolved for months

    Having a problem ,as are many other bb users with sync calendar entries.  Syncs contacts/ media but loses connection when sync dates.
    I have just started working from home.. this is a huge problem to me and as far as I can see from other forums is a Yahoo software problem which remains unresolved both by bb and yahoo for a number of months.
    Problem is bb are going to start losing customers inc myself. If solution is not imminent  I am going to switch to iphone when my contract comes up at the end of the summer.
     ( I would prefer to stay with bb but if they are unable to provide customer support to resolve these issue it leaves me no choice)
    P.S I have tried every fix advised with no positive result

    Hey usannie,
    Welcome to the BlackBerry Support Community Forums.
    If you switched to Yahoo! Beta the synchronization is not currently supported.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • Invoking my yahoo page in v25 suddenly now brings up YQL developer console. can never now reach the my yahoo page. no such problem in chrome

    PS homepage setting not, according to options, hi-jacked

    The page that Firefox is taking you to is for Yahoo site developers. I am not sure why this is happening.<br>
    Even if the add-ons installed on Firefox have been installed for a long time without error, we still need to ensure that this isn't a Firefox issue caused by an add-on that has updated.
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    Please report back soon.

  • Hi I am having problems getting updates for my iMac OS 10.4.11 reject response says there is a PC processor in the iMac which I know is incorrect has anyone had this problem. Thanks

    I recently removed all personal content from the hard drive for re-sale

    Hi Peter, in Sytem Profiler what does it report for...
    At the Apple Icon at top left>About this Mac.
    Then click on More Info>Hardware and report this upto but not including the Serial#...
    Hardware Overview:
    Model Name: iMac
    Model Identifier: iMac7,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.4 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 6 GB
    Bus Speed: 800 MHz
    Boot ROM Version: IM71.007A.B03
    SMC Version (system): 1.21f4

  • QTVR problem with Chrome

    Hello,
    I have noticed a problem with QTVR files (interactive panoramas):
    - the navigation with mouse doesn't work
    - the navigation with arrows keys works
    - the navigation with 2 fingers gestures on trackpad works
    Curiously, no problem with Chrome for Windows (so far...)
    I have also noticed:
    - on Windows the QT extension version is 7.7.2
    - on OSX QT extension version is 7.7.1 (and it seems that I can't upgrade)
    So, is it possible to fix the problem of the mouse?
    Thanks.

    Hi b noir,
    Thanks a lot for your response, but unfortunately your suggestion doesn't solve the issue.
    First, it seems that it's not possible to switch Chrome in 32 bits mode.
    I tried with Firefox, which presented the same problem, but nothing changed...
    Just to sum up things:
    MacOSX
    - Safari and Opera : no problem
    - Chrome and Firefox : mouse problem
    Windows
    - Safari, Chrome, Firefox, Opera and... IE : no problem!
    And just to let you know (nothing to do with the problem): I have a HTML5/CSS3/WebGL versions of the panoramas which work great on any browser on MacOSX/IOS and which don't work on Windows except for Safari...

  • When I print out Yahoo! Finance web page, the interactive chart (Flash Player 10) part is printed blank. Internet Explorer can print the same page, no problem. How can I print it correctly?

    I cannot print out Flash Player 10's interactive chart in FireFox.
    IE can print the same page.
    http://finance.yahoo.com/echarts?s=C+Interactive#chart1:symbol=c;range=5y;indicator=volume;charttype=line;crosshair=on;ohlcvalues=0;logscale=on;source=undefined
    My boss told me that he doesn't like Microsoft, so I must find a solution.

    I did not have the HP printer software for Mac OSX installed properly. Once installed the problem went away.

  • Firefox will not open Basic Charts or Basic Tech. Analysis chart in Yahoo Finance. Regardless which of the 3 choices, only Interactive chart comes up ? ? ?

    Firefox will not open Basic Charts or Basic Tech. Analysis in Yahoo Finance.
    Regardless of which of the 3 chart choices you click on only the Interactive chart comes up.
    It worked earlier this week and still works in “Exploder”.
    Anyone know what’s going on, I don’t want to go back to “Exploder”
    XP, SP-3, Firefox 33.0
    Thanks

    Can you provide a web link to these things?
    Many site issues can be caused by corrupt cookies or cache.
    * Clear the Cache and
    * Remove Cookies '''''Warning ! ! '' This will log you out of sites you're logged in to.'''
    Type '''about:preferences'''<Enter> in the address bar.
    * '''Cookies;''' Select '''Privacy.''' Under '''History,''' select Firefox will '''Use Custom Settings.''' Press the button on the right side called '''Show Cookies.''' Use the search bar to look for the site. Note; There may be more than one entry. Remove '''All''' of them.
    * '''Cache;''' Select '''Advanced > Network.''' Across from '''Cached Web Content,''' Press '''Clear Now.'''
    If there is still a problem,
    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences'''<Enter> in the address bar
    Select '''Advanced > General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?
    Then restart.

  • Jdbc url for yahoo finance

    Hey guys,
    Can anyone please help me find out what is the JDBC url for Yahoo Finance Database that stores the values of the historical stock quotes . I desperately need it for my java application in which I require to access the database in order to get the high, low, open, close quotes of a stock index. Any help would be greatly appreciated.
    Thank you,
    Vivek

    Hi!!
    The URL to the database on the yahoo webpage is http://chart.yahoo.com/d . If you go to that link then you will be able to access the database and do a search on it.
    Please reply. Any help will be greatly appreciated.
    Thank you,
    Vivek

  • Why does Firefox have problems printing Yahoo finance portfolio pages?

    Current versions (34.0) of Firefox on Windows and Mac both have printing problems when printing from the Yahoo Finance portfolio website. I don't have problems when printing from IE, Safari, or Opera. Firefox prints a header on page 1 then pages 2 and 3 on top of each other. It doesn't include every stock that I had in my portfolio either. The portfolio page has an interesting feature where it keeps the header of the page at the top and scrolls the rest of the page under it. This probably is what is messing up FF's printing but the other browser vendors don't have a problem. I'm working this problem for my father-in-law who's running Windows 7 while I'm on a Mac running Yosemite. I can duplicate the problem on Windows 7, XP, and OSX all running the latest version of FF. To test, I created a portfolio with a bunch of random stocks then tries printing. I got perfect output on every browser except FF.
    Sorry, I'm not installing any other Firefox software. This problem is on the platforms I mentioned. I can submit a pdf of sample output, both good and bad, if you like.

    More info. I have AdBlock running and thought that might have been the reason I could print from Safari but installing AdBlock on Firefox gave me the same results. Yahoo has a bunch of ads under the header and some use Flash. Having them there doesn't affect printing on other web browsers. I created a pdf file then opened it in a drawing problem and noticed a huge blank block in the middle of page one. This is what is pushing the stock data down to page 2. It shouldn't be there so FF is interpreting the ad area with the scrolling as a large block instead of ignoring it. I added three images. The first shows a correct page 1 (Safari), while the next two show how FF prints it.

  • I just bought and iMac and have lion installed. I'm trying to use interactive graphs at yahoo finance. Nothing shows on the screen. I assume I have to download something but don't know what or where.

    I just bought and iMac and have lion installed. I'm trying to use interactive graphs at yahoo finance. Nothing shows on the screen. I assume I have to download something but don't know what or where.

    WhyWontThisWork:
    I can definitely how frustrating it must be to not be able to take pictures or even view pictures that have already been taken with your LG Dare.
    Since this problem has started, have you tried to either:
    a.) put that memory card in an alternate phone to see if the pictures can be viewed on there
    b.) use a card reader/adapter in a computer to see if the pictures can be viewed on the computer
    c.) take the memory card out of the phone and then try to take a picture?
    What I am trying to determine is which of the 2 is defective (phone or memory card)
    If you are able to view pictures in another phone, or on the computer , then you may have a bad card. If that is the case, you can transfer the pictures to the computer and then format the memory card by
    Note: This procedure will erase all data on the memory card. It is recommended to back up the data.
    From the home screen, touch the menu tab.
    Touch Settings.
    Touch SD card & phone storage.
    Touch Unmount SD card.
    Touch Format SD card.
    Once you have done the formatting, try to take pictures again. If you continue to have problems it more than likely is the phone.
    Also, in order to access PixPlace, log into your MyVerizon account, at the top, you should see "Messaging" go down to "Manage your photo albums" once there, you should see "My Media", however, if you have already received a message advising you that your album would be deleted if you haven't logged on in more than 180 days, all pictures have then most definitely been deleted. Again, we do send warning messages once the online album hasn't been accessed in 150, 175, 180 days respectively prior to deletion.

Maybe you are looking for