home *** CD-ROM | disk | FTP | other *** search
- function show_prompt(high)
- {
- btn_submit._visible = true;
- btn_skip._visible = true;
- if(high)
- {
- _root.eyeland_hs_currentmessage = _root.eyeland_hs_emailpromptmessage;
- }
- else
- {
- _root.eyeland_hs_currentmessage = _root.eyeland_hs_lowscoremessage.split("%").join(_root.eyeland_hs_lowscore);
- }
- if(_root.eyeland_hs_maxchars > 0)
- {
- if(_root.eyeland_hs_recordplayeremail == "yes" || _root.eyeland_hs_harvest_all_emails == "yes")
- {
- enter_screens.gotoAndPlay("enter_email");
- enter_screens.field_email.holder.gotoAndPlay("field");
- }
- else
- {
- enter_screens.gotoAndPlay("enter");
- }
- if(_root.eyeland_hs_maxchars == 3)
- {
- enter_screens.name_label.gotoAndStop(2);
- }
- enter_screens.field_name.holder.gotoAndPlay("name" + _root.eyeland_hs_maxchars);
- }
- else if(_root.eyeland_hs_recordplayeremail == "yes" || _root.eyeland_hs_harvest_all_emails == "yes")
- {
- enter_screens.gotoAndPlay("enter_email_only");
- enter_screens.field_email.holder.gotoAndPlay("field");
- }
- else
- {
- if(high)
- {
- _root.eyeland_hs_currentmessage = _root.eyeland_hs_nonamemessage;
- }
- enter_screens.gotoAndPlay("message_only");
- }
- }
- _root.eyeland_hs_nonamemessage = "You got a high score!\nClick Submit to record your score anonymously.";
- btn_submit._visible = false;
- btn_skip._visible = false;
- btn_scores._visible = false;
- btn_scores._y = btn_submit._y;
- btn_playagain._visible = false;
- btn_playagain._y = btn_skip._y;
- btn_challenge._visible = false;
- btn_challenge._y = btn_skip._y;
- if(_root.eyeland_hs_result == "yes")
- {
- show_prompt(true);
- }
- else if(_root.eyeland_hs_harvest_all_emails == "yes")
- {
- show_prompt(false);
- }
- else
- {
- btn_scores._visible = true;
- btn_playagain._visible = true;
- if(_root.eyeland_hs_emailtofriend != "no")
- {
- btn_challenge._visible = true;
- }
- else
- {
- btn_scores._x += 50;
- btn_playagain._x -= 50;
- }
- _root.eyeland_hs_currentmessage = _root.eyeland_hs_lowscoremessage.split("%").join(_root.eyeland_hs_lowscore);
- enter_screens.gotoAndPlay("message_only");
- }
- stop();
-