Jump to content

Water Vapor v1.3BETA


WolfWorld
 Share

Recommended Posts

Its build with Autoit(of couse), its a new script language, I'm not planning to opensource it until version 3

The manual will be posted here in days (sorry not at home now)

Download Water Vapor http://bluebirdtr.co.cc/wp-content/plugins...wnload.php?id=2

Now this is with iTunes and Zune software, it will make the main window transparent(this can easy be done in autoit, but this shows what Water Vapor can do)

Download for iTunes http://bluebirdtr.co.cc/wp-content/plugins...wnload.php?id=3

Download for Zune http://bluebirdtr.co.cc/wp-content/plugins...wnload.php?id=4

Source code for iTunes Transparent

SET|title|iTunes

SET|text|show genius sidebar

SET|new| iTunes

SET|backtwo|-3

SET|245|245

WINWAIT|title|em

SETTITLE|title|em|new

SETTRANS|new|text|245

JUMP|backtwo

Source code for Zune Transparent

SET|title|Zune

SET|text|

SET|235|235

SET|jump|-2

WINWAIT|title|text

SETTRANS|title|text|235

JUMP|jump

Run the script with Water Vapor and open iTunes/Zune

See this for more detail

http://bluebirdtr.co.cc/2009/01/15/making-...re-transparent/

FULL DETAIL ON HOW TO USE IT, YES IT A BIT CONFUSING.

Vapour Automation v1.3BETA, At last out of alpha! Add much more advance functions

Functions detail, Most detail is copy from Autoit Help File
O = Optional

SET|S1|S2
S1 = Varible that you want to put the value
S2 = The Value you was to put in to S1

SEND|S1|S2O
S1 = Text to send/type
S2 = Send it raw(1) or normal(0)
{!} ! 
{#} # 
{+} + 
{^} ^ 
{{} { 
{}} } 
{SPACE} SPACE 
{ENTER} ENTER key on the main keyboard 
{ALT} ALT 
{BACKSPACE} or {BS} BACKSPACE 
{DELETE} or {DEL} DELETE 
{UP} Up arrow 
{DOWN} Down arrow 
{LEFT} Left arrow 
{RIGHT} Right arrow 
{HOME} HOME 
{END} END 
{ESCAPE} or {ESC} ESCAPE 
{INSERT} or {INS} INS 
{PGUP} PGUP 
{PGDN} PGDN 
{F1} - {F12} Function keys 
{TAB} TAB 
{PRINTSCREEN} PRINTSCR 
{LWIN} Left Windows key 
{RWIN} Right Windows key 
{NUMLOCK} NUMLOCK 
{BREAK} for Ctrl+Break processing 
{PAUSE} PAUSE 
{CAPSLOCK} CAPSLOCK 
{NUMPAD0} - {NUMPAD9} Numpad digits 
{NUMPADMULT} Numpad Multiply 
{NUMPADADD} Numpad Add 
{NUMPADSUB} Numpad Subtract 
{NUMPADDIV} Numpad Divide 
{NUMPADDOT} Numpad period 
{NUMPADENTER} Enter key on the numpad 
{APPSKEY} Windows App key 
{LALT} Left ALT key 
{RALT} Right ALT key 
{LCTRL} Left CTRL key 
{RCTRL} Right CTRL key 
{LSHIFT} Left Shift key 
{RSHIFT} Right Shift key 
{SLEEP} Computer SLEEP key 
{ALTDOWN} Holds the ALT key down until {ALTUP} is sent 
{SHIFTDOWN} Holds the SHIFT key down until {SHIFTUP} is sent 
{CTRLDOWN} Holds the CTRL key down until {CTRLUP} is sent 
{LWINDOWN} Holds the left Windows key down until {LWINUP} is sent 
{RWINDOWN} Holds the right Windows key down until {RWINUP} is sent 
{ASC nnnn} Send the ALT+nnnn key combination 
    
{BROWSER_BACK} 2000/XP Only: Select the browser "back" button 
{BROWSER_FORWARD} 2000/XP Only: Select the browser "forward" button 
{BROWSER_REFRESH} 2000/XP Only: Select the browser "refresh" button 
{BROWSER_STOP} 2000/XP Only: Select the browser "stop" button 
{BROWSER_SEARCH} 2000/XP Only: Select the browser "search" button 
{BROWSER_FAVORITES} 2000/XP Only: Select the browser "favorites" button 
{BROWSER_HOME} 2000/XP Only: Launch the browser and go to the home page 
{VOLUME_MUTE} 2000/XP Only: Mute the volume 
{VOLUME_DOWN} 2000/XP Only: Reduce the volume 
{VOLUME_UP} 2000/XP Only: Increase the volume 
{MEDIA_NEXT} 2000/XP Only: Select next track in media player 
{MEDIA_PREV} 2000/XP Only: Select previous track in media player 
{MEDIA_STOP} 2000/XP Only: Stop media player 
{MEDIA_PLAY_PAUSE} 2000/XP Only: Play/pause media player 
{LAUNCH_MAIL} 2000/XP Only: Launch the email application 
{LAUNCH_MEDIA} 2000/XP Only: Launch media player 
{LAUNCH_APP1} 2000/XP Only: Launch user app1 
{LAUNCH_APP2} 2000/XP Only: Launch user app2 

SLEEP|S1
S1 = Time to sleep/stop in milisecond

FLASH|S1|S2O|S3O|S4O
S1 = The title of the window to read
S2 = Text of the window to read
S3 = The amount of times to flash the window. Default 4
S4 = The time in milliseconds to sleep between each flash. Default 500 ms

JUMP|S1
S1 = The line to jump to. This is not the number of line its the number to jump back, If you on line 36 and you want to jump to line 34 you will use -2

WINMOVE|S1|S2|S3|S4|S5O|S6O|S7O
S1 = The title of the window to move/resize
S2 = The text of the window to move/resize.
S3 = X coordinate to move to.
S4 = Y coordinate to move to.
S5 = New width of the window.
S6 = New height of the window.
S7 = the speed to move the windows in the range 1 (fastest) to 100 (slowest). If not defined the move is instantaneous.

SETTITLE|S1|S2|S3
S1 = The title of the window to change.
S2 = The text of the window to change.
S3 = The new title to give to the window.

SETTRANS|S1|S2|S3
S1 = The title of the window to change.
S2 = The text of the window to change.
S3 = A number in the range 0 - 255. The lower the number, the more transparent the window will become. 255 = Solid, 0 = Invisible.

ACTIVATE|S1|S2O
S1 = The title of the window to activate.
S2 = The text of the window to activate.

EQUAL|S1|S2|S3
IF S1 is EQUAL to S2 Then JUMP(CALL JUMP COMMAND) to S3 line.

MORE|S1|S2|S3
IF S1 is MORE to S2 Then JUMP(CALL JUMP COMMAND) to S3 line.

LESS|S1|S2|S3
IF S1 is LESS to S2 Then JUMP(CALL JUMP COMMAND) to S3 line.

ADD|S1|S2
Add S2 to S1 result is store in S1

SUB|S1|S2
Subtract S2 to S1 result is store in S1

JOIN|S1|S2
Join string S1 + S2 result is store in S1

WINWAIT|S1|S2O|S3O Wait for the window to activate before continue
S1 = The title of the window to check.
S2 = The text of the window to check.
S3 = Timeout in seconds

EXECUTE|S1|S2O|S3O|S4O|S5O
S1 = The name of the file to run (EXE, .txt, .lnk, etc).
S2 = Any parameters for the program. Blank ("") uses none.
S3 = The working directory. Blank ("") uses the current working directory.
S4 = The "verb" to use, common verbs include:
  open = (default) Opens the file specified. The file can be an executable file, a document file, or a folder
  edit = Launches an editor and opens the document for editing. If "filename" is not a document file, the function will fail
  print = Prints the document file specified. If "filename" is not a document file, the function will fail
  properties = Displays the file or folder's properties
S5 = The "show" flag of the executed program:
  0 = Hidden window
  6 = Minimized window
  3 = Maximized window

EXECUTEWAIT|S1|S2O|S3O|S4O|S5O Wait for the exe the close before continue
S1 = The name of the file to run (EXE, .txt, .lnk, etc).
S2 = Any parameters for the program. Blank ("") uses none.
S3 = The working directory. Blank ("") uses the current working directory.
S4 = The "verb" to use, common verbs include:
  open = (default) Opens the file specified. The file can be an executable file, a document file, or a folder
  edit = Launches an editor and opens the document for editing. If "filename" is not a document file, the function will fail
  print = Prints the document file specified. If "filename" is not a document file, the function will fail
  properties = Displays the file or folder's properties
S5 = The "show" flag of the executed program:
  0 = Hidden window
  6 = Minimized window
  3 = Maximized window

RUN|S1|S2O|S3O|S4O
S1 = The name of the executable (EXE, BAT, COM, or PIF) to run.
S2 = The working directory.
S3 = The "show" flag of the executed program:
  0 = Hidden window (or Default keyword)
  6 = Minimized window
  3 = Maximized window
S4 = Controls various options related to how the parent and child process interact.
  0x1 = Provide a handle to the child's STDIN stream
  0x2 = Provide a handle to the child's STDOUT stream
  0x4 = Provide a handle to the child's STDERR stream
  0x8 = Provides the same handle for STDOUT and STDERR. Implies both $STDOUT_CHILD and $STDERR_CHILD.
  0x10 = Provide the child with the parent's STDIO streams. This flag can not be combined with any other STDIO flag. This flag is only useful when the parent is compiled as a Console application.
  0x10000 = The child console process should be created with it's own window instead of using the parent's window. This flag is only useful when the parent is compiled as a Console application.

ISACTIVE|S1|S2O
S1 = The title of the window to check.
S2 = The text of the window to check.

MSGBOX|S1|S2|S3|S4O|S5O
S1 = The flag indicates the type of message box and the possible button combinations.
Button Pressed Return Value  
OK  1 
CANCEL  2 
ABORT  3 
RETRY  4 
IGNORE  5 
YES  6 
NO  7 
TRY AGAIN ** 10 
CONTINUE ** 11 

 

Remarks

The flag parameter can be a combination of the following values:

decimal flag Button-related Result hexadecimal flag 
0 OK button 0x0 
1 OK and Cancel 0x1 
2 Abort, Retry, and Ignore 0x2 
3 Yes, No, and Cancel 0x3 
4 Yes and No 0x4 
5 Retry and Cancel 0x5 
6 ** Cancel, Try Again, Continue 0x6 
decimal flag Icon-related Result hexadecimal flag 
0 (No icon) 0x0 
16 Stop-sign icon 0x10 
32 Question-mark icon 0x20 
48 Exclamation-point icon 0x30 
64 Information-sign icon consisting of an 'i' in a circle 0x40 
decimal flag Default-related Result hexadecimal flag 
0 First button is default button 0x0 
256 Second button is default button 0x100 
512 Third button is default button 0x200 
decimal flag Modality-related Result hexadecimal flag 
0 Application  0x0 
4096 System modal (dialog has an icon) 0x1000 
8192 Task modal 0x2000 
decimal flag Miscellaneous-related Result hexadecimal flag 
0 (nothing else special) 0x0 
262144 MsgBox has top-most attribute set 0x40000 
524288 title and text are right-justified 0x80000 

** Only valid on Windows 2000/XP and above.

S2 = The title of the message box.
S3 = The text of the message box.
S4 = Timeout in seconds. After the timeout has elapsed the message box will be automatically closed. The default is 0, which is no timeout.
S5 = The window handle to use as the parent for this dialog.

MSUCLICK|S1|S2|S3|S4|S5
S1 = The button to click: "left", "right", "middle", "main", "menu", "primary", "secondary".
S2 = The x coordinates to move the mouse to. If no x and y coords are given, the current position is used (default).
S3 = The y coordinates to move the mouse to. If no x and y coords are given, the current position is used (default).
S4 = The number of times to click the mouse. Default is 1.
S5 = the speed to move the mouse in the range 1 (fastest) to 100 (slowest). A speed of 0 will move the mouse instantly. Default speed is 10.

Button Normal Swapped 
"" Left Left 
"left" Left Left 
"middle" Middle Middle 
"right" Right Right 
"primary" Left Right 
"main" Left Right 
"secondary" Right Left 
"menu" Right Left 

CHR|S1
Convert S1 to character corresponding to an ASCII code and store it in S1.


ASC|S1
Convert S1 to ASCII and store it in S1.

FWRITE|S1|S2
S2 = The handle of a file, as returned by a previous call to FileOpen. Alternatively, you may use a string filename as the first parameter.
S3 = The line of text to write to the text file. The line is written as is - no @CR or @LF characters are added.

FREAD|S1|S2
S1 = String to store it to
S2 = The handle of a file, as returned by a previous call to FileOpen. Alternatively you may use a string filename as the first parameter.

STRLEFT|S1|S2
Get the leftmost count characters of the string and store it to S1
S1 = The string to evaluate.
S2 The number of characters to get.

STRRIGHT|S1|S2
Get the rightmost count characters of the string and store it to S1
S1 = The string to evaluate.
S2 The number of characters to get.


STRTLEFT|S1|S2
Returns the string trimmed by count characters from the left.
S1 = The string to evaluate.
S2 The number of characters to get.

STRTRIGHT|S1|S2
Returns the string trimmed by count characters from the right.
S1 = The string to evaluate.
S2 The number of characters to get.

INPUT|S1|S2|S3|S4|S5O|S6O|S7O|S8O|S9O|S10O|S11O|S12O
S1 = Varible to Store to
S2 = The title of the input box.
S3 = A message to the user indicating what kind of input is expected.
S4 = The value that the input box starts with.
S5 = The character to replace all typed characters with. If you want the actual typed character to appear, define with an empty string ("") (default) or a space for the first character. If you provide a multiple-char string, only the first char is used for character masking. There are special meanings for the second and subsequent characters. See Remarks.
S6 = The width of the window. If defined, height must also be defined. Use -1 or the keyword Default for default width.
S7 = The height of the window. If defined, width must also be defined. Use -1 or the keyword Default for default height.
S8 = The left side of the input box. By default, the box is centered. If defined, top must also be defined. Use the keyword Default for this parameter to center the InputBox horizontally.
S9 = The top of the input box. By default, the box is centered. If defined, left must also be defined. Use the keyword Default for this parameter to center the InputBox vertically.
S10 = How many seconds to wait before automatically cancelling the InputBox.
S11 = The window handle to use as the parent for this dialog.


OPT|S1|S2
S1 = The option to change.
S2 = The value to assign to the option. The type and meaning vary by option. See remarks below. If the param is not provided, then the function just returns the value already assigned to the option. The keyword Default can be used for the parameter to reset the option to its default value.

Option Param 
CaretCoordMode Sets the way coords are used in the caret functions, either absolute coords or coords relative to the current active window:
0 = relative coords to the active window
1 = absolute screen coordinates (default)
2 = relative coords to the client area of the active window 
ExpandEnvStrings Changes how literal strings and % symbols are interpreted. By default strings are treated literally, this option allows you to use %environment% variables inside strings, e.g., "The temp directory is: %temp%".
1 = expand environment variables (similar to AutoIt v2)
0 = do not expand environment variables (default)
Without this option the usual way would be: "The temp directory is: " & EnvGet("temp") 
ExpandVarStrings Changes how literal strings and variable/macro ($ and @) symbols are interpreted. By default strings are treated literally, this option allows you to use variables and macros inside strings, e.g., "The value of var1 is $var1$".
1 = expand variables (when in this mode and you want to use a literal $ or @ then double it up: "This is a single dollar $$ sign".
0 = do not expand variables (default) 
FtpBinaryMode Changes how FTP files are transferred.
1 = Binary (default)
0 = ASCII 
GUICloseOnESC When ESC is pressed on a GUI the $GUI_EVENT_CLOSE message is sent. This option toggles this behavior on and off.
1 = Send the $GUI_EVENT_CLOSE message when ESC is pressed (default).
0 = Don't send the $GUI_EVENT_CLOSE message when ESC is pressed. 
GUICoordMode Alters the position of a control defined by GUICtrlSetPos.
1 = absolute coordinates (default) still relative to the dialog box.
0 = relative position to the start of the last control (upper left corner).
2 = cell positionining relative to current cell. A -1 for left or top parameter don't increment the start.
So next line is -1,offset; next cell is offset,-1; current cell is -1,-1. 
 Obviously "offset" cannot be -1 which reserved to indicate the no increment. But if you can use a multiple of the width you choose to skip or go back. 
GUIDataSeparatorChar Define the character which delimits subitems in GUICtrlSetData.
 The default character is '|'. 
GUIOnEventMode Enable/disable OnEvent functions notifications.
0 = (default) disable.
1 = enable. 
GUIResizeMode Change default resizing for a control.
0 = (default) keep default control resizing.
<1024 = anytype of resizing see GUICtrlSetResizing. 
GUIEventOptions Change special event behavior or GUI function return values.
0 = (default) Windows behavior on click on Minimize,Restore, Maximize, Resize.
1 = suppress windows behavior on minimize, restore or maximize click button or window resize. Just sends the notification. 
MouseClickDelay Alters the length of the brief pause in between mouse clicks.
Time in milliseconds to pause (default=10). 
MouseClickDownDelay Alters the length a click is held down before release.
Time in milliseconds to pause (default=10). 
MouseClickDragDelay Alters the length of the brief pause at the start and end of a mouse drag operation.
Time in milliseconds to pause (default=250). 
MouseCoordMode Sets the way coords are used in the mouse functions, either absolute coords or coords relative to the current active window:
0 = relative coords to the active window
1 = absolute screen coordinates (default)
2 = relative coords to the client area of the active window 
MustDeclareVars If this option is used then all variables must be pre-declared with Dim, Local or Global before they can be used - removes the chance for misspelled variables causing bugs.
1 = Variables must be pre-declared
0 = Variables don't need to be pre-declared (default) 
OnExitFunc Sets the name of the function called when AutoIt exits (default is OnAutoItExit). 
PixelCoordMode Sets the way coords are used in the pixel functions, either absolute coords or coords relative to the window defined by hwnd (default active window):
0 = relative coords to the defined window
1 = absolute screen coordinates (default)
2 = relative coords to the client area of the defined window 
SendAttachMode Specifies if AutoIt attaches input threads when using Send() function. When not attaching (default mode=0) detecting the state of capslock/scrolllock and numlock can be unreliable under NT4. However, when you specify attach mode=1 the Send("{... down/up}") syntax will not work and there may be problems with sending keys to "hung" windows. ControlSend() ALWAYS attaches and is not affected by this mode.
0 = don't attach (default)
1 = attach 
SendCapslockMode Specifies if AutoIt should store the state of capslock before a Send function and restore it afterwards.
0 = don't store/restore
1 = store and restore (default) 
SendKeyDelay Alters the the length of the brief pause in between sent keystrokes. A value of 0 removes the delay completely.
Time in milliseconds to pause (default=5). 
SendKeyDownDelay Alters the length of time a key is held down before being released during a keystroke. For applications that take a while to register keypresses (and many games) you may need to raise this value from the default. A value of 0 removes the delay completely.
Time in milliseconds to pause (default=5). 
TCPTimeout Defines the time before TCP functions stop if no communication.
Time in milliseconds before timeout (default=100). 
TrayAutoPause Script pauses when click on tray icon.
0 = no pause
1 = pause (default). If there is no DefaultMenu no pause will occurs. 
TrayIconDebug If enabled shows the current script line in the tray icon tip to help debugging.
0 = no debug information (default)
1 = show debug 
TrayIconHide Hides the AutoIt tray icon. Note: The icon will still initially appear ~750 milliseconds.
0 = show icon (default)
1 = hide icon 
TrayMenuMode Extend the behaviour of the script tray icon/menu. This can be done with a combination (adding) of the following values.
0 = default menu items (Script Paused/Exit) are appended to the usercreated menu; usercreated checked items will automatically unchecked; if you double click the tray icon then the controlid is returned which has the "Default"-style (default).
1 = no default menu
2 = user created checked items will not automatically unchecked if you click it
4 = don't return the menuitemID which has the "default"-style in the main contextmenu if you double click the tray icon
8 = turn off auto check of radio item groups 
TrayOnEventMode Enable/disable OnEvent functions notifications for the tray.
0 = (default) disable
1 = enable 
WinDetectHiddenText Specifies if hidden window text can be "seen" by the window matching functions.
0 = Do not detect hidden text (default)
1 = Detect hidden text 
WinSearchChildren Allows the window search routines to search child windows as well as top-level windows.
0 = Only search top-level windows (default)
1 = Search top-level and child windows 
WinTextMatchMode Alters the method that is used to match window text during search operations.
1 = Complete / Slow mode (default)
2 = Quick mode
In quick mode AutoIt can usually only "see" dialog text, button text and the captions of some controls. In the default mode much more text can be seen (for instance the contents of the Notepad window).
If you are having performance problems when performing many window searches then changing to the "quick" mode may help. 
WinTitleMatchMode Alters the method that is used to match window titles during search operations.
1 = Match the title from the start (default)
2 = Match any substring in the title
3 = Exact title match
4 = Advanced mode, see Window Titles & Text (Advanced)
-1 to -4 = force lower case match according to other type of match. 
WinWaitDelay Alters how long a script should briefly pause after a successful window-related operation.
Time in milliseconds to pause (default=250). 

Opt("CaretCoordMode", 1)       ;1=absolute, 0=relative, 2=client
Opt("ExpandEnvStrings", 0)   ;0=don't expand, 1=do expand
Opt("ExpandVarStrings", 0)   ;0=don't expand, 1=do expand
Opt("FtpBinaryMode", 1)     ;1=binary, 0=ASCII
Opt("GUICloseOnESC", 1)     ;1=ESC  closes, 0=ESC won't close
Opt("GUICoordMode", 1)       ;1=absolute, 0=relative, 2=cell
Opt("GUIDataSeparatorChar","|");"|" is the default
Opt("GUIOnEventMode", 0)       ;0=disabled, 1=OnEvent mode enabled
Opt("GUIResizeMode", 0)     ;0=no resizing, <1024 special resizing
Opt("GUIEventOptions",0)   ;0=default, 1=just notification, 2=GuiCtrlRead tab index
Opt("MouseClickDelay", 10)   ;10 milliseconds
Opt("MouseClickDownDelay", 10) ;10 milliseconds
Opt("MouseClickDragDelay", 250);250 milliseconds
Opt("MouseCoordMode", 1)       ;1=absolute, 0=relative, 2=client
Opt("MustDeclareVars", 0)     ;0=no, 1=require pre-declare
Opt("OnExitFunc","OnAutoItExit");"OnAutoItExit" called
Opt("PixelCoordMode", 1)       ;1=absolute, 0=relative, 2=client
Opt("SendAttachMode", 0)       ;0=don't attach, 1=do attach
Opt("SendCapslockMode", 1)   ;1=store and restore, 0=don't
Opt("SendKeyDelay", 5)       ;5 milliseconds
Opt("SendKeyDownDelay", 1)   ;1 millisecond
Opt("TCPTimeout",100)         ;100 milliseconds
Opt("TrayAutoPause",1)       ;0=no pause, 1=Pause
Opt("TrayIconDebug", 0)     ;0=no info, 1=debug line info
Opt("TrayIconHide", 0)       ;0=show, 1=hide tray icon
Opt("TrayMenuMode",0)         ;0=append, 1=no default menu, 2=no automatic check, 4=menuitemID  not return
Opt("TrayOnEventMode",0)       ;0=disable, 1=enable
Opt("WinDetectHiddenText", 0)  ;0=don't detect, 1=do detect
Opt("WinSearchChildren", 1) ;0=no, 1=search children also
Opt("WinTextMatchMode", 1)   ;1=complete, 2=quick
Opt("WinTitleMatchMode", 1) ;1=start, 2=subStr, 3=exact, 4=advanced, -1 to -4=Nocase
Opt("WinWaitDelay", 250)       ;250 milliseconds


-----------------------------------------------------------------------------------------------------------NEXT you see i will never dance again


Here is a very simple file, save this as a diffrent file and run it(it can't be run from here because the top part ^^^)

SET|title|Vapour Automaion
SET|text|Input Something, some random keys
INPUT|inputedtext|title|text

SET|run|notepad.exe
EXECUTE|run

SET|title|Untitled - Notepad
SET|newtitle|Vapour Automation V1.3BETA
SET|em|
SET|tranlvl|230
WINWAIT|title
SETTITLE|title|em|newtitle
SETTRANS|newtitle|em|tranlvl

SET|text|Vapour Automation is FREE if you paid for this get a refund{enter}
SET|text2|Is this the text you enter
SET|loop|Lets see some loop action
SET|enter|{enter}
SET|raw|1
SET|i|0
SET|1|1
SET|0|0
SET|20|20
SET|jumpbackthree|-3
//The line below is never needed because when we call SEND the default output for the S2 is 0, So we will only need to call it when we want it to output raw! But if you want we can call it
SET|normal|0
//I called it this time(normal)
SEND|text|normal
//This time am not calling normal but it will have the same effect
SEND|enter
SEND|text2
SEND|enter
//I use raw so if you enter ! or {enter} it will not have effect
SEND|inputedtext|raw
SEND|enter
SEND|loop
SEND|enter
SEND|i
ADD|i|1
LESS|i|20|jumpbackthree
SEND|enter
SET|title|Done
SET|text|Easy right?
MSGBOX|0|title|text
Edited by athiwatc
Link to comment
Share on other sites

Links are broken!

Some Projects:[list][*]ZIP UDF using no external files[*]iPod Music Transfer [*]iTunes UDF - fully integrate iTunes with au3[*]iTunes info (taskbar player hover)[*]Instant Run - run scripts without saving them before :)[*]Get Tube - YouTube Downloader[*]Lyric Finder 2 - Find Lyrics to any of your song[*]DeskBox - A Desktop Extension Tool[/list]indifference will ruin the world, but in the end... WHO CARES :P---------------http://torels.altervista.org

Link to comment
Share on other sites

excuse me...

what's this supposed to be ??

signedFC2248DE84CFAEF1DCD80B1A60F511EE7C439F7252A70EAEBE3DDADB16C28B26B4DC47974D183A9D9BB71048EB331B

74DE2827E1D0754EBD04ED5921D4AF5D18A09BF0AF6B18DB26B54E8A72787B77D6612A4ACAFD983F5FD9AC517AB9FAF29175

20F66D5C0B069173998FD9AC10B9B37B4D94DECE79FB001BAC6B0DF90A23D75AC388DC57FAB0CAAB752AAD43CBC1A6CB85C7

923B0C9929D4322BA9C93605249423B43A3FBD176CAE7F4A183F6A0488C8287579128323833D76926A9EDEB768679B12AA02

1C40F38E3D6155E1B04BBB01B694AFB8A9A7C9C9A8B7D1859438D4D5EDC3AD314F0FE34EB3CF18D3809038F8197FF8DDF562

5F55E9404625A2383C691178E03BBEE40D3868A9D21CDD626248BB7FD7C07BA1E80AAFBBACEE4F3D38336274F1128724A259

9933C36CAD2728D715BDF7FDD7398114A66791194C8544621A2DE2CE2DCC2659CA75F62F2BCA8A34FF33A5BCB7

Some Projects:[list][*]ZIP UDF using no external files[*]iPod Music Transfer [*]iTunes UDF - fully integrate iTunes with au3[*]iTunes info (taskbar player hover)[*]Instant Run - run scripts without saving them before :)[*]Get Tube - YouTube Downloader[*]Lyric Finder 2 - Find Lyrics to any of your song[*]DeskBox - A Desktop Extension Tool[/list]indifference will ruin the world, but in the end... WHO CARES :P---------------http://torels.altervista.org

Link to comment
Share on other sites

excuse me...

what's this supposed to be ??

signedFC2248DE84CFAEF1DCD80B1A60F511EE7C439F7252A70EAEBE3DDADB16C28B26B4DC47974D183A9D9BB71048EB331B


74DE2827E1D0754EBD04ED5921D4AF5D18A09BF0AF6B18DB26B54E8A72787B77D6612A4ACAFD983F5FD9AC517AB9FAF29175


20F66D5C0B069173998FD9AC10B9B37B4D94DECE79FB001BAC6B0DF90A23D75AC388DC57FAB0CAAB752AAD43CBC1A6CB85C7


923B0C9929D4322BA9C93605249423B43A3FBD176CAE7F4A183F6A0488C8287579128323833D76926A9EDEB768679B12AA02


1C40F38E3D6155E1B04BBB01B694AFB8A9A7C9C9A8B7D1859438D4D5EDC3AD314F0FE34EB3CF18D3809038F8197FF8DDF562


5F55E9404625A2383C691178E03BBEE40D3868A9D21CDD626248BB7FD7C07BA1E80AAFBBACEE4F3D38336274F1128724A259


9933C36CAD2728D715BDF7FDD7398114A66791194C8544621A2DE2CE2DCC2659CA75F62F2BCA8A34FF33A5BCB7
Its like a signed one, Like autoit someone open source it and someone don't. So that's the encrypted version of it.

I also open source the Transparent code when is in the post just save it as a file and run it with water vapor.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...