Is there any way to convert simple HTML code to AutoIt code that would display in a GUI? The HTML code is easy enough to turn into AutoIt code, but I am somewhere between beginner and intermediate and am not very good yet. I have tried to no avail to do it myself. Here is the code I need converted:
<html>
<head>
<title>UNICODE Text Flipper</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="description" content="uʍop ǝpısdn">
<style type="text/css">
body, textarea { font-family: "Arial Unicode MS", Batang; padding-left:8px; font-size:11pt;}
h1 {color:#234690;}
a:link, a:visited {color:#888888;}
.l {font-weight:bold;color:#c28667;}
</style>
<script language="Javascript">
function flip() {
var result = flipString(document.f.original.value.toLowerCase());
document.f.flipped.value = result;
}
function flipString(aString) {
var last = aString.length - 1;
var result = new Array(aString.length)
for (var i = last; i >= 0; --i) {
var c = aString.charAt(i)
var r = flipTable[c]
result[last - i] = r != undefined ? r : c
}
return result.join('')
}
var flipTable = {
a : '\u0250',
b : 'q',
c : '\u0254',
d : 'p',
e : '\u01DD',
f : '\u025F',
g : '\u0183',
h : '\u0265',
i : '\u0131',
j : '\u027E',
k : '\u029E',
l : '\u05DF',
m : '\u026F',
n : 'u',
r : '\u0279',
t : '\u0287',
v : '\u028C',
w : '\u028D',
y : '\u028E',
'.' : '\u02D9',
'[' : ']',
'(' : ')',
'{' : '}',
'?' : '\u00BF',
'!' : '\u00A1',
"\'" : ',',
'<' : '>',
'_' : '\u203E',
'\\' : '/',
';' : '\u061B',
'\u203F' : '\u2040',
'\u2045' : '\u2046',
'\u2234' : '\u2235'
}
for (i in flipTable) {
flipTable[flipTable[i]] = i
}
</script></head>
<body>
<h1>Flipping characters with UNICODE</h1>
<form name="f">
<span class="l">you type it:</span><br>
<textarea rows="3" cols="70" name="original" onkeyup="flip()" style="background-color: #c6f6f3;color:#555577;"></textarea>
<!--<input value="Flip" onclick="flip()" type="button">--><br>
<span class="l">:uʍop ǝpısdn</span><br>
<textarea rows="3" cols="70" name="flipped" readonly style="background-color: #e6e6fa;color:#555577;"></textarea>
</form>
Please Help!