ActionScript 2.0 :: Check For Swear Words?

Apr 24, 2005

I'm creating a little interactive art game in Flash MX 2004 that is based on the old ZORK type interactive text only games, although mine has visual content as well. I've got the script working as far as sending the user to my chosen frames when a reply is typed and the enter key is pressed, but I'm having trouble with my "curse words" feature. What is want is that when the user types a swear word and hits Enter, they will go to the "swear" frame where they are scolded and sent back to the beginning of the game.

I can guess the most likely swear words to be typed, but I'm not sure how to write the script to make Flash watch the input field (variable name is reply) and know when one of the target words is typed, and then send the user to my "swear" frame. This functionality needs to be on just about every frame.

View 2 Replies


Similar Posts:


ActionScript 2.0 :: LoadVariables - Check If The Text File Words Are Loaded Before It Continues With The Game?

May 19, 2009

I'm loading words from a .txt file to a Flash crossword puzzle. It works perfect locally, but has trouble when uploaded to the web. Sometimes it works, but usualy has trouble loading the words. Is there a way I can check if the text file words are loaded before it continues with the game? This is what I'm using code: loadVariables (myDomain + "words/" + myPuzzle + ".txt", "");

View 2 Replies

ActionScript 2.0 :: Gettings Words From Database And Searching For Those Words In A Textfield?

Jan 31, 2010

so i search for keywords ofc, but...doing this isn't really my thing:input.text.indexOf("spam") != -1 && input.text.indexOf("more") ! -1 && ... etc
I'd like to make it some what like:input.text.indexOf(<database>) != -1

View 0 Replies

ActionScript 3.0 :: 1180: Call To A Possibly Undefined Method Check -> Var RightCheck = New Check();

Oct 2, 2009

See [URL] Now there is a button called Answera, which when clicked should have a symbol (movie clip) called Check appear at the cordinated specified. Check exists in the libary (but does not have an instance name) and no where else on the stage. when I run this code I get: 1180: Call to a possibly undefined method Check. -> var rightCheck = new Check(); How is it undefinded if it exists in the libary?

View 7 Replies

Actionscript 3 :: Check The User Selections On Dynamically Generated Radio Buttons And Check Boxes In Flex?

Jan 27, 2011

The following is my codes. This is still work in progress; so, you will see some functions with empty contents. Plus, this is my first Flex application; please bear with me. This is a quiz application that gets the questions and answers to each questions from a ColdFusion web service. There are three types of questions, True or False, Multiple Choice with single selection, and Multiple Choice with multiple selections. So, based upon the question type, the application would dynamically generate the appropriate amount of radio buttons or check boxes for the users to select. I got these working. The problem that I am having is, I am not sure how to check what the users have actually selected. In some other forums and posts on other web site, it said that I can use event.currentTarget.selectedValue to get the user selection. But when I actually do it, I got a run-time error saying, "Property selectedValue not found on mx.controls.FormItem and there is no default value." My question is, what do I need to do to capture the user selections?

[Code]...

View 1 Replies

Fading Words In And Out?

Jul 15, 2009

Anyway, I want to do something really basic and simple. I want to have a word fade in then fade out. Then another word in another place fade in and fade out.

View 1 Replies

ActionScript 3.0 :: The Words To Appear Just When A Specific Key Is Down

Jun 27, 2010

i'm trying to do the following: i have a movieclip that show random words, and i want the words to appear just when a specific key is down.

[Code]...

View 7 Replies

ActionScript 3.0 :: Get Song Without Words?

Aug 15, 2010

Where I can find song without words?

View 2 Replies

ActionScript 3.0 :: How To Write Words In DrawCircle

Nov 11, 2010

I draw a red color circle,likefollows:graphics.beginFill(color);graphics.drawCircle(0,0,radius);graphics.endFill();Then I want to write a yellow color word in the middle of this circle,for example,I write 'Menu A' in the middle of the circle,what code can I use?

View 1 Replies

ActionScript 3.0 :: Way To Show Words Effect

Jan 5, 2011

I have a word,its content is follows:var txt:String="abcdefg";I want to show word from the first letter to the last letter,the word effect is one by one. For example,at the beginning I only show the first letter 'a',the 'a' size is big,such as 30,and then the letter 'a' size minish gradually to 20.Then show the second letter 'b',first,the letter 'b' size is big also,such as 30,and then the letter 'b' size minish gradually to 20,and the letter 'b' is behind the letter 'a',and so on with letter 'c'. When all letters show,the effect stops.

View 1 Replies

ActionScript 3.0 :: How To Get Several Words To Appear On Stage With Buttons

Nov 19, 2011

I want to have serveral different words to appear on my stage with their own buttons. Here is my code for your review.
Process.visible = false;
Cycles.visible = false;
stop();
function playMovie(event:MouseEvent):void {
play();
[Code] .....

View 1 Replies

Flex :: Convert Number Into Words

May 5, 2010

I am trying to convert an entry using a numeric stepper in flex into words to display in a textarea.i.e a user uses the stepper to enter "89" as a value and in the text area the words "Eighty nine" are displayed.After much searching i haven't found anything that helps - a few javascript functions but that is all.

View 1 Replies

ActionScript 2.0 :: Loading XML Words Into Array?

Jul 11, 2009

var answer_array:Array = new Array();
var wordsLoader:XML = new XML();
wordsLoader.ignoreWhite = true;

[Code]....

All of the values in my array are coming up "undefined".

View 1 Replies

ActionScript 2.0 :: Finding All Words With Different Endings

Sep 6, 2010

I have a button that inserts an mc named coin, and adds a number to the end. So if you hit it, it will make coin 1, then coin2, then coin3, ect. I wan't to have a hit test in an mc named character to check if it his any of the coin mc's.

View 5 Replies

ActionScript 3.0 :: Split Apart Textfield Into Words?

Oct 25, 2010

I have a document class which is linked to an external class that defines the properties of a specific textfield. When the user submits the text in the textfield (whatever they typed into it) I would like the text to be broken up into the individual words and have those words placed into separate movie clips (the same instance of a movie clip, just each word placed into a different one). How can I do this? Here is the code I am using.

Code:
function replaceText(event:MouseEvent):void { //beginning of the function for the submit button

[code].....

View 0 Replies

ActionScript 3.0 :: Removing Words From An Array?

Dec 7, 2010

I have a sentence that's basically items from an array, and I have this line that when I type one of those words on it, that word is removed from that sentence/array. And I'm having trouble coming up with a function, I'm trying to make it an if statement.so far I tried: and I know I need to put splice in, but this is just to see if it works or not.

ActionScript Code:
if(enterWordLine.text == sentenceLine.text)
{

[code]......

View 2 Replies

ActionScript 3.0 :: How To Show Words Effect

Jan 6, 2011

I have a word,its content is follows:var txt:String="abcdefg";I want to show word from the first letter to the last letter,the word effect is one by one. For example,at the beginning I only show the first letter 'a',the 'a' size is big,such as 30,and then the letter 'a' size minish gradually to 20.Then show the second letter 'b',first,the letter 'b' size is big also,such as 30,and then the letter 'b' size minish gradually to 20,and the letter 'b' is behind the letter 'a',and so on with letter 'c'. When all letters show,the effect stops.

View 2 Replies

ActionScript 2.0 :: Getting The First Letters From A String Of Words?

Jan 18, 2005

For a rather complex search function I need to get the first letter of each word entered into an input field. At first glance this may not seem like a big problem if every word is neatly seperated by a space.

Although people can enter whatever they want into the field I only want to work with the words that start with a-z or A-Z.

I'm having a bit of trouble figuring out how I can determine if a character in the string falls into this selection. One of the possibilities is to use charCodeAt(), but that's rather rough. I can walk through the string using indexOf() but I may have trouble finding the next word if characters other than a space come into play.

[Code]...

View 4 Replies

ActionScript 2.0 ::changing In Words Like That Menu ?

Jan 22, 2005

create the word which changing many time and in the end become a clear word like what's happend exactly in horizintal menu in [url]...

That's what i wanted !! the changing in words like that menu ?

View 3 Replies

ActionScript 2.0 :: List Of Words To Put In Fla Is Extense

Dec 20, 2005

I'm doing a external image slider, and i have to put some words appearing with each image. Those words must be editable, so i can't just simply draw them on photoshop. Besides that, must be updated sometimes. Finnaly, there is an motion tween applied to the words. Now, the problem is this: The list of words to put in this fla is extense (something like 20 words). So, to update this, i don't want to open flash and edit one by ony, having to edit in place all the words in all the motion layers, it would be very anoying. So i'd like to use something like a notepad file to update these words, or something looked like...

[Code]...

View 6 Replies

ActionScript 2.0 :: Display Random Words And Fly Off

Mar 14, 2007

I want to have a name appear on my Flash page stay for 10 seconds, and fly off then another name and so on... So it would sort of be like "her name was... JENNY", and the "JENNY" would be the bit that changed... I don't want it to ever end either so would I need to have some sort of file with like a million names in there that Flash would pull in?

View 1 Replies

ActionScript 2.0 :: Finding Words In Loaded XML?

Sep 22, 2009

I'm loading an external XML file, with numerous items. Each item has it's own 'description' tag. What I'm trying to figure out is how can I more properly execute this:

- Find multiple keywords in all loaded items, if I find any of the selected keywords how can I fire off a separate function to my project (Example: If I find the word "hamburger" in one of the lets say, 54 loaded entries, how can I tell my flash project "if you find "hamburger", hamburgers = 1). Same thing goes if I find "hamburger" within 4 xml items, and "hotdogs" in 12 of the entries making flash know hamburgers = 4 and hotdogs = 12.

My predicament really is on ruling out numerous incorrect amounts. Example, If one xml item has hamburger three times, and another xml item has hamburger only once, getting only one valid "hamburger hit" (that was cleaver terminology, wasn't it? ) instead of three hits for that one xml item.

So, I'm trying to let flash know, if you notice "hamburger" once, and only once in an xml item, stop counting the hamburgers, and the item's hamburger value is only 1. If the item has no keywords (example, hamburgers, hotdogs, watermelons, soda, blah blah, (lets say a total of 30 keywords) ) do nothing and do not count the item and move to the next for keyword function searching.

View 2 Replies

ActionScript 3.0 :: Cut Off Long Words In TextField?

Aug 20, 2010

I have a text field with a width of 10, and a height of 100. The text I'm inputting is something like:

"Hi thisisareallylongwordthatdoesntfitinthefirstline"

After setting the text, the text field becomes:

Hi
thisisareallylongwordth
atdoesntfitinthefirstline

I want it to be:

Hi thisisareallylongwor
dthatdoesntfitinthefirs
tline

What I'm trying to say is I don't want there to be a new line when the second word doesn't fit. I want to cut off the second word.

I've looked through TextField and TextFormat and I can't find anything that addresses this. Did I overlook something?

View 7 Replies

IDE :: CS5 Create Words From Falling Snow

Oct 20, 2010

I'd like to ask if anyone knows how to create words (example Merry Christmas) from falling snow. I'm trying to build a xmas card and the customer wants the wishes to be created from the snow leafs.

View 2 Replies

ActionScript 2.0 :: Put An Outer Glow Around Words?

Sep 16, 2004

Is there any way that you can put an outer glow around words in flash??

View 4 Replies

ActionScript 2.0 :: [FMX] Getting The First Letters From A String Of Words?

Jan 18, 2005

For a rather complex search function I need to get the first letter of each word entered into an input field. At first glance this may not seem like a big problem if every word is neatly seperated by a space. Although people can enter whatever they want into the field I only want to work with the words that start with a-z or A-Z. I'm having a bit of trouble figuring out how I can determine if a character in the string falls into this selection.One of the possibilities is to use charCodeAt(), but that's rather rough. I can walk through the string using indexOf() but I may have trouble finding the next word if characters other than a space come into play. Say I have a string like: Super "big hamburger"notice the 'accidental' double space after super) What I want to get out of it is: Super big Hamburgerhich I later decrease to: s b h

View 4 Replies

Generating Random Letters / Words Into MovieClips

Jan 20, 2010

I am making a game where random letters and words are generated into movieclips, thats the background. I built it using arial as my font, however I then decided to go with a fixed width font to make sizing the movieclips to the words much more straightforward. Yesterday this worked fine, the font i am using (Liberation Mono) is installed on my computer, all the textboxes which use this font have the character embedding on them, and I have not changed any of the movieclips, only non-relevant code. So I run it up again today and none of the words appear. Thinking it might be some code changes I made I go thourhg tracing out everything, only to find the wrds are being generated, and written to the textbox absolutely fine. I switch back to Arial just as a check and bang it works again.

View 1 Replies

ActionScript 2.0 :: Replace With Random Words In Array

Jul 23, 2010

I want something where I click a button, and it replaces words with other synonyms automatically. My thoughts are:

set up array
(array1=array2)
array1="word1","word2","word3"
array2="word1","word2","word3"
search text for word in array1
if find in text= word in array1
replace with random word in array2

Would anyone know how to set this up, or point me in the right direction?

View 14 Replies

Random Words From Identical Arrays Without Repeating

Feb 13, 2011

I'm trying to build a bingo card, that will show random words in different locations each time you reload the page. It's 5x5 grid. I'm planning to set up 25 arrays (for each text field on my card), containing lists of the same 25 words. I have a code that pulls random words from each array into my text fields, but I can't figure out how to prevent the words from repeating on the card. A different word should be pulled out from each array.

Here is my code so far:

var words1:Array = ["word","table","lamp"];
var words2:Array = ["word","table","lamp"];
var words3:Array = ["word","table","lamp"];

[Code].....

View 19 Replies

ActionScript 3.0 :: How To Count Number Of Words In A String

Dec 15, 2009

Is it only possible by counting the number of white spaces appearing in the string?

View 4 Replies







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