02.12.2012 19:42:00 • Categories: Applescript, Excel • Tags: Applescript, Excel
AppleScript: activate sheet in excel
(* excel_activatesheet.applescript *)tell application "Microsoft Excel" set activesheet to get entry index of active sheet activate object sheet 1 delay 2 activate object sheet 2 delay 2 activate object sheet 3 end tell