;# Zoomix v0.1 by Uriziel01 #include <GUIConstants.au3> #include <Misc.au3> #Include <WinAPI.au3> $gui = GUICreate("Zoomix- x", 100, 100) GUISetBkColor(0xEEEEEE) GUISetState(@SW_SHOW) $z1=4 $z2=120/$z1 $z3=120/$z1 Global $z2,$z3,$pos2,$pos3 Func start() $z2=120/$z1 $z3=120/$z1 for $a=0 to $z3 step 1 for $i=0 to $z2 step 1 GUICtrlCreateLabel("",$i*$z1,$a*$z1,$z1,$z1) Next Next _WinAPI_SetWindowText($gui, "Zoomix- x"&$z1) EndFunc $dll = DllOpen("user32.dll") $ii=0 Start() While 1 $pos = MouseGetPos() if $pos[0] = $pos2 and $pos[1]=$pos3 then else If _IsPressed("21", $dll) and $z1 < 32 Then for $dd=0 to 8000 step 1 GUICtrlDelete($dd) next $z1=$z1*2 start() endif If _IsPressed("22", $dll) and $z1 > 2 Then for $dd=-1 to 10000/$z1 step 1 GUICtrlDelete($dd) next $z1=$z1/2 start() EndIf $pos2=$pos[0] $pos3=$pos[1] for $a=0 to $z3 step 1 for $i=0 to $z2 step 1 $ii=$ii+1 $var = PixelGetColor( $pos[0]+$i , $pos[1]+$a ); Normal zoomix mode ;$var=Random(99909999,99999999); random colors ;$var=Random(1,99999999);all colors ;$var=Random(9999,119999);Blue and Green ;$var=Random(1,9999);most dark blue ; This will make the image lighter #cs $var=Hex($var) $var = StringReplace($var, "E", "F") $var = StringReplace($var, "D", "E") $var = StringReplace($var, "B", "C") $var = StringReplace($var, "A", "B") $var = StringReplace($var, "9", "A") $var = StringReplace($var, "8", "9") $var = StringReplace($var, "7", "8") $var = StringReplace($var, "6", "7") $var = StringReplace($var, "5", "6") $var = StringReplace($var, "4", "6") $var = StringReplace($var, "3", "4") $var = StringReplace($var, "2", "4") $var = StringReplace($var, "1", "3") $var = StringReplace($var, "0", "2") $var=Dec($var) #ce GUICtrlSetBkColor($ii,$var) Next next $ii=0 endif sleep(10) WEnd
Attached Files
Edited by Uriziel01, 06 February 2008 - 03:41 AM.















