< Zurück

02.12.2012 19:36:00 • Categories: Applescript, Excel • Tags: Applescript, Excel

AppleScript: change selected range in excel file

(* excel_selection.applescript *)

tell application "Microsoft Excel"     select range "A1"     delay 3     select (cell 6 of row 10 of active sheet)     delay 3     select range "B10:C14" end tell

 


< Zurück | ^ nach oben