Game - Rock Paper Scissors - Make The Playagain Function Work

Apr 24, 2010

I have written a game of rock, paper, scissors. There are two things I would like to do here:

1. Make the playagain function work. I would like to have a variable start out as 'y', then be redefined as either 'y' or 'n' when the prompt occurs. If this is not possible, any other way to make this work would be welcome.

2. Use <div> tags and CSS to make .swf's appear and disappear accordingly.

EX: I say scissors, Computer says paper. An swf is played of scissors beating paper. When the anim is over, it disappears, and the game continues.

The Code:

Code:

View 3 Replies


ADVERTISEMENT

HTML Rock Paper Scissors Game?

May 8, 2011

I'm writing a JavaScript application that would prompt the user for a number between 0 and 2, generate a random number for the computer, then take that input and display two images (in this case two hands making rock, paper, or scissor symbols at each other) using an array, and displaying text indicating a win, draw, or loss. I'm having a lot of problems getting this to work as I am new to JavaScript and am wondering if anyone could help me fix this problem. I just want the input from the prompt AND the random number to translate to what in the array should be displayed and what text is then shown at the bottom.

[Code]..

View 3 Replies View Related

If Paper - If Else Rock - Else Scissors?

Apr 12, 2011

I have been working on a "Rock Paper Scissors" game to see if I understand the basics of JavaScript. It all works well until I get to the if statement from lines 30 to 71 in the `fight()`: I have adjusted the reply variable to indicate how it may be "if'ing" through. It seems to be returning the default value of every sub "if" in the overall "if". Am I using the wrong variable for the secondary condition maybe?

Code HTML4Strict:

View 1 Replies View Related

Rock-Paper-Scissors Algorithm - Code A Java Class That Plays ?

Dec 5, 2011

I have an assignment to code a java class that plays rock, paper, or scissors. The class can access the history of past gestures played by both itself and its opponent, but nothing else. The class will be played against others in 10,000 matches and the winner will be determined via round robin format. Other than using a greedy algorithm to determine statistically the best choice from prior gestures and basic pattern recognition I have no decent ideas.

View 6 Replies View Related

Variable Assignments In Rock - Paper - Scissor Game

Apr 4, 2009

I am having a very hard time with this game. i can get the userChoice image to display, and the computerChoice image to display, but i cannot get the checkWinLoseTie() function to work. but i am unsure WHY it isnt working. are my arguments wrong (i know there is something wrong, but cannot get it right!), are the variables even getting assigned a value?

I keep getting the message "you lost" which means that the rest of the stuff is not running!

Here is my code:

This is my other code (ive been trying to get either or to work! cant figure out which one woudl be best)

View 1 Replies View Related

Remove String From My Rock - Paper Scissor Java Game?

Oct 18, 2011

First of all, I wanna make my code using (while loop, do while loop, int, double, if, else, else if, Math.random, Scanner-- not string or boolean).

-Actually the game goes like, after the user and the computer has has selections it is gonna be displayed and then tell who wins and who does not--I dont know how to do it.

- When user presses 4, the the computer tells wins, loses and ties. This happens to me after two tries, wheteher i press 4 or not.(actully its |y/n| in mine and i want to change it to just 4 to quit).

-The user is only allowed numbers from 1 to 4, but apparently, i add any number and it works.

-My code gos like this:

View 2 Replies View Related

Make A Game In Script?

Apr 26, 2010

I need a racing game in java graphics doesn't matter but speed should be good ?

View 2 Replies View Related

Make A Doubled Dice Game ?

Dec 9, 2011

How to make a dice game for two player in javascript and html using just two dice?

1. Each player throws both dice once per turn. You only score if you throw doubles (that is, both dice have the same number of spots on their top face).

2. Players score five points for double ones, twos, fours or fives. A double six scores twenty five points, but if you throw a double three your score goes back to zero.

3. Add your score as you play. The first player to get fifty points wins the game. (An adult or older child may need to help score, but you can use this game to teach younger children to count by fives.)

View 3 Replies View Related

JQuery :: Make A JS Function Work As A Link?

Oct 17, 2010

I'm new to jQuery, but learning fast, and loving the new functionality!I'm using a Flash upload component that all works fine, and once it's complete (file uploaded) it calls function.I'm running the Flash upload in a modal (nyroModal - very cool!). The link below does what I need it to do - navigate to a new page and re-size the modal:<a href="test2.aspx#blabla" class="nyroModal">Ajax Filtering Content #test</a>What I need to work out is how to make the JS function above work in the same way as this link. I know very little JS, but I think the 'class="nyroModal" needs to be part of the link in the function some how??

View 3 Replies View Related

Loop Function Not Working - How To Make It Work

Jun 8, 2009

I have a pretty simple function set up to pull XML data into my page, but there's a couple things wrong with it. I'm REALLY new to J Script and really trying my best to learn, but for some reason I'm not yet adept at googling the right results :rolleyes:At the very bottom you can see the data from the first XML entry, so it seems the function itself is working fine, but it's not looping coorectly to access all the data.Also, I want to pull it into the "shows" div of the page, but can't figure out how to put it there (seriously, I am very new with JS). The code below is not working, but the live site has it added to the body, which does show the one entry.Here's the XML function, the XML data and the HTML markup:

Shows function -

function loaddates()
{
var xmlData = document.getElementById("tourdates");
var newDates = xmlData.getElementsByTagName("dates");

[code]...

View 4 Replies View Related

Alert Function Not Working - How To Make It Work

Apr 10, 2010

Code:

<script>
var timer = 0;
function SpellItOut(word)
{

[code]....

View 3 Replies View Related

Make Items / Inventory In A Text-based Game?

Feb 22, 2009

1. How to make items like in text-based games

2. How to make the items go into the inventory when the timer gets done

View 1 Replies View Related

Making Query String In URL Work (trivia Game)

Jul 23, 2005

I encoded the action = of my form using GET and I can't seem
to get the property/value stuff from it using a JavaScript script I got from
the web.

I want to create a trivia game where the user gets 1 question at a time and
it keeps scoring until the end and gives a summary and I want to do it only
in JavaScript (no ASP, PHP, JSP, etc).

I tried submitting the quiz page to itself using a query string to keep
track of question # but no joy.

I can post code if necessary or is there a trivia game engine made for 1
question at a time instead of all on 1 page?

Anyway, I looked on Google at the query string issue til I'm sick of it. I
found a Beatles trivia game but it was using frames and hidden JavaScript
source files and that's too much work to try and figure out all of that.
Code:

View 2 Replies View Related

JQuery :: Make A Function To Be Able To Change The InnerHTML Of That Div But It Didn't Work?

Jan 5, 2011

I don't really know how to say this, that's why I'm going to show you some code which will hopefully point out what I mean.This is what I wrote yesterday:

var div = $('<div></div>').attr('id','box').fadeIn(1250);
$('body').append(div);

This worked well, but then I wanted to make a function to be able to change the innerHTML of that div but it didn't work.

function changeContent(content) {
var box = $('#box');
box.html(content);

[code].....

View 2 Replies View Related

Make A Search Function Work In A Listbox Full Of Onchange Tags?

Jun 20, 2011

I've got this listbox full of hundreds of employee names. Clicking on a name executes a function using onchange. Because of the length of the list I decided a search function would be really handy and I finally found one that works.

Now the search function, when you type in the input box, scrolls the list to the first matching entry. And that's good, that's what I wanted.

The problem comes in when you try to click on the name the search function found. Nothing happens ofcourse because the onchange tag in the list reacts to changes, not direct clicks.

code:

The list is populated by java but for testing I disabled the function that clears the "Loading" option and I set it to selected. That way the loading option is highlighted by default and the search function is free to highlight something else, then when I click on the search result it works like it's supposed to.

But keeping a highlighted option at the top of the list for that sole purpose isn't very elegant, especially since if you click on it the onchange function tries to execute and generates errors. The only solution I can think of is to use java to generate another option way at the bottom of the list that has the selected attribute but I don't quite know how to do that.

View 1 Replies View Related

Change Window.onload Function To Make Script Work Before Website Loads?

Oct 29, 2009

The following javascript loads after the page loads. Is there a way to change this onload function and make it work as the page is loading?The javascript is meant for mousewheel scrolling for a horizontal website. The website I am using this for has a fixed width - 29000px

Code:
*/

window.onload = function() {
tinyScrolling.init();[code]...

View 3 Replies View Related

Rock And Hard Place - To Swf Object

Aug 30, 2009

If this issue is a JavaScript syntax issue, then I just know you'll spot it.

Context: swfObject2 dynamic embedding.. so the swf object is not written into the code that's sent to the browser. (The swf is there on the resulting page in the browser; doing it's thang just dandy and waiting for further instruction from user action). Function in swf "functInSWF" registered using ExternalInterface.callback(); (I'm working in AS2).

So... javascript:

Code:

The message I'm getting in the debugger is: "TypeError: Result of expression 'thisMovie("someSWF").functInSWF' [undefined] is not a function"... so I'm presuming nothing is being sent to the swf and therefore this is a JavaScript issue I need to track down.

I've tried (what's not recommended) getElementById with the same result.

View 1 Replies View Related

Javascript And Printing On Paper?

Mar 3, 2006

I want to print tables on a regular printer with A4 paper. How do I send data to the printer? And is there a processor for sending html to the printer that the printer understands.

One solution is to open a new window with the javascript and execute a php script that generates tables on that page and then just executes the browsers print version.

However, that is not what I want. I want it to send data to the printer without having to ask the user of permission. Any solution?

View 3 Replies View Related

Onchange Won't Work - How To Make It Work

Mar 15, 2011

this will not work on change. also the innerhtml wont display. please help. here is the js:

function checkemail(){
if (document.suform.email.value && document.suform.emailcheck.value)
{
if (document.suform.email.value == document.suform.emailcheck.value)

[code]...

and here is the html:

Re-type Email: <input type='text' class='rfield' name='emailcheck' id='emailcheck' onchange='checkemail()'></td><td style='position: relative;'><div id='wm' style=' font-size: 11PX; position: relative;'></div>

View 4 Replies View Related

Print Out Datagrid To Paper Using Web Control?

Jul 27, 2005

how to print out datagrid to paper using web control? i am using asp.net in vb.net.... is it need to use javascript to write at the html part? i need to know the print function.

View 2 Replies View Related

Window.print() - Can You Set The Paper Size?

Apr 27, 2007

We have a printer-friendly version of a web page that we want to print. The problem is we want it to print on a legal size paper by default.

View 1 Replies View Related

How Can I Make It Work??

Jan 24, 2006

<script language="JavaScript">
<!-- Begin
var msg="I am flashing!";
var speed=300;
var visible=0;
function Flash() {
if (visible = 0) {
window.status=msg;
visible=1;
} else {
window.status=" ";
visible=0;:confused:
}
setTimeout('Flash()', speed);
}
// End -->
</script>

View 1 Replies View Related

How To Make Sending That Var Work

Jun 5, 2009

function ajaxFunction4(){
document.getElementById('ajaxDiv4').innerHTML='uploading...'
var ajaxRequest; // The variable that makes Ajax possible!

[code]....

View 2 Replies View Related

Make A Dynamic Box Work With Sql

Mar 3, 2011

I cant get to know how can i make a dynamic box work with sql!i found this code online which takes in the values from database and puts it in combo box one,once a field in combo box one is selected the related field will be displayed in combo box two.its like country and state combo box but from sql database. it does not load from database the field for combo box one.

View 2 Replies View Related

JQuery :: Can't Make AddClass Work?

Mar 9, 2011

I have html code:

<div id="dropdown" class="rMenu">
<ul id="middlemenu" class="rMenu-hor rMenu">
<li><a href="page.html">Page</a></li>

[code]....

View 1 Replies View Related

Onmouseout Not Working - How To Make It Work

Jun 9, 2009

I have a webpage with addition questions for numeracy training. I am storing the sums in a table(id="sums"), with an empty textbox(id=ans1) for the user to type the answer. After the user types an answer and moves onto the next Q, I want to activate a popup dispaying if the answer is correct or not. I am tackling this with onmouseout. The script checks the answer, then displays a confirm message if correct or and alert message if wrong. The onmouseout is not working

Code:

input type="text" name="ans1" size="1" maxlength="2" id="ans1" onmouseout="checkAns1();"

Code:

function checkAns1(){
if(document.sums.ans1.value==(document.sums.Q1R1.value + document.sums.Q1R2.value)){
var confirm("correct");

[code]....

View 14 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved