{tuto}faire son "fond" de cheat transparants

    Publicités

Users Who Are Viewing This Thread (Total: 0, Members: 0, Guests: 0)

Nearyu

Programmeur
V
Sep 25, 2010
6,942
18
944
28
♣Outils♣



1°extraite
2°mettre les fichier extrait dans ...\AutoIt3\Include​

crée un koda simple comme :

PHP:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 236, 157, 192, 124)
$Button1 = GUICtrlCreateButton("Start", 0, 16, 115, 33, $WS_GROUP)
$Button2 = GUICtrlCreateButton("Close", 136, 16, 107, 33, $WS_GROUP)
$Button3 = GUICtrlCreateButton("Exit", 40, 128, 139, 41, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit

	EndSwitch
WEnd

pour voir transparant mettre :
PHP:
$alphakey = 0x123456

puis
PHP:
_WinAPI_SetLayeredWindowAttributes($Form1, $AlphaKey, 0, $LWA_COLORKEY)
_WinAPI_DwmExtendFrameIntoClientArea($Form1)
Guisetstate()

PHP:
#include <WinAPIEx.au3>

ce qui donne au final :
PHP:
#include <WinAPIEx.au3>
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
$alphakey = 0x123456
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 236, 157, 192, 124)
$Button1 = GUICtrlCreateButton("Start", 0, 16, 115, 33, $WS_GROUP)
$Button2 = GUICtrlCreateButton("Close", 136, 16, 107, 33, $WS_GROUP)
$Button3 = GUICtrlCreateButton("Exit", 40, 128, 139, 41, $WS_GROUP)
_WinAPI_SetLayeredWindowAttributes($Form1, $AlphaKey, 0, $LWA_COLORKEY)
_WinAPI_DwmExtendFrameIntoClientArea($Form1)
Guisetstate()
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit

	EndSwitch
WEnd
 
Aug 6, 2010
814
0
581
Au boulot ....
excuse moi je l'ai editer et j'ai supprimer une partie que je comprenait pas mais ces bon

---------- Message ajouté à 18h00 ---------- Le message précédent était à 17h57 ----------

Désoler mais j'avait supprimer une partie sans faire attention et bas j'ai mis le "ces tout blanc ..." mais jai compris pourquoi ces bon merci
 

Nearyu

Programmeur
V
Sep 25, 2010
6,942
18
944
28
excuse moi je l'ai editer et j'ai supprimer une partie que je comprenait pas mais ces bon

---------- Message ajouté à 18h00 ---------- Le message précédent était à 17h57 ----------

Désoler mais j'avait supprimer une partie sans faire attention et bas j'ai mis le "ces tout blanc ..." mais jai compris pourquoi ces bon merci

OK
 

Ice-Crack

Membre actif
May 6, 2011
495
0
742
28
C'est vrai que ça fait blanc... ce que je voudrait, c'est faire une fenêtre mais avec les coins arrondis.