# https://www.globalsino.com/ICs/page4853.html
# Close the apps, which are in tab format, without killing the windows system only.
# e.g. not applicable to notepad, file explorer

import pyautogui as pg
import time

MySearch_img = pg.locateCenterOnScreen(r'C:\GlobalSino\ICs\images\4730d_DM.PNG',
                                    grayscale = 'True', confidence =0.8)
if len(list(MySearch_img)) != 0:
    # Close digital micrograph
    MySearch_img_b = pg.locateCenterOnScreen(r'C:\GlobalSino\ICs\images\4730d_DM.PNG',
                                             grayscale = 'True', confidence =0.8)
    pg.click(MySearch_img_b)
    pg.hotkey('Alt', 'F')
    pg.hotkey('x')

    
    
    
    

