-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathjsaheui_ko.html
44 lines (41 loc) · 1.53 KB
/
jsaheui_ko.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>자바스크립트로 된 아희 처리기</title>
<script type="text/javascript">
msg_coordinate = "위치: "
msg_character = "명령: "
msg_input_number = "숫자를 입력하세요. 실행을 멈추려면 !!!를 입력하세요.";
msg_input_character = "글자를 입력하세요. 실행을 멈추려면 !!!를 입력하세요.";
</script>
<script type="text/javascript" src="jsaheui.js"></script>
</head>
<body>
<h2>자바스크립트로 된 아희 처리기</h2>
<form action="">
<table>
<tr>
<td valign="top">
<textarea name="aheui" rows="20" cols="80" style="scrollbar=both;"></textarea><br/>
<input type="button" value="초기화" onclick='javascript:chogi();'>
<input type="button" value="실행" onclick='javascript:silhaeng();'>
<input type="button" value="멈춤" onclick='meomchum = true;'>
<input type="button" value="한 단계만" onclick='javascript:dan_gye(true);'>
<input type="button" value="메시지 지움" onclick='javascript:document.forms[0].output.value="";'><br/>
<textarea name="output" rows="10" cols="80" style="scrollbar=both;"></textarea>
</td>
<td valign="top">
<input type="checkbox" name="debug" checked="checked" onchange='javascript:debug=document.forms[0].debug.checked;'>디버그<br/>
<textarea name="dumps" rows="31" cols="10" style="scrollbar=none;"></textarea>
</td>
</tr>
</table>
</form>
<script type="text/javascript">
<!--
chogi();
-->
</script>
</body>
</html>