#NoEnv
#SingleInstance Force
SendMode Input
SetWorkingDir %A_ScriptDir%
; Toujours au-dessus, sans prendre le focus
Gui, +AlwaysOnTop +ToolWindow +E0x08000000
Gui, Color, F2F2F2
Gui, Font, s11 Bold, Segoe UI
; Boutons CARRÉS (80x80) en colonne
Gui, Add, Button, x10 y10 w80 h80 gDoSelectAll, TOUT`nSELECT`
Gui, Add, Button, x10 y+10 w80 h80 gDoCopy, COPIER
Gui, Add, Button, x10 y+10 w80 h80 gDoCut, COUPER
Gui, Add, Button, x10 y+10 w80 h80 gDoPaste, COLLER
Gui, Add, Button, x10 y+1 w80 h20 gDoPasteTab, + 7 tab
Gui, Show, x200 y200 w100 h391, Copie-colle
return
DoSelectAll:
SendInput, ^a
return
DoCopy:
SendInput, ^c
return
DoCut:
SendInput, ^x
return
DoPaste:
SendInput, ^v
return
DoPasteTab:
SendInput, ^v
Loop, 7
{
SendInput, {Tab}
}
return
GuiClose:
ExitApp