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


ADVERTISEMENT

Place A Text At Fixed Place On A Picture With Script?

Jan 19, 2011

Isn't it possible to place a text at a fixed place on a picture with javascript ?

The text will be AJAX updated...

View 5 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

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

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

Place The Drop-down List In The Right Place?

Jul 23, 2009

I use a Time Date Picker Javascript code [URL]. It works fine with a placement problem. When you click one of the last pair input fields on the page, a drop-down list will appear from the input field. In my case, the drop-down list shows on the bottom of a page instead. I can't find the code controls the location of the list.

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

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

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 View Related

Use To Detect Hard Refreshes?

May 2, 2010

I am currently working on a php system and am trying to set up a server side caching system.

IS there anyway to use javascript to detect hard refreshes? I have tried googleing this and have had no success.

View 2 Replies View Related

Javascript File (.js) On Hard Disk

Jul 23, 2005

What is the correct way to incorporate a .js file into an HTML file
*IF* the .js file on a hard disk?

What I have tried is listed below but it does not work... When trying
to access a function module in one of the .js files, I get an error
that the function module is not defined (which would lead me to believe
that it is not being imported with the .js "src" instruction.

Does anyone know how to get around this? Code:

View 6 Replies View Related

How Hard Can It Be To Reload The Main Window?

Jul 20, 2005

I'm trying to reload a frame from a pop-up, but really cannot figure
this out.

Within my index.htm file, I make a link to call a pop-up frame with a
javascript function that calls the following code from an external
javascript source file, dynamically created with PHP...

View 3 Replies View Related

Saving A File To The Hard Drive?

Mar 30, 2010

I am working on a project in which I will have to generate a .html file and save it to the user's hard drive.

View 5 Replies View Related

Reload The Page Without A Hard Refresh?

Jun 5, 2011

When I use document.location.reload() it seems to reload all the images and the css file and it's slow.

I want to reload the page and change the anchor in the url. But when I do document.location = "http://mysite.com/page#anchor" No reload happens because it's already on that url.

Is there any way to reload the current page and change the #anchor without forcing the reload of the images/css?

View 2 Replies View Related

Scan Files On A Local Hard Drive?

May 5, 2009

Is there a way to scan files on a local hard drive using Javascript? I'm trying to create a GUI for a program using html and js. As such the html files will only be accessed from the local machine using Firefox. I would like to avoid using server-side scripts, as I want to use this on a computer without server software installed. My overall objective is I want the javascript to scan all files (data plots I've made) in a directory on the local machine. The JS would create a list of possible dates based on which files were found, the user would then select the date which would then display the corresponding plot.

View 4 Replies View Related

Textarea Wrap Hard And Counting Lines

Jan 5, 2007

Is there any way of counting, on the onkeyup event of a textarea, the number of lines?
I tried with a split, but the wrap doesn't seem to insert any char I could split on?

View 9 Replies View Related

JQuery :: Download Its API Documentation To My Local Hard-drive?

Jan 9, 2010

Is it possible to download the jQuery API documentation to my local hard-drive? If so, I don't need to connect the Internet every time when I want to refer the API docs.

View 2 Replies View Related

How To Retrieve File From Hard Disk And Display On A List?

Feb 6, 2005

I have a javascript code to save form data in XML format. In this, user can provide a filename in which data will be saved.

Now there is a button "Load" which should display the list of files saved by that user and then user can open any file from that list.

I would like to know how to find out how many files have been saved by user and display a list using javascript.

View 2 Replies View Related

Commision Junction Pixel Requires Hard Code - Not Sure What The Hell To Do?

Jun 7, 2011

I'm about to pull my hair out dealing with this pixel.This is the information CJ has given me. The OID (order ID) is a unique alphanumeric ID that needs to be generated on your end, and will be assigned to each unique transaction that occurs. If the OID is not unique, meaning if our system detects a duplicate OID for another transaction, the second transaction will be ignored, which is why it is important that unique OIDs are generated for each transaction (in your case, for each lead form that is completed and submitted) and

What I would suggest doing for your OID, is hardcoding a time and date stamp into the pixel to act as the OID. When you do this, you must exclude any symbols (colons, slashes, periods, etc) from the time/date stamp, and have the time be recorded all the way down to the millisecond. Since it will be extremely rare (if it happens at all) that two transactions will occur within the same millisecond, it will create a unique number to act as the OID for each lead that is submitted.

[Code]...

View 7 Replies View Related

Javascript Function To Save The Modified Page Into Local Hard Disk...

Nov 13, 2002

I use NETSCAPE established a catalog page in XML, which uses Javascript-DOM to add, remove and sort the products by their prices. But which Javascript function should I use in order to save the modified page into local hard disk? to sort products as well.

View 1 Replies View Related

JQuery :: Deubugging \ Syntax Errors Keep Getting In The Way And It's Hard To Track Down Without Any Error Reporting?

May 1, 2009

Is there any such thing as a jQuery Debugger, i'm trying to learn jQuery but even small things like Syntax errors keep getting in the way and it's hard to track down without any error reporting.

View 1 Replies View Related

How To Place A <br> In A Javascriptfunction?

Jul 20, 2005

i have a function in javascript. when someone clicks on a link the text in a
layer changes.

i want breaks in the text, in html you would use '<br><br>'.
i tried this in the variable that contains the text but it does not work.

so my question is: how do i get these breaks in the text, so that the text
looks good in the layer?. Code:

View 2 Replies View Related

Any Way To Place Focus On DIV?

Dec 29, 2009

Is there a way to put the focus on a DIV. Let's say I have several DIV's on a long page. I would like to move the focus to any DIV.

View 1 Replies View Related

Where To Place Link To Js File

Jul 23, 2005

I am building a stand alone help file system (.chm) I have a script for
popups that I intend to re-use through-out. The code works fine when the
script is above the <head> tag in the html document.

However, I have been unable to get the page to load if I just link to the
script. It seems that the script link needs to be placed in different
locations dependsing on what you are doing. Any insight?

View 1 Replies View Related

Hide DIV Place Holder

Aug 15, 2005

This works fine in netscape but IE won't do it. I have a div which contains
some links and a thumbnail. What's supposed to happen is when you click the
thumbnail the links disapear and the now invisible div is resized moving
everything below it. In IE it only resizes as small as the size of the dive
plus the size of the links. Code:

View 2 Replies View Related

Place Text At Cursor

Feb 10, 2009

Javascript is my very weakest, and i'm not all that good..I need to adapt this (already working) code to add the text where the cursor is within the textarea.Like i say, the above code works fine, its just now to get it place where the cursor is within the box.

View 3 Replies View Related







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