- #cs
- Autore: Red Skull 92
- Web : Www.RedSkull92.Wordpress.Com
- mail : RedSkull92@gmail.com
- #ce
- #include <GUIConstants.au3>
- Global $Form = GUICreate("Nick Converter By Red Skull 92", 336, 177, -1, -1, -1)
- Global $nick = GUICtrlCreateInput("", 8, 48, 321, 21)
- GUICtrlSetTip(-1, "Inserisci il tuo nick")
- Global $mod = GUICtrlCreateInput("", 8, 144, 321, 21)
- GUICtrlSetTip(-1, "Nick modificato")
- Global $conv = GUICtrlCreateButton("Converti", 104, 96, 100, 30)
- GUICtrlSetTip(-1, "premi per convertire")
- Global $Label1 = GUICtrlCreateLabel("Nick Converter ", 56, 0, 225, 47)
- GUICtrlSetFont(-1, 26, 800, 2, "Myriad Pro Light")
- GUICtrlSetColor(-1, 0xFF0000)
- GUISetState(@SW_SHOW)
- While 1
- $nMsg = GUIGetMsg()
- Switch $nMsg
- Case $GUI_EVENT_CLOSE
- Exit
- Case $conv
- GUICtrlSetData($mod,"")
- $leggo=GUICtrlRead($nick)
- $a=StringReplace($leggo,"a", "å",0,1)
- $b=StringReplace($a,"A","/\",0,1)
- $c=stringreplace($b,"b","b",0,1)
- $d=StringReplace($c,"B","ß",0,1)
- $e=StringReplace($d,"c","c",0,1)
- $f=StringReplace($e,"C","©",0,1)
- $g=StringReplace($f,"d","d",0,1)
- $h=StringReplace($g,"D","Ð",0,1)
- $i=StringReplace($h,"e", "€",0,1)
- $j=StringReplace($i, "E", "Ê",0,1)
- $k=StringReplace($j, "f", "ƒ",0,1)
- $l=StringReplace($k,"F", "F",0,1)
- $m=StringReplace($l,"g", "g",0,1)
- $n=StringReplace($m,"G", "G",0,1)
- $o=StringReplace($n, "h", "h",0,1)
- $p=StringReplace($o, "H", "[]-[]",0,1)
- $q=StringReplace($p, "i", "i",0,1)
- $r=StringReplace($q, "I", "[]",0,1)
- $s=StringReplace($r, "l", "l",0,1)
- $t=StringReplace($s, "L", "[_",0,1)
- $u=StringReplace($t, "m", "m",0,1)
- $v=StringReplace($u, "M", "]\/[",0,1)
- $w=StringReplace($v, "n", "ñ",0,1)
- $x=StringReplace($w, "N", "]\[",0,1)
- $y=StringReplace($x, "o", "ø",0,1)
- $z=StringReplace($y, "O", "Ø",0,1)
- $1=StringReplace($z, "p", "Þ",0,1)
- $2=StringReplace($1, "P", "þ",0,1)
- $3=StringReplace($2, "q", "q",0,1)
- $4=StringReplace($3, "Q", "Q",0,1)
- $5=StringReplace($4, "r", "®",0,1)
- $6=StringReplace($5, "R", "R",0,1)
- $7=StringReplace($6, "s", "$",0,1)
- $8=StringReplace($7, "S", "§",0,1)
- $9=StringReplace($8, "t", "†",0,1)
- $10=StringReplace($9, "T", "']['",0,1)
- $11=StringReplace($10, "u", "u",0,1)
- $12=StringReplace($11, "U", "Ú",0,1)
- $13=StringReplace($12, "v", "v",0,1)
- $14=StringReplace($13, "V", "\/",0,1)
- $15=StringReplace($14, "z", "z",0,1)
- $16=StringReplace($15, "Z", "Z",0,1)
- $17=StringReplace($16, "x", "x",0,1)
- $18=StringReplace($17, "X", "X",0,1)
- $19=StringReplace($18, "w", "w",0,1)
- $20=StringReplace($19, "W", "\x/",0,1)
- $21=StringReplace($20, "y", "ý",0,1)
- $22=StringReplace($21, "Y", "Ÿ",0,1)
- $23=StringReplace($22, "j", "j",0,1)
- $24=StringReplace($23, "J", "J",0,1)
- $25=StringReplace($24, "k", "k",0,1)
- $26=StringReplace($25, "K", "!<",0,1)
- GUICtrlSetData($mod,$26)
- EndSwitch
- WEnd
Piccolo programma in grado di convertire una parola /nick o altro con caratteri speciali By Red Skull 92
