Incommodious Posted November 16, 2012 Share Posted November 16, 2012 How do i make scar do Ctrl+a (select all)? Quote Link to comment Share on other sites More sharing options...
Janilabo Posted November 16, 2012 Share Posted November 16, 2012 procedure SelectAll; var a: Byte; begin a := CharToVKey('a'); VKeyDown(VK_CONTROL); VKeyDown(a); Wait(40 + Random(30)); VKeyUp(a); VKeyUp(VK_CONTROL); end; begin GetClient.Activate; Wait(500); SelectAll; end. Quote Link to comment Share on other sites More sharing options...
Incommodious Posted November 16, 2012 Author Share Posted November 16, 2012 Thank you very much Quote Link to comment Share on other sites More sharing options...