When we presented Word Guessing or Synonym Game for Two Tutorial we were curious about โฆ
- word game โฆ
- played by more than one player โฆ
- all using the one device
โฆ and, back then, settled on a two player word game that worked it so that โฆ
- one player enters word guesses via mouse or touch gestures on that โone deviceโ โฆ
- one player enters word guesses via keyboard on that โone deviceโ
โฆ but, today, weโre revisiting this word game trying to add โฆ
- one player enters word guesses via mouse or touch gestures on that โone deviceโ โฆ
- one player enters word guesses via keyboard on that โone deviceโ โฆ
- one player enters word guesses via right mouse clicks on that โone deviceโ โฆ
โฆ via the great context menu (ie. right click โoncontextmenuโ event) access advice used in โฆ
if (document.addEventListener) {
document.addEventListener('contextmenu', function(e) {
if (rcok) {
e.preventDefault();
activeplayer=3; //alert("You've tried to open context menu"); //here you draw your own menu
document.getElementById('tblthree').style.visibility='visible';
document.getElementById('tblone').style.visibility='hidden';
document.getElementById('sone').style.textDecoration='underline';
document.getElementById('sone').style.cursor='pointer';
}
}, false);
} else {
document.attachEvent('oncontextmenu', function() {
if (rcok) {
window.event.returnValue = false;
activeplayer=3; //alert("You've tried to open context menu");
document.getElementById('tblthree').style.visibility='visible';
document.getElementById('tblone').style.visibility='hidden';
document.getElementById('sone').style.textDecoration='underline';
document.getElementById('sone').style.cursor='pointer';
}
});
}
โฆ thechanged wordguessgamehtml code in live
run Word Guess Game for Up to Three.
Stop Press
The Bulls and Cow game ideas in December 2022 in HTML/Javascript Bulls and Cows Game Primer Tutorial helped with ideas to improve the โnamesโ management parts to this game for atweaked wordguessgamehtml code in live
run Word Guess Game for Up to Three.
Previous relevant Word Guessing or Synonym Game for Two Tutorial is shown below.
The reminder of just how brilliant is the โฆ
- WordReference website โฆ the reminder occurring when we presented the recent Italian French Spanish Verb Conjugation Emoji Image Tutorial โฆ combined with โฆ
- the search for a web application with synergy, leading us to Word Guessing Game for Two Primer Tutorial โฆ has us, today โฆ
โฆ adding onto โฆ
- Word Guess โbuzzing inโ for two players โฆ with โฆ
- Synonym (in English) Guess โbuzzing inโ for two players
โฆ as some additional functionality to this game calling on the good olโ โ/usr/share/dict/wordsโ inbuilt dictionary of words that comes with Linux (and macOS) โout of the boxโ โฆ hooooorayyyyy!
In broad brush terms, we use โฆ
- the Linux โ/usr/share/dict/wordsโ inbuilt dictionary of English words to pick a candidate word โฆ
- ask, via jQuery Ajax of WordReference if this word has synonyms โฆ
- if not, reask โ/usr/share/dict/wordsโ inbuilt dictionary for a word โฆ else โฆ
- sit there and wait for a โbuzz inโ via mouse or keyboard for a player answer, and if they are correct, their score increases by the length of the synonym word(s)
Hereโs a liverun and here is the HTML programming source code you could call thechanged wordguessgame
html code.
Previous relevant Word Guessing Game for Two Primer Tutorial is shown below.
Word Games help vocabulary for ESL students. There is also not much doubt that collaboration can help ESL students, who also learn quicker with other students present.
Today we create a web application Word Guessing Game designed for two. Not two devices, the one device for two users (hovering over it). So for โฆ
- non-mobile users can play the game with one user using the mouse and the other using the keyboard
- mobile users can play with one user using touch on the blue areas of the web application and the other using touch on other places
The events we code for are โฆ
- onclick โฆ will be recognised on non-mobile platforms
- ontouchstart โฆ will be recognised on mobile platforms (where it will supercede any onlick event)
- onkeyup โฆ will be recognised on non-mobile platforms
โฆ so you can see that the colour coding of the webpage becomes important for the mobile platform usage.
Todayโs game tests English vocabulary skills. Why just English? Well, it uses English words, based on the dictionary arrangements at its (web) server, which happens to be based on English.
Programmers often use Linux dictionary files as a means to get a word list, and that list could be in any language, and for ours it is English.
Hereโs a liverun and here is the HTML programming source code you could call wordguessgame
html which, again, uses some PHP weโve talked about with a lot of our word games at this blog, on a โClient Pre-Emptive Iframeโ scenario in a couple of HTML iframe elements we include into todayโs game. We thank this free online English dictionary that gets called on if the user chooses to.
We hope you try it, and like it. By the way, you can also play the game as a single user.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.