473,770 Members | 1,661 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Does anyone know of a 2x2 sudoku game WITH images?

tpgames
785 Contributor
I've struck zero in finding a Link to a sudoku game that actually uses images for numbers, even images OF numbers. Yes, I'd prefer the game in JavaScript. Every site I've been too, (hundreds) uses CSS and HTML and NOT images. I've only found 1 site that uses images, and their source code is NOT available for viewing, at all. I can't even find that site anymore. I do mean that the game itself uses images in solving the problem. I do not mean, and game with a prize of an image coming up after you've solved it. One Australian sites uses an image picture as a prize for solving it. However, I've not been able to convert their code to images.
Thanks in Advance! ps. I can't wait until JavaScript finally starts making sense to me. :>)

(Moderators, posted this here, because no one in the JS forum knows of a game WITH images. And, because Sudoku is so popular, I decided to grasp at straws and throw this question out to the community, as I'm not asking for someone to encode it for me.)
Feb 16 '07
11 4840
tpgames
785 Contributor
I know this is way old, but obviously, I lost the link to this thread - probably a laptop died. lol I should use google more often. ;)

The code itself is not in images. The sudoku game uses images. I'd still be interested in a 2x2 game even though my nephew has graduated to 2x3 sudokus. And, the w-sudoku.com game I do use on my site. :D The only issue I've ever had with the game is that it uses dynamic image sizing which makes it next to impossible to make a logo that works in on the game page without the image looking badly deformed. I think he found and fixed the bug that he had. I vaguely remember a bug, but that doesn't exist anymore, as my version works very very well.

Here's the link to my game made by the wonderful wsdk. I still love his game, as it was the first free sudoku code I found. I only gave a direct link to one of the versions on my site.

The sherlock game is cool. I finally checked it out. But, I need the code and need the code to be free and not shareware. Javascript prefered, as that is themeable. Java I'm not ready for yet. lol

In reply to Rabbit - I shall try to rewrite the 3x3 sudoku code I have to make it 2x2. I'm a newbie to writing JavaScript code. :D I'm going to compare the 3x3 to the 2x3 code and see what I can figure out. Don't expect any results until later 2010, as it will take me that long to figure it out. ;)
Jan 17 '10 #11
tpgames
785 Contributor
2x3 sudoku I can not alter use to learn with, because some of the code is encrypted and I can't be bothered with trying to find a way to unencrypt it. However, the 3x3 sudoku code is beginning to make a little sense. I'm finished with this thread though. However, if I do figure out how to make a 2x2 sudoku using JS, then I'll post it in the JS forum. ;) (You'll have a years wait at least.)
Jan 28 '10 #12

Sign in to post your reply or Sign up for a free account.

Similar topics

5
9995
by: Stewart Gordon | last post by:
I have a few Sudoku puzzles on my site. http://www.stewartsplace.org.uk/mindbenders/ But adding extra columns and rows to separate the 3x3 blocks seems a rather kludgy approach, and the result isn't aesthetically the best either. There ought to be a way of making the grids look nicer. I've played about a bit with rowgroups and colgroups before discovering that rowgroup is called tbody.
11
4141
by: ago | last post by:
Inspired by some recent readings on LinuxJournal and an ASPN recipe, I decided to revamp my old python hack... The new code is a combination of (2) reduction methods and brute force and it is quite faster than the ASPN program. If anyone is interested I attached the code in http://agolb.blogspot.com/2006/01/sudoku-solver-in-python.html
2
1441
tpgames
by: tpgames | last post by:
I have not been able to find source code for a kids (2x2) sudoku game, and was wondering if anyone had the time to volunteer to make a JavaScript version for me that uses images. I only ask, because comparing the 2x3 and the 3x3 source codes I do have, does not help me figure out how to make a 2x2 sudoku game. I also ask because my 4 yr old nephew is hooked on sudoku and really wants one with images. He's been bugging me for 4 months, and I've...
2
1869
tpgames
by: tpgames | last post by:
In a 3x3 sudoku JavaScript with images, what is 48? and 57? I'm trying to convert a 3x3 sudoku to a 2x2. I don't understand why 48 can't be say, 46 or 45; why 57 can't be 54, etc. Its the numbers I don't understand. function KeyDown(whichkey) { if (IsOver) return; if (I_Sel==-1) return; if ((whichkey>=48)&&(whichkey<=57)) { Fld=48-whichkey; window.document.images.src = NPic.src; I_Sel=-1;
0
6742
by: JosAH | last post by:
Greetings, a couple of years ago a large part of the world went totally mad. Not because of global climate changes, not because of terrible wars that were started in the Middle East, nor because of global famine, but because of a puzzle: Sudoku. This is what Sudoku is all about: +-------+-------+-------+
2
4036
by: tesa | last post by:
I am not able to figure out how to make this work. I am trying to create a hangman game. I am in a basic javascripting class. I am to only use very basic code as you can see. I am able to use any online resources to help me. I have added alot of comments for what should be happening however is not happening. I also have a teacher that teaches us one way but then asks us to do things he has not taught. I am trying my very best. Any...
1
3121
by: flg22 | last post by:
Hi I am working on this Rock, paper, scissors java game and the program works, but I can not figure out how to get the images to load onto the program. So my question is how do I get the images to load up with the program? I am using JCreator for this project. I have created the Basic Java Application project, and then added in the 3 .java files that I need to run the program, but I just can not figure out how or where I need to upload the...
3
8605
by: deanchhsw | last post by:
Hello, I'm trying to build a program that solves sudokus and prints out the result on the screen. Here's the code for the class SudokuBoard. this will later be called in a class Sudoku. I'm a newbie, so making this took me hours and hours of time... // class SudokuBoard, will be called by class Sudoku import java.util.Scanner; import java.io.*; public class SudokuBoard { private int board = new int;
3
5973
by: DannyB13 | last post by:
Hi, and thanks for possible help in advance. Here's my dilemma. I've been making a sudoku generator, and I'm now stuck on one part. I must be able to take a 'solution' and verify that it is correct, by checking a few things. 1. There are enough numbers, no 'periods' which signify '0' or 'no input'. 2. That there are no duplicate numbers in any row, column, or 3x3 box. I have been thinking of ways to do this and I've come up with 2 things....
0
9595
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9432
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10059
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10008
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9873
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8891
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6682
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
3974
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3578
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.