NameCtrl.DoAccelerator Method
SharePoint 2010
Published: May 2010
Opens the drop-down menu for online presence information if an on-object UI is displayed.
expression.DoAccelerator()
If an ActiveX control named NameObj is on the page, the following code responds to a KeyDown event:
if (window.event.altKey && window.event.shiftKey && window.event.keyCode==121) NameObj.DoAccelerator();
If window.event.altKey AndAlso window.event.shiftKey AndAlso window.event.keyCode=121 Then NameObj.DoAccelerator() End If