CHRONOMASTER 0 Posted July 27, 2011 I'm looking for a way to copy text from an AutoIt GUI read-only Input control when I left-click on it. Any help will be appreciated. Share this post Link to post Share on other sites
goldenix 1 Posted July 27, 2011 ControlGetPos(), then compare it to the MouseGetPos(), then If _IsPressed("01", $dll) Then ; left mouse button $menutext = GUICtrlRead($menu1, 1) ; return the text of the menu item ClipPut($menutext) My Projects:[list][*]Guide - ytube step by step tut for reading memory with autoitscript + samples[*]WinHide - tool to show hide windows, Skinned With GDI+[*]Virtualdub batch job list maker - Batch Process all files with same settings[*]Exp calc - Exp calculator for online games[*]Automated Microsoft SQL Server 2000 installer[*]Image sorter helper for IrfanView - 1 click opens img & move ur mouse to close opened img[/list] Share this post Link to post Share on other sites
CHRONOMASTER 0 Posted July 27, 2011 Got it working. Thanks for the help. Share this post Link to post Share on other sites