Jump to content

nimaid

Members
  • Posts

    15
  • Joined

  • Last visited

nimaid's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. 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!
  2. Thank you all! I also thought that the getpixel function was the way to go, but had no idea how to get the pic, and static is pretty bad on my cam, but I think i can make this work. hank you!
  3. I want to make a program that will take a picture from my webcam, than take another and compare them. If there are any differences, than play a user defined sound and save the pic to a user defined directory. I am a newb and only know the basics so if you could help me with not only methods but possibly code snippets it would be greatly appreciated!
  4. thank you i will get rid of the pic.
  5. I am a newb, but was wondering how to change my status under my avatar from newbie to something else, something more funny... EDIT: it just changed to member, but Ive seen other ones like following the white rabbit. are these automatically changed depending on what you do on the site and how much of it you do?
  6. EDIT: Never mind i figured it out.
  7. lol thanks!
  8. You are a god. A GOD!!!!!!!!!!!!!!!!!!!!!!!!!!!! :) You are the savior of a people who organize horizontally!
  9. This scared me, especially since my background is a BSOD!
  10. how can i make a pop-up that has that has a title "title" has text "text" has a progress bar labeled "progress" the X in the corner not working, and a cancel button that doe not work, and once the bar fills up, it closes.
  11. How can i make a brute force script where i specify the characters to use and saves the password to a specified directory?
  12. 4M421N'! Th12 12 5o u53r Phr13ndLY 4nD Pr3TTy TH@ 5oM3 P3opL3 M1GHt Th1NK 1T W42 pHL45H! Good, goOd JO8!
  13. it keeps saying that the variable $MS is not declared, i looked at the source, and i dont think it is! yes, i do have the beta version of autoit. please tell me what is wrong! J00 571ll RUL3! H0p3 4Ll 1Z w3ll, n1m41d.
  14. for the pressing of buttons you would use the send function, and for the click of a tab you would move the mouse to where ever the tab is (x,y) and left click. not positive on the 1000 X loop
×
×
  • Create New...