Friday, July 13, 2007

 

fun with csound and autoit and notepad

Besides doing things that are obnoxious (like denial of service attacks and click fraud) it appears you can use text editors to manipulate text... My first try was with gvim and it would appear at firs that gvim would make loading instruments easy.. not so it doesn't like to script. The following is in notepad but notepad will not insert a file so it is just a curosity and a proof of concept that in theory it can be done. you will see alot that is commented out because it is a modified example that was included. They also have screen capture without the copyright restrictions...


send("^f")
send(";{ENTER}")

; Now that the Notepad window is active type some text
;Send("Hello from Notepad.{ENTER}1 2 3 4 5 6 7 8 9 10{ENTER}")
Sleep(500)
;Send("+{UP 2}")
Sleep(500)


; Now quit by pressing Alt-f and then x (File menu -> Exit)
;Send("!f")
;Send("x")


; Now a screen will pop up and ask to save the changes, the window is called
; "Notepad" and has some text "Yes" and "No"
WinWaitActive("Notepad", "No")
Send("n")


; Now wait for Notepad to close before continuing
WinWaitClose("Untitled - Notepad")


; Finished!

Labels: , , ,


Comments: Post a Comment

<< Home

This page is powered by Blogger. Isn't yours?