cdkid Posted January 29, 2006 Share Posted January 29, 2006 well...im guessing this will use DllCall() if anyone could point me in the right direction i would very much appriciate it --thanks in advance ~cdkid AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide! Link to comment Share on other sites More sharing options...
Oxin8 Posted January 29, 2006 Share Posted January 29, 2006 take a look at ControlSend ~My Scripts~ *********_XInput UDF for Xbox 360 ControllerSprayPaint_MouseMovePlus Link to comment Share on other sites More sharing options...
cdkid Posted January 29, 2006 Author Share Posted January 29, 2006 (edited) i know about controlsend but there are no controls so i was hopin for some kind of help with like SendMessage --anyone? ~cdkid ***edit*** wheee 100th post! Edited January 29, 2006 by cdkid AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide! Link to comment Share on other sites More sharing options...
cdkid Posted January 29, 2006 Author Share Posted January 29, 2006 (edited) Global Const $wm_keydown = 0x100, $wm_keyup = 0x101 $a = 0x41 DllCall("user32.dll",'int','sendmessage','hwnd',WinGetHandle('key1 - Notepad'), 'int', $wm_keydown, 'int', $a) DllCall("user32.dll",'int','sendmessage','hwnd',WinGetHandle('key1 - Notepad'), 'int', $wm_keyup, 'int', $a) that's what i've come up w/ so far but it doesnt work note: this is just a test...im eventually gonna be using it on a game Edited January 29, 2006 by cdkid AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide! Link to comment Share on other sites More sharing options...
cdkid Posted January 29, 2006 Author Share Posted January 29, 2006 anyone? AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide! Link to comment Share on other sites More sharing options...
cdkid Posted January 30, 2006 Author Share Posted January 30, 2006 hate to bump but i really need some help >bump AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide! Link to comment Share on other sites More sharing options...
cdkid Posted January 30, 2006 Author Share Posted January 30, 2006 sorry to bump again but stuff gets lost pretty quick after it leaves the first page and i really need some help but i've been searching and not finding anything please help!--sorry for the bump ~cdkid AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide! Link to comment Share on other sites More sharing options...
greenmachine Posted January 30, 2006 Share Posted January 30, 2006 Did Insolence's minimized clicking script not work for you? I see you made a post in the thread, http://www.autoitscript.com/forum/index.php?showtopic=7112 so you're aware of it. What's wrong with that method...? Link to comment Share on other sites More sharing options...
cdkid Posted January 30, 2006 Author Share Posted January 30, 2006 that's only for clicking... i mean sending a keystroke and from what i can tell there's nothin there for sending keystrokes AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide! Link to comment Share on other sites More sharing options...
greenmachine Posted January 30, 2006 Share Posted January 30, 2006 that's only for clicking... i mean sending a keystroke and from what i can tell there's nothin there for sending keystrokesSo ControlSend didn't work either? Link to comment Share on other sites More sharing options...
cdkid Posted January 30, 2006 Author Share Posted January 30, 2006 as i said there are no controls that i can get with the Au3Info tool in the game that img onna be using this for...i know about controlsend but there are no controls so i was hopin for some kind of help with like SendMessage~cdkid AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide! Link to comment Share on other sites More sharing options...
greenmachine Posted January 31, 2006 Share Posted January 31, 2006 I figured you could use the window handle and just send it like that, but it doesn't seem to want to work that way. In that case, it would be much easier to just do it non-minimized.... Link to comment Share on other sites More sharing options...
golfjrr Posted January 31, 2006 Share Posted January 31, 2006 (edited) I figured you could use the window handle and just send it like that, but it doesn't seem to want to work that way. In that case, it would be much easier to just do it non-minimized....Definitely easier, but I can see value in trying to get it to work minimized so you can do other things on your machine while it is running... Edited January 31, 2006 by golfjrr Link to comment Share on other sites More sharing options...
cdkid Posted January 31, 2006 Author Share Posted January 31, 2006 i found the problem using some program..."Winspecter Spy". the game uses keydown > key keydown > key keyup > key keyup > key rather than what i was doing: keydown > key keyup > key AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide! Link to comment Share on other sites More sharing options...
cdkid Posted January 31, 2006 Author Share Posted January 31, 2006 arg, nevermind it still wont work... i was accidentally writing to it using send()...forgot to delete the line AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide! Link to comment Share on other sites More sharing options...
jaenster Posted January 31, 2006 Share Posted January 31, 2006 do you send it to the good window ? to the good id ? -jaenster Link to comment Share on other sites More sharing options...
cdkid Posted January 31, 2006 Author Share Posted January 31, 2006 umm i dont understand what ur saying... 'good window', 'good id'? please clarify ~cdkid AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide! Link to comment Share on other sites More sharing options...
cdkid Posted February 1, 2006 Author Share Posted February 1, 2006 anyone? please help, i just cant figure this out. could some person that does a lot of DLL stuff please help me out i've been searching and i just cant find anything... AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide! Link to comment Share on other sites More sharing options...
jaenster Posted February 1, 2006 Share Posted February 1, 2006 What game do you use ? -jaenster Link to comment Share on other sites More sharing options...
cdkid Posted February 1, 2006 Author Share Posted February 1, 2006 well i dont play but im writin this for some of my friends... diablo II i used WinSpecter Spy to capture keypresses it does keydown > key char > big hex, big hex...i'll sort it out later keyup > key AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide! Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now