Writing custom code for PowerPoint using leap motion?

The LEAP Motion Controller Add-ins for Microsoft Office which you found is likely to be the best way to integrate the controller with Powerpoint. To get started with it, you’ll need Visual Studio (seems like you’ll need 2012). Microsoft has an overview page for Office Development in Visual Studio. Follow the instructions on the Configuring … Read more

How to move the cursor or simulate clicks for other applications?

You’ve inspired me to refactor some of my automation code: NativeMethods.cs – got most of this from online: using System; using System.Runtime.InteropServices; public class NativeMethods { [DllImport( “user32.dll”, SetLastError = true )] internal static extern Int32 SendInput( Int32 cInputs, ref INPUT pInputs, Int32 cbSize ); [StructLayout( LayoutKind.Explicit, Pack = 1, Size = 28 )] internal … Read more