2013-06-01 114 views

回答

1
a::DoubleTap("^a",250) 

DoubleTap(key,TimeVar=300) 
{ 
     If (A_ThisHotkey==A_PriorHotkey && A_TimeSincePriorHotkey < TimeVar) 
       Send %key% 
     else 
       Send {%A_ThisHotkey%} 
     return 
}