~azzar1/unity/add-show-desktop-key

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
45
46
47
48
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
                      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
 <head>
  <title>IVLE Python Console</title>
  <script type='text/javascript' src='md5.js'></script>
  <script type='text/javascript' src='json2.js'></script>
  <script type='text/javascript' src='console.js'></script>
  <style type='text/css'>
    #output {
        border: solid blue 1pt;
        height: 24em;
        overflow: scroll;
        margin-bottom: 4pt;
        padding: 4pt;
    }
    #input {
        border: solid green 1pt;
    }
    #prompt {
        font-family: monospace;
    }
    pre.errorMsg {
        color: red;
        margin-top: 0em;
        margin-bottom: 0em;
    }
    pre.inputMsg {
        color: gray;
        margin-top: 0em;
        margin-bottom: 0em;
    }
    pre.outputMsg {
        margin-top: 0em;
        margin-bottom: 0em;
    }
  </style>
 </head>
 <body>
  <div id='output'>
  </div>
  <div id='input'>
   <div id='inputArea'>
   </div>
   <label id='prompt'>&gt;&gt;&gt;&nbsp;</label><input id='inputText' type='text' size='80' onkeypress='catch_input(event.keyCode)'/>
  </div>
 </body>
</html>