ben Posted October 21, 2011 Share Posted October 21, 2011 hello all first i want to notice - scar function reference is very incomplete at its best having said that & after browsing web for couple of hours i decided to post here question is very simple how do you send function keys: f1, f2,f3 etc to client FROM script so lets try f1 SendKeys(chr(122)); nope SendKeysVB('{F1}',true); nope KeyDown(112); wait(100); KeyUp(112); still no dope. suggestions? Quote Link to comment Share on other sites More sharing options...
KingKong Posted October 21, 2011 Share Posted October 21, 2011 KeyDown(VK_F1) for f2, use VK_F2 and so on Quote Link to comment Share on other sites More sharing options...
FHannes Posted October 21, 2011 Share Posted October 21, 2011 There's still quite a bit of work to be done on the manual, but it takes a lot of time to do by myself... If you're looking for functions that aren't documented in the manual yet, you can try the old manual: http://scar-divi.com/oldmanual/ Quote Link to comment Share on other sites More sharing options...