NY Times Set puzzle Java broken in Safari

http://www.nytimes.com/ref/crosswords/setpuzzle.html
I can run this puzzle fine in Firefox, but in Safari (updated today to the latest and greatest) it gives me an icon for a coffee cup with a big red ! in it.
I have tried this on multiple Macs, so I know it isn't just one machine.
Anyone know how to fix this? Thanks.

HI Peter and welcome......
(updated today
Updating may have changed your preferences to default.
From your Safari menu bar click Safari / Preferences then select the Security tab.
Make sure Java is enabled.
You can test to see if Java is working correctly here.
http://javatester.org/
Login to another user account on your Mac. Try Safari there at the same site. If you don't have problems with Java there, then at least you know it's just your user account and not a system wide problem.
Since you updated your software, you have Safari Extensions that aren't compatible with the update. Go to Safari / Preferences - Extensions. If you have any Extensions installed, turn that OFF. Relaunch Safari and try the nytimes site again.
Same for Safari third party unsupported plug-ins. Safari: Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues
No problem here on that site using v10.6.4 and Safari 5.0.2
Carolyn

Similar Messages

  • Can I add the NY Times crossword puzzle app to Safari?

    I have been trying to figure out how to install the New York Times crossword puzzle application, Across Lite v2.0, with no luck. Is there a way to add this plug-in to Safari? I’m using Safari 1.3.1 on a PB G4 running OS X 10.3.9.
    Thanks in advance for any help offered.
    Bflatblues

    Thanks for the response. I usually use FireFox and I have it configured so that when I click on “Play today’s puzzle” at the NYTimes site for the puzzle it opens up Across Lite, downloads the puzzle (somedate.puz), and sticks it into the Across Lite program.
    I’m about to upgrade to OS X 10.4.2. Will I be able to tell the new version of Safari to do this or can I do this now and I'm just ignorant of how?
    Thank you again.

  • Set Date Time Computer with Java in Linux OS

    Dear All,
    How to set date time computer with Java in linux OS?
    Rgds,
    Theo

    There is no API for this you'd have to run an external command using Process.exec.
    This is the wrong forum for general Java "how to" questions.

  • Why are most of the links on Oracle's site that relate to Java broken?

    Why are most of the links on Oracle's site that relate to Java broken? For example, try searching for SocketChannel and then clicking on any of the returned links, in particular click on www.oracle.com/technetwork/servers-storage/ts-4222-159193.pdf.
    This is the second time I have tried to search for Java information and both times found broken links.
    Does anyone know where I can find more information on using a SocketChannel?

    Kayaman wrote:
    user8252446 wrote:
    Why are most of the links on Oracle's site that relate to Java broken?Because Oracle doesn't really care about Java and is hoping that it'll die off.Pretty sure Oracle cares about Java. They have a huge investment in it and would need to replace or discontinue a number of products that they paid quite a bit of money for.
    On the other hand in might just be that they don't much about providing support that doesn't lead to revenue. Thus support contracts have a support channel while public links get little support.

  • Flash/Java/Quicktime?/Safari Problem

    Alright, I have this pretty large problem in my case.
    I just updated to QT 7.3 and iTunes 7.5, restarted my computer because of the update.
    & went on normally, then when trying to load a site like youtube.com (with its flash videos and other things)
    Nothing shows up for things swf/flash/java based.
    I then restarted my computer again, but the same problem occurs.
    I have repaired disk permissions, but that didnt do anything.
    I reinstalled flash and java. and 'Reset' Safari.
    So what am I suppose to do now?

    I'm having a similar problem ever since I did the 10.4.11 update. If I use the computer after having been in sleep mode all flash content comes up with a quicktime symbol and a question in front of it when using safari 3.0.4 and in firefox nothing comes up. The first time it did this a dialog box popped up and asked if I would like to enable quicktime to play flash. Enabling or disabling doesn't seem to affect the problem, however if I restart the computer everything is fine. I would prefer to be able to put the darn thing to sleep instead of having to restart every time i want to get online. Any help would be greatly appreciated.

  • Create a CF Query Result Set in Java

    I'd like to programatically build a ColdFusion query resultset inside of a Java class and return it to the calling application.  See the Java psudocode below to see what I'm talking about:
    public class MyClass {
         public coldfusion.sql.QueryTable getQuery() {
              // Create a query table object
              QueryTable myTable = ..?
              // Loop through some set of instance data for my class
              for(int c = 0; c < this.myWigets.length; c++) {
                   int row = c+1;
                   myTable.setField(row, nameCol, this.myWigets[c].name);
                   myTable.setField(row, colorCol, this.myWigets[c].color);
              return myTable;
    I've had stuff like this partially working in the past but had issues with things like query of queries and such probably due to the hacks used to create the QueryTable object.  I'm mainly just checking in to see if there has been any progress made in this area.  To me this seems like such an obvious thing for a Java developer working within CF to want to do.  I'm surprised Adobe doesn't have an officially supported API for doing this sort of thing (or maybe I'm just too dumb to find it.)    A few other notes... I'm not using CFX, and I'm not starting with a java.sql.ResultSet otherwise I would use the QueryTable(java.sql.ResultSet) constructor.  I need to build this thing from scratch programatically.
    Thanks for your time.  I hope this question makes sense to someone out there.
    - Mike

    I appologize.  I wasn't very clear with my original question.
    I'm creating an instance of my Java class from within CF using createObject("java", "com.example.MyClass").  So based on the sample code in my original post on the CF side I'd like to do something like this:
    <cfscript>
         myObj = createObject("java", "com.example.MyClass");
         myObj.doSomeStuff();
         myCFQuery = myObj.getQuery();  // Return a CF query from my java class
    </cfscript>
    ... then do stuff like ...
    <cfquery name="mySortedQuery" dbtype="query">
         select     *
         from       myCFQuery
         order      by color
    </cfquery>
    I appriciate your suggestions so far.  I have other solutions working already but they are not ideal.  I was just hoping someone had a clean and as-hack-free-as-possible way of creating a ColdFusion query result set in Java and passing it back to CF.
    Thanks again,
    Mike

  • Setting Multiple values in property set using java API

    Hello All,
    I want to set the properties of a profile in a property set using java API provided
    in package p13n. The property can have multiple values. When I try to add the
    property using ProfileManager.setProperty() method. But every time I do it this
    way, it replaces the earlier value of property and not added. This, I can achieve
    using portalTools but I want to use the API for user registration on the site.
    I hope the query is clear.
    Waiting for a response,
    Thanks in advance,
    Shrinivas

    You need to use java.util.ArrayList.
    First cast the existing value into ArrayList using getProperty method,
    change values in the ArrayList and then put them back with setProperty
    method.
    Regards,
    Michael Goldverg
    "Shrinivas Rao" <[email protected]> wrote in message
    news:3d64e7d9$[email protected]..
    >
    Hello All,
    I want to set the properties of a profile in a property set using java APIprovided
    in package p13n. The property can have multiple values. When I try to addthe
    property using ProfileManager.setProperty() method. But every time I do itthis
    way, it replaces the earlier value of property and not added. This, I canachieve
    using portalTools but I want to use the API for user registration on thesite.
    I hope the query is clear.
    Waiting for a response,
    Thanks in advance,
    Shrinivas

  • [svn] 3127: Updating asdoc to replace the avmplus call with new set of java files.

    Revision: 3127
    Author: [email protected]
    Date: 2008-09-05 14:16:53 -0700 (Fri, 05 Sep 2008)
    Log Message:
    Updating asdoc to replace the avmplus call with new set of java files.
    Removing all files related to asdochelper.
    QA: Yes, also please test on non windows platform.
    Doc:
    Tests: checkintests, asdoc
    Reviewed by: Pete Farland
    Modified Paths:
    flex/sdk/trunk/asdoc/templates/ASDoc_Config_Base.xml
    flex/sdk/trunk/asdoc/templates/asdoc-util.xslt
    flex/sdk/trunk/modules/compiler/build.xml
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/AsDocAPI.java
    Added Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/AsClass.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/AsDocHelper.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/AsDocUtil.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/QualifiedNameInfo.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/SortComparator.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va
    Removed Paths:
    flex/sdk/trunk/asdoc/templates/asDocHelper
    flex/sdk/trunk/asdoc/templates/asDocHelper.linux
    flex/sdk/trunk/modules/compiler/asdoc/

    I had a generic record class that has a HashMap to hold the data fields (...)
    method called createRecord() for each record type which would populate the HashMap with the correct data fieldsI'm not sure I understand: are the contents of this field map the same between two records of the same type? Then yes, you don't need to clone the map per record instance.
    one thing that needs fixing is the fact that each time the createRecord() method is called I'm creating a new fieldMap to define the dataFields in the record class.Probably, but that will only get you a little bigger files; you won't gain an order of magnitude on the size of files. The problem for huge files is that as soon as their content is bigger than the available memory, you'll run into problems. A more radical approach if you need to address huge files is to process the records on the fly, and not load all records in memory. Of course not all algorithms or business logic can afford that...
    I know I could rewrite the code and create a class for each record type and declare the fieldMap static but I was wondering if anyone had any better suggestions The Record instance could receive and keep a reference to its RecordType instance, and ask the RecordType instance the DataType for a field's name. That way the RecordType encapsulates the map, and there's less risk that a clumsy other class modifies the static map.
    before I go rewriting a load of code.A load of code?!? Even with the idea of the static map, you only have to edit the enum type (well more accurately, each RecordType enumerated constant's createRecord() method).

  • Alarm starts later than the time set!!

    I am still puzzled!
    I have a 5800 Xpress Music since almost a year now, regularly updating it to the latest softwares and all, everything was working well until I reached version 30 and then 31 of the updates, somehow, and for some reason a very weird problem started to happen to me! The alarm clock starts off in a later time than the one I set! For example, I set the alarm to 7:00 am, but it starts at 7:05 am! Actually it could start any time from 1-5 minutes later than the actual time set! 
    Moreover, the snooze! When I snooze the alarm that is already late, it wouldn't snooze for the period I already set! like, I have set the snooze time to be 6 minutes, but, when I press snooze, it would snooze for 10 or even 15 minutes instead! 
    It's really so weird, I tried to turn off automatic time update, I have even changed the SIM card, but nothing is working! it seems a bug in the new software because everything was fine before!
    Please if anyone could help me don't hesitate!  

    Not only that but timed profiles don't expire at the right time either and scheduled backups don't happen.
    Right now there is no solution. The firmware is buggy and that's all there is to it.
    We have to wait for an update. The phone was only released about a year ago so there's hope yet that Nokia will release further updates.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • Is java vulnerable in safari 5.1? I have a macbook using 10.6.8

    I am worried about the java vulnerability.  I need it to pay bills on my banks website.  is java vulnerable in safari 5.1.  I am using a macbook with os 10.6.8

    The recently discovered zero-day flaw in Java 7 is so serious that the U.S. Department of Homeland Security has warned users to disable or uninstall it, and Apple has disabled the Java 7 plugin on Macs through its OS X anti-malware system, in order to protect users from a potentially serious security issue.
    You should disable Java (if not already done) until either the US Department of Homeland Security, or Oracle, declare it safe and Apple restore the facility. Oracle have released an update said to fix the security flaw, available from here:
    http://www.oracle.com/technetwork/java/javase/downloads/jre7-downloads-1880261.h tml
    Javascript should not be disabled (it has nothing to do with Java), and is probably what your bank is using.

  • Long time to start Java Web Client (Analyzer 6.2.1)??

    Does anyone know why Analyzer(6.2.1) takes a long time to start Java Web Client. Sometime it's even take more than 5 minutes. I think it is the Java Plug-in starting on the client computer. Any solution?

    The key to Analyzer 6.2.1 running correctly is the version of Sun Java Plugin. The ideal version (most optimal) is 1.3.0_02.Secondary to this if Analyzer performs OK once you are logged in then it could be down to the speed of your connection. The applet compiles at runtime (unlike Analyzer 5 which was a one time download). The delay in getting to the login screen could be this download.Hope this helps.Paul ArmitageAnalitica Ltd.www.analitica.co.uk

  • Every time I try to open my safari it restarts my computer, or if it does open it is for only about a minute before it gets and error and closes.What should I do?

    Every time I try to open my safari it restarts my computer, or if it does open it is for only about a minute before it gets and error and closes.What should I do?

    gets and error and closes.What should I do?
    If Safari is crashing.. post a crash report so we can try and help...
    If Safari has just crashed, press the Report button on the CrashReporter dialog box to view the crash  information.
    Copy/paste the entire contents of the Crash Reporter window into your reply including the, "binary images" seection.
    If the crash report dialog does not appear or the crash is hard to reproduce, crash logs can be retrieved from the ~/Library/Logs/CrashReporter> folder.

  • How to get calendar travel time (set up in Mavericks) to show on iOS 7 calendar?

    I was wondering how to get calendar travel time (set up in Mavericks) to show on iOS 7 calendar? If I change a location in mavericaks it is updated in my iOS 7 calendar, but if I add travel time to an appointment, that does not show up on my iphone. This seems like a big miss for apple if this is the case. I could maybe understand not adding the ability to add travel time in iOS 7, but not being able to see the travel times you set up seems very incomplete. Any ideas or insight?

    Hello Cheer,
    I don't believe the table changed when migrating from Access.  I had two tables before the migration, one was for the SwitchBoard Manager and the other table was for the database table.  I used the Switchboard to navigate to different menus, such
    as the Main Form, Power Form, Server Form, etc.  Let me know if I can provide any other information to help you narrow this down for me.   
    Thank you for your assistance. 
    Thai

  • Is there a way to automatically change tabs with different times set for each tab?

    I found a few add-ons that will automatically change tabs based on a configurable time. But all the tabs use the same time setting. What I need is the ability to have tabs displayed for different amounts of time. Ex, Tab 1 for 30 seconds, Tab 2 for 10 seconds, Tab 3 and 4 for 5 seconds. Ideally, I will have the ability to modify these settings as the amount of tabs and the content will change a couple times a week.
    Currently I'm using Tab Slideshow with each tab displayed for 15 seconds. But it sounds like Tab Rotate and Auto Toggle Tabs essentially do the same. If there is already a solution that would be great but if not is there someone available for hire to help modify one of the existing add-ons? Thank you in advance for your time.
    John

    Currently Firefox don't have any options like that.
    You can ask the Addon developers
    *http://addons.mozilla.org/

  • Having very difficult time setting up and running time capsule and airport

    I am having a very difficult time setting up and running airport express and time capsule. My time machine is not being recognized by my mac. The amber light keeps blinking. I'm ready to stsrt over.

    #3 for itunes streaming. I reset the base station and eventually was able to get the backup working and now my green light is on. Next I'd like to be able to play itunes using Airport Express and have connected to my stereo receiver in another room.
    AirPort Express Base Station (AX) - iTunes Setup
    Either connect to the AX's wireless network or connect directly, using an Ethernet cable, to the Ethernet port of the AX, and then using the AirPort Utility in "Manual Setup" mode, make the following changes:
    AirPort Utility > Select the AX > Manual Setup > AirPort > Wireless
    Wireless Mode: Join a wireless network
    Network Name: <existing TC's wireless network>
    Wireless Security: <select the encryption type of the existing wireless network>
    Wireless Password: <enter the existing wireless network password>
    Verify Password: <re-enter the existing wireless network password>
    AirPort Utility > Select the AX > Manual Setup >Music
    Enable AirTunes (checked)
    iTunes Speaker Name: <enter desired speaker name>
    iTunes Speaker Password: (optional)
    Verify Password: (optional)
    Click Update to write the new settings to the AX

Maybe you are looking for

  • Error while deploying the JDI SCA file on the server

    Hi, I am not able to deploy the 3 SCA files JDIdevinf, JDI buildt and JDIdeinff. When deploying the following error occured. ABorted deployment component 'tc CBB Appl/'sap.com'/SAP AG'6.4009.00.0000.200411042045 Caught exception during application de

  • Windows does not recognize ipod, neither does itunes

    I finally got my system to stop freezing when i plug the ipod in. Now when i connect it there is a messega from windows "unkown mass stoage device" Neither itunes nor ipod updater recognize i have plugged the device in. But on the screen it says do n

  • Latest Flash and Facebook

    I had been away for a couple of months so when I got home and was going to put some pictures up on Facebook.  I went to my photos area and created a new album and it did open the dialogue box for uploading multiple photos but it also said that in ord

  • Saving JPEGs in PS CS4

    I've saved thousands of JPEGs in Photoshop over the years, almost always using the Save For Web dialog since that was introduced. On rare occasion I would use the JPEG format choice from the Save Dialog but not often. Today I was modifying a couple o

  • Exporter API - neccesary re-init?

    Hi all, I took Zac's exporter example and moved the Parameter|Value from being locals in eSDKDefaultParameters() and put them into the (per Instance) ExportSettings struct so that I could manipulate them again in eSDKValidateParameters(). Is it reall