Was ist mit den Andern? Postet ihr euer Passwort auch mal?
Beiträge von Jam00
-
-
Ich würde meins auch Gerne Weiterentwicheln
Ich habe mein Passwort jetzt auch reingestelt (Siehe post mit Dateianhang)
-
such mal mach USkin
-
Naja will man nicht so sein
Spoiler anzeigen
[autoit]#Include <GuiTreeView.au3>
[/autoit] [autoit][/autoit] [autoit]
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Tree View Text", 216, 364, 193, 125)
$TreeView1 = GUICtrlCreateTreeView(2, 2, 209, 357)
$Con = GUICtrlCreateContextMenu ($TreeView1)
$Text = GUICtrlCreateMenuItem("Text",$Con)
GUICtrlCreateTreeViewItem("Test", $TreeView1)
GUICtrlCreateTreeViewItem("Test2", $TreeView1)
GUICtrlCreateTreeViewItem("Test3", $TreeView1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###While 1
[/autoit]
$nMsg = GUIGetMsg()
Switch $nMsg
Case -3
Exit
Case $Text
MsgBox (0,"",_GUICtrlTreeView_GetText($TreeView1,_GUICtrlTreeView_GetSelection($TreeView1)))
EndSwitch
WEnd -
Es gibt dazu schon viele Beispiel in dem Post ftp.au3 unter Scripte!
Und in der UDF sind auch alle Functionen erklärt! -
Entweder du liest den Text erst aus, und fügst den wieder mit ein oder du nimmst einfach _GUICtrlEdit_AppendText
-
Jo sieht cool aus

-
Dann Poste doch mal Script
-
Ahso jetzt sehe ich das! Na dann mach es doch so:
Spoiler anzeigen
[autoit]#Include <Color.au3>
[/autoit] [autoit][/autoit] [autoit]
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>Opt('PixelCoordMode', 0)
[/autoit] [autoit][/autoit] [autoit]
Opt("GUIOnEventMode", 1)Const $WS_EX_COMPOSITED = 0x2000000
[/autoit] [autoit][/autoit] [autoit]
Global $title = "Funkey's Moving Transition ;-)"
Global $hGui = GUICreate($title, 400, 500, -1, -1, BitOR($WS_POPUP, $WS_DLGFRAME), $WS_EX_COMPOSITED)
GUISetOnEvent($GUI_EVENT_CLOSE, "_Exit")GUICtrlCreateButton('0', 348, 2, 16, 16, 0x0800) ; _
[/autoit] [autoit][/autoit] [autoit]
GUICtrlSetOnEvent(-1, '_Minimize')
GUICtrlSetTip(-1, 'Minimieren')
GUICtrlSetFont(-1, 8, 0, 0, 'Marlett')GUICtrlCreateButton('1', 364, 2, 16, 16, 0x0800) ;
[/autoit] [autoit][/autoit] [autoit]
GUICtrlSetOnEvent(-1, '_Maximize')
GUICtrlSetTip(-1, 'Maximieren')
GUICtrlSetFont(-1, 8, 0, 0, 'Marlett')
GUICtrlSetState(-1, $GUI_DISABLE)GUICtrlCreateButton('r', 382, 2, 16, 16, 0x0800) ; x
[/autoit] [autoit][/autoit] [autoit]
GUICtrlSetOnEvent(-1, '_Exit')
GUICtrlSetTip(-1, 'Schließen')
GUICtrlSetFont(-1, 8, 0, 0, 'Marlett')GUICtrlCreateLabel(" " & $title, 20, 2, 200, 16, 0x4000200,0x00000020 )
[/autoit] [autoit][/autoit] [autoit]
GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT)
GUICtrlSetColor(-1, 0xFFFFFF)
GUICtrlSetFont(-1, 9.8, 400, 0, 'MS Sans Serif')Global $hChild = GUICreate('Child', 1600, 20, 0, 0, $WS_CHILD, -1, $hGui)
[/autoit] [autoit][/autoit] [autoit]
Global $Ctrl_Grafik = _CreateColorTransition(0, 0, 1600, 20, 0xFF0000, 0xFFFF00, 1, 4)
GUISetState()
GUISwitch($hGUI)
GUISetState()AdlibEnable('_RotateCaption', 50)
[/autoit] [autoit][/autoit] [autoit]While 1
[/autoit] [autoit][/autoit] [autoit]
Sleep(10000)
WEndFunc _RotateCaption()
[/autoit] [autoit][/autoit] [autoit]
Local $aPosC = WinGetPos($hChild), $aPosG = WinGetPos($hGui)
If $aPosC[0] - $aPosG[0] <= -800 Then
WinMove($hChild, '', -5, 0)
Else
WinMove($hChild, '', $aPosC[0] - $aPosG[0] - 5, 0)
EndIf
EndFuncFunc _Minimize()
[/autoit] [autoit][/autoit] [autoit]
GUISetState(@SW_MINIMIZE)
EndFuncFunc _Maximize()
[/autoit] [autoit][/autoit] [autoit]
GUISetState(@SW_MAXIMIZE)
EndFuncFunc _Exit()
[/autoit] [autoit][/autoit] [autoit]
Exit
EndFunc ;==>_ExitFunc _CreateColorTransition($iPosx, $iPosy, $iWidth, $iHeight, $nColorStart, $nColorEnd, $iAlignment = 0, $iWaveFaktor = 1)
[/autoit]
; funkey
Local $startRot, $startGruen, $startBlau, $endRot, $endGruen, $endBlau, $Color
Local $ColorOffsetRot, $ColorOffsetGruen, $ColorOffsetBlau, $Grafik
$startRot = _ColorGetRed($nColorStart)
$startGruen = _ColorGetGreen($nColorStart)
$startBlau = _ColorGetBlue($nColorStart)
$endRot = _ColorGetRed($nColorEnd)
$endGruen = _ColorGetGreen($nColorEnd)
$endBlau = _ColorGetBlue($nColorEnd)
$Grafik = GUICtrlCreateGraphic($iPosx, $iPosy, $iWidth, $iHeight, 0)
GUICtrlSetState(-1, $GUI_DISABLE)
$iHeight += $iWaveFaktor - Mod($iHeight, $iWaveFaktor)
Switch $iAlignment
Case 0
$ColorOffsetRot = ($endRot - $startRot) / ($iHeight / $iWaveFaktor)
$ColorOffsetGruen = ($endGruen - $startGruen) / ($iHeight / $iWaveFaktor)
$ColorOffsetBlau = ($endBlau - $startBlau) / ($iHeight / $iWaveFaktor)
Switch Mod($iWaveFaktor, 2)
Case 0
For $w = 1 To $iWaveFaktor - 1 Step 2
For $i = ($w - 1) * ($iHeight / $iWaveFaktor) To ($w) * ($iHeight / $iWaveFaktor) - 1
$Color = '0x' & Hex($startRot + $ColorOffsetRot * ($i + 1 - (($w - 1) * $iHeight / $iWaveFaktor)), 2) & _
Hex($startGruen + $ColorOffsetGruen * ($i + 1 - (($w - 1) * $iHeight / $iWaveFaktor)), 2) & _
Hex($startBlau + $ColorOffsetBlau * ($i + 1 - (($w - 1) * $iHeight / $iWaveFaktor)), 2)
GUICtrlSetGraphic(-1, $GUI_GR_COLOR, $Color)
GUICtrlSetGraphic(-1, $GUI_GR_MOVE, 0, $i)
GUICtrlSetGraphic(-1, $GUI_GR_LINE, $iWidth, $i)
Next
For $i = $w * ($iHeight / $iWaveFaktor) To ($w + 1) * ($iHeight / $iWaveFaktor) - 1
$Color = '0x' & Hex($endRot - $ColorOffsetRot * ($i - ($w * $iHeight / $iWaveFaktor) + 1), 2) & _
Hex($endGruen - $ColorOffsetGruen * ($i - ($w * $iHeight / $iWaveFaktor) + 1), 2) & _
Hex($endBlau - $ColorOffsetBlau * ($i - ($w * $iHeight / $iWaveFaktor) + 1), 2)
GUICtrlSetGraphic(-1, $GUI_GR_COLOR, $Color)
GUICtrlSetGraphic(-1, $GUI_GR_MOVE, 0, $i)
GUICtrlSetGraphic(-1, $GUI_GR_LINE, $iWidth, $i)
Next
Next
Case 1
For $i = 0 To $iHeight - 1
$Color = '0x' & Hex($startRot + $ColorOffsetRot * ($i + 1), 2) & _
Hex($startGruen + $ColorOffsetGruen * ($i + 1), 2) & _
Hex($startBlau + $ColorOffsetBlau * ($i + 1), 2)
GUICtrlSetGraphic(-1, $GUI_GR_COLOR, $Color)
GUICtrlSetGraphic(-1, $GUI_GR_MOVE, 0, $i)
GUICtrlSetGraphic(-1, $GUI_GR_LINE, $iWidth, $i)
Next
EndSwitch
Case Else
$ColorOffsetRot = ($endRot - $startRot) / ($iWidth / $iWaveFaktor)
$ColorOffsetGruen = ($endGruen - $startGruen) / ($iWidth / $iWaveFaktor)
$ColorOffsetBlau = ($endBlau - $startBlau) / ($iWidth / $iWaveFaktor)
Switch Mod($iWaveFaktor, 2)
Case 0
For $w = 1 To $iWaveFaktor - 1 Step 2
For $i = ($w - 1) * ($iWidth / $iWaveFaktor) To ($w) * ($iWidth / $iWaveFaktor) - 1
$Color = '0x' & Hex($startRot + $ColorOffsetRot * ($i + 1 - (($w - 1) * $iWidth / $iWaveFaktor)), 2) & _
Hex($startGruen + $ColorOffsetGruen * ($i + 1 - (($w - 1) * $iWidth / $iWaveFaktor)), 2) & _
Hex($startBlau + $ColorOffsetBlau * ($i + 1 - (($w - 1) * $iWidth / $iWaveFaktor)), 2)
GUICtrlSetGraphic(-1, $GUI_GR_COLOR, $Color)
GUICtrlSetGraphic(-1, $GUI_GR_MOVE, $i, 0)
GUICtrlSetGraphic(-1, $GUI_GR_LINE, $i, $iHeight)
Next
For $i = $w * ($iWidth / $iWaveFaktor) To ($w + 1) * ($iWidth / $iWaveFaktor) - 1
$Color = '0x' & Hex($endRot - $ColorOffsetRot * ($i - ($w * $iWidth / $iWaveFaktor) + 1), 2) & _
Hex($endGruen - $ColorOffsetGruen * ($i - ($w * $iWidth / $iWaveFaktor) + 1), 2) & _
Hex($endBlau - $ColorOffsetBlau * ($i - ($w * $iWidth / $iWaveFaktor) + 1), 2)
GUICtrlSetGraphic(-1, $GUI_GR_COLOR, $Color)
GUICtrlSetGraphic(-1, $GUI_GR_MOVE, $i, 0)
GUICtrlSetGraphic(-1, $GUI_GR_LINE, $i, $iHeight)
Next
Next
Case 1
For $i = 0 To $iHeight - 1
$Color = '0x' & Hex($startRot + $ColorOffsetRot * ($i + 1), 2) & _
Hex($startGruen + $ColorOffsetGruen * ($i + 1), 2) & _
Hex($startBlau + $ColorOffsetBlau * ($i + 1), 2)
GUICtrlSetGraphic(-1, $GUI_GR_COLOR, $Color)
GUICtrlSetGraphic(-1, $GUI_GR_MOVE, 0, $i)
GUICtrlSetGraphic(-1, $GUI_GR_LINE, $iWidth, $i)
Next
EndSwitch
EndSwitch
Return $Grafik
EndFunc ;==>_CreateColorTransition -
Hä wie jetzt?
-
Da es diese Zeit nie geben wird haben wir unenlich zeit

-
Spoiler anzeigen
[autoit]#Include <Color.au3>
[/autoit] [autoit][/autoit] [autoit]
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>Opt('PixelCoordMode', 0)
[/autoit] [autoit][/autoit] [autoit]
Opt("GUIOnEventMode", 1)Const $WS_EX_COMPOSITED = 0x2000000
[/autoit] [autoit][/autoit] [autoit]
Global $title = "Funkey's Moving Transition ;-)"
Global $hGui = GUICreate($title, 400, 500, -1, -1, BitOR($WS_POPUP, $WS_DLGFRAME), $WS_EX_COMPOSITED)
GUISetOnEvent($GUI_EVENT_CLOSE, "_Exit")GUICtrlCreateButton('0', 348, 2, 16, 16, 0x0800) ; _
[/autoit] [autoit][/autoit] [autoit]
GUICtrlSetOnEvent(-1, '_Minimize')
GUICtrlSetTip(-1, 'Minimieren')
GUICtrlSetFont(-1, 8, 0, 0, 'Marlett')GUICtrlCreateButton('1', 364, 2, 16, 16, 0x0800) ;
[/autoit] [autoit][/autoit] [autoit]
GUICtrlSetOnEvent(-1, '_Maximize')
GUICtrlSetTip(-1, 'Maximieren')
GUICtrlSetFont(-1, 8, 0, 0, 'Marlett')
GUICtrlSetState(-1, $GUI_DISABLE)GUICtrlCreateButton('r', 382, 2, 16, 16, 0x0800) ; x
[/autoit] [autoit][/autoit] [autoit]
GUICtrlSetOnEvent(-1, '_Exit')
GUICtrlSetTip(-1, 'Schließen')
GUICtrlSetFont(-1, 8, 0, 0, 'Marlett')GUICtrlCreateLabel(" " & $title, 20, 2, 200, 16, 0x4000200, 0x00100000)
[/autoit] [autoit][/autoit] [autoit]
GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT)
GUICtrlSetColor(-1, 0xFFFFFF)
GUICtrlSetFont(-1, 9.8, 400, 0, 'MS Sans Serif');~ Global $hChild = GUICreate('Child', 1600, 20, 0, 0, $WS_CHILD, -1, $hGui)
[/autoit] [autoit][/autoit] [autoit]
Global $Ctrl_Grafik = _CreateColorTransition(0, 0, 1600, 20, 0xFF0000, 0xFFFF00, 1, 4)
GUISetState()
GUISwitch($hGUI)
GUISetState()AdlibEnable('_RotateCaption', 50)
[/autoit] [autoit][/autoit] [autoit]While 1
[/autoit] [autoit][/autoit] [autoit]
Sleep(10000)
WEndFunc _RotateCaption()
[/autoit] [autoit][/autoit] [autoit]
;~ Local $aPosC = WinGetPos($hChild), $aPosG = WinGetPos($hGui)
;~ If $aPosC[0] - $aPosG[0] <= -800 Then
;~ WinMove($hChild, '', -5, 0)
;~ Else
;~ WinMove($hChild, '', $aPosC[0] - $aPosG[0] - 5, 0)
;~ EndIf
EndFuncFunc _Minimize()
[/autoit] [autoit][/autoit] [autoit]
GUISetState(@SW_MINIMIZE)
EndFuncFunc _Maximize()
[/autoit] [autoit][/autoit] [autoit]
GUISetState(@SW_MAXIMIZE)
EndFuncFunc _Exit()
[/autoit] [autoit][/autoit] [autoit]
Exit
EndFunc ;==>_ExitFunc _CreateColorTransition($iPosx, $iPosy, $iWidth, $iHeight, $nColorStart, $nColorEnd, $iAlignment = 0, $iWaveFaktor = 1)
[/autoit]
; funkey
Local $startRot, $startGruen, $startBlau, $endRot, $endGruen, $endBlau, $Color
Local $ColorOffsetRot, $ColorOffsetGruen, $ColorOffsetBlau, $Grafik
$startRot = _ColorGetRed($nColorStart)
$startGruen = _ColorGetGreen($nColorStart)
$startBlau = _ColorGetBlue($nColorStart)
$endRot = _ColorGetRed($nColorEnd)
$endGruen = _ColorGetGreen($nColorEnd)
$endBlau = _ColorGetBlue($nColorEnd)
$Grafik = GUICtrlCreateGraphic($iPosx, $iPosy, $iWidth, $iHeight, 0)
GUICtrlSetState(-1, $GUI_DISABLE)
$iHeight += $iWaveFaktor - Mod($iHeight, $iWaveFaktor)
Switch $iAlignment
Case 0
$ColorOffsetRot = ($endRot - $startRot) / ($iHeight / $iWaveFaktor)
$ColorOffsetGruen = ($endGruen - $startGruen) / ($iHeight / $iWaveFaktor)
$ColorOffsetBlau = ($endBlau - $startBlau) / ($iHeight / $iWaveFaktor)
Switch Mod($iWaveFaktor, 2)
Case 0
For $w = 1 To $iWaveFaktor - 1 Step 2
For $i = ($w - 1) * ($iHeight / $iWaveFaktor) To ($w) * ($iHeight / $iWaveFaktor) - 1
$Color = '0x' & Hex($startRot + $ColorOffsetRot * ($i + 1 - (($w - 1) * $iHeight / $iWaveFaktor)), 2) & _
Hex($startGruen + $ColorOffsetGruen * ($i + 1 - (($w - 1) * $iHeight / $iWaveFaktor)), 2) & _
Hex($startBlau + $ColorOffsetBlau * ($i + 1 - (($w - 1) * $iHeight / $iWaveFaktor)), 2)
GUICtrlSetGraphic(-1, $GUI_GR_COLOR, $Color)
GUICtrlSetGraphic(-1, $GUI_GR_MOVE, 0, $i)
GUICtrlSetGraphic(-1, $GUI_GR_LINE, $iWidth, $i)
Next
For $i = $w * ($iHeight / $iWaveFaktor) To ($w + 1) * ($iHeight / $iWaveFaktor) - 1
$Color = '0x' & Hex($endRot - $ColorOffsetRot * ($i - ($w * $iHeight / $iWaveFaktor) + 1), 2) & _
Hex($endGruen - $ColorOffsetGruen * ($i - ($w * $iHeight / $iWaveFaktor) + 1), 2) & _
Hex($endBlau - $ColorOffsetBlau * ($i - ($w * $iHeight / $iWaveFaktor) + 1), 2)
GUICtrlSetGraphic(-1, $GUI_GR_COLOR, $Color)
GUICtrlSetGraphic(-1, $GUI_GR_MOVE, 0, $i)
GUICtrlSetGraphic(-1, $GUI_GR_LINE, $iWidth, $i)
Next
Next
Case 1
For $i = 0 To $iHeight - 1
$Color = '0x' & Hex($startRot + $ColorOffsetRot * ($i + 1), 2) & _
Hex($startGruen + $ColorOffsetGruen * ($i + 1), 2) & _
Hex($startBlau + $ColorOffsetBlau * ($i + 1), 2)
GUICtrlSetGraphic(-1, $GUI_GR_COLOR, $Color)
GUICtrlSetGraphic(-1, $GUI_GR_MOVE, 0, $i)
GUICtrlSetGraphic(-1, $GUI_GR_LINE, $iWidth, $i)
Next
EndSwitch
Case Else
$ColorOffsetRot = ($endRot - $startRot) / ($iWidth / $iWaveFaktor)
$ColorOffsetGruen = ($endGruen - $startGruen) / ($iWidth / $iWaveFaktor)
$ColorOffsetBlau = ($endBlau - $startBlau) / ($iWidth / $iWaveFaktor)
Switch Mod($iWaveFaktor, 2)
Case 0
For $w = 1 To $iWaveFaktor - 1 Step 2
For $i = ($w - 1) * ($iWidth / $iWaveFaktor) To ($w) * ($iWidth / $iWaveFaktor) - 1
$Color = '0x' & Hex($startRot + $ColorOffsetRot * ($i + 1 - (($w - 1) * $iWidth / $iWaveFaktor)), 2) & _
Hex($startGruen + $ColorOffsetGruen * ($i + 1 - (($w - 1) * $iWidth / $iWaveFaktor)), 2) & _
Hex($startBlau + $ColorOffsetBlau * ($i + 1 - (($w - 1) * $iWidth / $iWaveFaktor)), 2)
GUICtrlSetGraphic(-1, $GUI_GR_COLOR, $Color)
GUICtrlSetGraphic(-1, $GUI_GR_MOVE, $i, 0)
GUICtrlSetGraphic(-1, $GUI_GR_LINE, $i, $iHeight)
Next
For $i = $w * ($iWidth / $iWaveFaktor) To ($w + 1) * ($iWidth / $iWaveFaktor) - 1
$Color = '0x' & Hex($endRot - $ColorOffsetRot * ($i - ($w * $iWidth / $iWaveFaktor) + 1), 2) & _
Hex($endGruen - $ColorOffsetGruen * ($i - ($w * $iWidth / $iWaveFaktor) + 1), 2) & _
Hex($endBlau - $ColorOffsetBlau * ($i - ($w * $iWidth / $iWaveFaktor) + 1), 2)
GUICtrlSetGraphic(-1, $GUI_GR_COLOR, $Color)
GUICtrlSetGraphic(-1, $GUI_GR_MOVE, $i, 0)
GUICtrlSetGraphic(-1, $GUI_GR_LINE, $i, $iHeight)
Next
Next
Case 1
For $i = 0 To $iHeight - 1
$Color = '0x' & Hex($startRot + $ColorOffsetRot * ($i + 1), 2) & _
Hex($startGruen + $ColorOffsetGruen * ($i + 1), 2) & _
Hex($startBlau + $ColorOffsetBlau * ($i + 1), 2)
GUICtrlSetGraphic(-1, $GUI_GR_COLOR, $Color)
GUICtrlSetGraphic(-1, $GUI_GR_MOVE, 0, $i)
GUICtrlSetGraphic(-1, $GUI_GR_LINE, $iWidth, $i)
Next
EndSwitch
EndSwitch
Return $Grafik
EndFunc ;==>_CreateColorTransition -
Wann sollen wir denn die Passwörter reinstellen?
-
Spoiler anzeigen
[autoit]#Region ### START Koda GUI section ### Form=
[/autoit] [autoit][/autoit] [autoit]
$Form1 = GUICreate("Form1", 277, 57, 193, 125)
Dim $Button[4][2]
$Button[0][0] = GUICtrlCreateButton("Falsch", 2, 2, 75, 25, 0)
$Button[1][0] = GUICtrlCreateButton("Falsch", 78, 2, 75, 25, 0)
$Button[2][0] = GUICtrlCreateButton("Falsch", 2, 28, 75, 25, 0)
$Button[3][0] = GUICtrlCreateButton("Falsch", 78, 28, 75, 25, 0)
For $1 = 0 To 3
$Button[$1][1] = False
Next$50 = GUICtrlCreateButton("50-50", 198, 2, 75, 25, 0)
[/autoit] [autoit][/autoit] [autoit]
$Ran = Random(0,3)
GUICtrlSetData ($Button[$Ran][0],"Richtig")
$Button[$Ran][1] = True
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###While 1
[/autoit]
$nMsg = GUIGetMsg()
For $1 = 0 To 3
Switch $nMsg
Case -3
Exit
Case $Button[$1][0]
If $Button[$1][1] = True Then
MsgBox (64,"Richtig","Richtig")
ElseIf $Button[$1][1] = False Then
MsgBox (16,"Falsch","Falsch")
EndIf
Case $50
GUICtrlSetState ($50,128)
For $1 = 1 To 2
Do
$Ran = Random(0,3)
Until $Button[$Ran][1] = False
GUICtrlSetState($Button[$Ran][0],128)
$Button[$Ran][1] = "NO"
Next
EndSwitch
Next
WEnd -
Danke
Nein, das war scherzhaft gemeint
Nicht das ich das Schlimm fände^^ -
na wenn Progandy mitmacht hab ich ja schon keine Changse mehr

-
Spoiler anzeigen
[autoit]#include <GDIPlus.au3>
[/autoit] [autoit][/autoit] [autoit]#Region ### START Koda GUI section ### Form=
[/autoit] [autoit][/autoit] [autoit]
$hWnd = GUICreate("PNG mit GDI+", 10, 10,Default,Default,0x80000000)
GUISetBkColor (0x000000)
GUISetState(@SW_SHOW)
GUISetState(@SW_MAXIMIZE)
#EndRegion ### END Koda GUI section ###HotKeySet ("{esc}","ende")
[/autoit]
$Old = MouseGetPos()
_GDIPlus_Startup()
$hImage = _GDIPlus_ImageLoadFromFile(@ScriptDir & "\1.png")
$hGraphics = _GDIPlus_GraphicsCreateFromHWND($hWnd)
_GDIPlus_GraphicsDrawImageRect($hGraphics, $hImage, $Old[0]-50, $Old[1]-50, 100, 100 )
While 1
$Pos = MouseGetPos()
If $Pos[0] <> $Old[0] Or $Pos[1] <> $Old[1] Then
_GDIPlus_GraphicsFillRect($hGraphics, $Old[0]-50, $Old[1]-50, 100, 100)
_GDIPlus_GraphicsDrawImageRect($hGraphics, $hImage, $Pos[0]-50, $Pos[1]-50, 100, 100 )
$Old = MouseGetPos()
EndIf
WEnd
Func ende()
Exit
EndFunc -
Du musst am besten erstmal ein Grundlagen Tutorial machen, und dann lad dir die Deutschen hilfen runter!
-
Du musst es per GDI-Plus machen! Lad mal deine PNG hoch
-
Okay, ist nicht schlecht, und auch eig von der Geschwindikeit ganz gut, aber warum Postest du das unter Hilfe & Unterstüzung?