CiaronJohn Posted January 30, 2020 Share Posted January 30, 2020 Local $oExcel Local $fIFSheet, _ $fTestDesign $oExcel=_Excel_Open(True) $fIFSheet =_Excel_BookOpen ( $oExcel, @ScriptDir&"\Tools\UT Step1 - IFC Tool.xlsm" ) Sleep(5000) $fTestDesign=_Excel_BookOpen ( $oExcel,$xCellFile ) Sleep(5000) send("!{LSHIFT}") send("!{S}") _Excel_BookClose($fIFSheet) _Excel_BookClose($fTestDesign) How Can I send Control Shift S as Command Link to comment Share on other sites More sharing options...
Subz Posted January 30, 2020 Share Posted January 30, 2020 (edited) Control shortcut = ^ Shift shortcut = + Alt shortcut = !https://www.autoitscript.com/autoit3/docs/functions/Send.htm Send("^+S") Although if you want to save the workbook why not use _Excel_BookSave() Edited January 30, 2020 by Subz Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now