In PowerPoint 2007 how do I write a code to invoke an existing macro by pressing a set of keys? -
i wrote macro in powerpoint 2007 having trouble assigning macro keyboard shortcut, how do it?
you need add-in one:
http://officeone.mvps.org/ppsctmgr/ppsctmgr_macros.html
but if add-in isn't suitable , you're developing on pc version of powerpoint try using windows apis add timers , key trapping. these apis started:
public declare function getasynckeystate lib "user32" (byval vkey long) integer public declare function getkeystate lib "user32" (byval nvirtkey long) integer public declare function settimer lib "user32" _ (byval hwnd long, _ byval nidevent long, _ byval uelapse long, _ byval lptimerfunc long) long public declare function killtimer lib "user32" _ (byval hwnd long, _ byval nidevent long) long
Comments
Post a Comment