Arrow

editing the times for answering | Family Feud | Forum

Back to the Family Feud post

Please consider registering
guest

Log In

Lost password?
Advanced Search

— Forum Scope —

  

— Match —

   

— Forum Options —

   

Minimum search word length is 4 characters - maximum search word length is 84 characters

Topic RSS
editing the times for answering
February 19, 2009
1:20 am
colleen
Guest

I have downloaded adobe flash CS4 and i am having trouble drilling down to the count variable to change the time for the fast money round. Once i click on the fastmoney.fla what do i do next.

thanks

February 24, 2009
1:27 pm
Dubbya
Guest

Hi,

The actions page contains clues within the script that should help you with questions such as these.

In addtion, be sure to read the readme file which includes tips on how to modify and run the game.

  1. Open the project file (FastMoney.fla)
  2. Press the "F9" key or mouseclick "Window" then "Actions" to open the Actions code page.
  3. Scroll down to line #82 where you'll see the following functions
  4. function twentyCnt(e:Event):void
    {
    count = 20; // number of seconds for first contestant to answer 5 questions.
    // changing this value will not alter the number on the button.
    countdown_mc.timer_txt.text = count;
    }

    function twentyfiveCnt(e:Event):void
    {
    count = 25; // number of seconds for second contestant to answer 5 questions.
    // changing this value will not alter the number on the button.
    countdown_mc.timer_txt.text = count;
    }

  5. Change the "count" values to change the time.

Be advised that the buttons are graphics and that they won't change when you change the time.