Você já pensou em ImageSearch. Você pode cortar as imagens de cada guia, tanto no estado ativo quanto no inativo [Background changes color]. Em seguida, pesquise uma imagem específica e use as coordenadas para clicar. Tenha muito cuidado com o corte, uma pequena mudança [por exemplo, fundo de abas vizinhas] pode fazer isso falhar.
;CoordMode Pixel ; Interprets the coordinates below as relative to the screen rather than the active window.
ImageSearch, FoundX, FoundY, 0, 0, 200, 200, C:\Temp\Tab1.bmp ; search for image in area staring at 0,0 to 200,200
if ErrorLevel = 2
MsgBox Could not conduct the search.
else if ErrorLevel = 1
MsgBox Image could not be found on the screen.
else
SoundBeep, 1000, 1000
MsgBox The Image was found at %FoundX% %FoundY%.
ClickX:=FoundX + 5 ; Move the mouse click away from the edge of the icon
ClickY:=FoundY + 5 ; Move the mouse click away from the edge of the icon
Click, %ClickX%, %ClickY% ; Click on the Save As icon.
Return