20 lines
		
	
	
		
			350 B
		
	
	
	
		
			Python
		
	
			
		
		
	
	
			20 lines
		
	
	
		
			350 B
		
	
	
	
		
			Python
		
	
| from context import Context, ContextManager
 | |
| 
 | |
| cm = ContextManager("Memory.xml")
 | |
| df = cm.get_single_context()
 | |
| 
 | |
| df.attach()
 | |
| 
 | |
| pos = df.position
 | |
| 
 | |
| print "Hotkeys"
 | |
| 
 | |
| hotkeys = pos.read_hotkeys()
 | |
| 
 | |
| for key in hotkeys:
 | |
|     print "x: %d\ny: %d\tz: %d\ttext: %s" % (key.x, key.y, key.z, key.name)
 | |
| 
 | |
| df.detach()
 | |
| 
 | |
| print "Done.  Press any key to continue"
 | |
| raw_input() |