home *** CD-ROM | disk | FTP | other *** search
- stop();
- Selection.setFocus("popup_box.name_txt");
- popup_box.ok_btn.onPress = function()
- {
- if(popup_box.name_txt.text.length == 0 || popup_box.name_txt.text == "")
- {
- alert("이름을 입력하세요 ~");
- Selection.setFocus("popup_box.name_txt");
- }
- else
- {
- popup_box._visible = false;
- name_check = true;
- _root.view_ranking();
- }
- };
- final_ok_btn.onPress = function()
- {
- if(name_check)
- {
- gotoAndStop(205);
- }
- else
- {
- alert("이름을 입력하세요 ~");
- Selection.setFocus("popup_box.name_txt");
- }
- };
-