Page 1 of 1
					
				Mouse-Recorder v1.0
				Posted: Fri Aug 15, 2003 7:54 pm
				by Mischa
				Hi!
Just a little tool to record some macros.
You can record/play/load/save macros.
(Mousemovement and Left/Right Clicks)
Next weak i will write the documentation for
the Dll i have done, too.
With the Dll you can use the macros in your
own program and you will be able to make ultra-realistic
tutorials, cause..they ARE real.  
 
Nothing big..but take a look on it.
Maybe its useful for you.
http://www.thinkrelative.de/Recorder.exe (20 KB)
regards,
Mischa
 
			 
			
					
				
				Posted: Sat Aug 16, 2003 2:13 pm
				by Kale
				It works well, nice tool  

 
			 
			
					
				
				Posted: Sat Aug 16, 2003 3:32 pm
				by Andre
				Excellent tool, well done Mischa  

 
			 
			
					
				
				Posted: Sat Aug 16, 2003 3:52 pm
				by midebor
				Works perfectly. Thanks Mischa !  

 
			 
			
					
				Really cool !
				Posted: Sat Aug 16, 2003 6:39 pm
				by DominiqueB
				Thank's for it !
works well under xp for me.
dominique.
			 
			
					
				
				Posted: Sat Aug 16, 2003 6:47 pm
				by Karbon
				Did you write this in PB ?
			 
			
					
				
				Posted: Sun Aug 17, 2003 2:25 pm
				by Flype
				funny  

   works well...
did you use linked list to store the coordinates/events of the mouse or directly in a buffer ? if so, is there a limit ?
 
			 
			
					
				
				Posted: Fri Aug 22, 2003 9:02 pm
				by Mischa
				Hi!
Wow! Thanks for your nice reply!  
 
..and sorry for the late answers.  
 
(cause i was in holiday)
Now, i will answer:
Yes, it is made with PB
and Yes, it works with LinkedList.
But the replay with the Dll (i will post soon)
works with simple arrays, cause it is faster,
and inside Dlls you can't use LinkedList()
I don't know the limit size of alternate buffering like
AllocateMemory. I use this method as linkedlist-like
usage in other codes, but not with many elements.
So i can't tell you where the 'MemoryHandle'-Limit is.
Regards,
Mischa
 
			 
			
					
				
				Posted: Sun Nov 09, 2003 1:56 pm
				by neouk
				Hi
Is it possible to make a macro that takes mouse movements from direct x, I have a friend who plays online games. He's tried making soma basic code but the mouse movements are never triggered because the commands come from directx for mouse movements and the macro doesnt record them.
anyone help?
thanks.
			 
			
					
				
				Posted: Sun Nov 09, 2003 5:28 pm
				by Codemonger
				Directx mouse input doesn't use the windows messaging, it connects directly with the mouse for speed.  You would have to tap into the mouse directly, maybe DOS interrupts ? or maybe to get the information from the ports directly, but I don't know how you would get info from USB. Maybe it's too hard ?