lebisol 0 Posted April 18, 2005 It might be simle but I am having truble sending keystrokes from the input field.$tfPassword = GUICtrlCreateInput ("", 240, 100, 80, 20,$ES_PASSWORD)...... Case $msg = $STARTbutton Sleep(5000) Send ($tfPassword)I get weird output typed up...some numbers vs. letters entered into field....is there any "conversion" that need to happen?Many thanks! Share this post Link to post Share on other sites
Wb-FreeKill 0 Posted April 18, 2005 It might be simle but I am having truble sending keystrokes from the input field.I get weird output typed up...some numbers vs. letters entered into field....is there any "conversion" that need to happen?Many thanks!<{POST_SNAPBACK}>$tfPassword = GUICtrlCreateInput ("", 240, 100, 80, 20,$ES_PASSWORD) ... .. . Case $msg = $STARTbutton Sleep(5000) Send (GUICtrlRead($tfPassword)) Share this post Link to post Share on other sites
lebisol 0 Posted April 18, 2005 Great! Thank you very much! Share this post Link to post Share on other sites