home *** CD-ROM | disk | FTP | other *** search
- stop();
- name_txt.restrict = "a-z 0-9.:\\-@";
- Selection.setFocus(name_txt);
- Selection.setSelection(name_txt.length,name_txt.length);
- ok_btn.onRelease = function()
- {
- if(name_txt.length > 0)
- {
- _root.game_so.data.playerName = name_txt.text;
- }
- Body = "Check out Sheepteroids - at www.kwikgames.com/sheepteroids.htm\n\n" + Body;
- loadVariablesNum("http://www.kwikgames.com/cgi/flashemail.php",0,"POST");
- nextFrame();
- };
- ok_btn.onKeyDown = function()
- {
- if(Key.getCode() == 13)
- {
- Key.removeListener(ok_btn);
- this.onRelease();
- }
- };
- Key.addListener(ok_btn);
-