editing the times for answering | Family Feud | Forum
Topic RSS
editing the times for answering
February 24, 2009
1:27 pm
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.
- Open the project file (FastMoney.fla)
- Press the "F9" key or mouseclick "Window" then "Actions" to open the Actions code page.
- Scroll down to line #82 where you'll see the following functions
- Change the "count" values to change the time.
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;
}
{
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;
}
Be advised that the buttons are graphics and that they won't change when you change the time.