| | Bots and Programs Botting and Hacking programs for World of Warcraft. [NO QUESTIONS HERE] |  |  Auto-It EzSkinner | | |  | Knight Rep Power: 2 Reputation: 39
 | | Posts: 220 Join Date: Jun 2007 Location: Padded white room | | | Auto-It EzSkinner -
03-02-2008
Hello!
Ever wanted to re-skin something but couldn't? Now you can with Auto-It EzSkinner!
Au3 File only... [Only registered and activated users can see links. ] ( 17.63K ) [Only registered and activated users can see links. ] Plug-ins...
EzSkinShell.au3 - Skin other Programs!-
Notepad
Internet
Computer
XSkinShell - Example
EzSkinShell.au3 Code: ; XSkinShell.au3 Ver 1.0.0
#include <GUIConstants.au3>
#include-once
;#include <XSkin.au3>
;Opt("MustDeclareVars", 1)
Func XSkinReSize($XRS_Program, $XSR_Width, $XSR_Height)
Local $XSPID, $XhWnd = 0, $XstPID = DllStructCreate("int"), $XSWinList, $XSdll, $XPID
$XSPID = Run($XRS_Program, '', @SW_HIDE)
Do
$XSWinList = WinList()
For $i = 1 To $XSWinList[0][0]
If $XSWinList[$i][0] <> "" Then
DllCall("user32.dll", "int", "GetWindowThreadProcessId", "hwnd", $XSWinList[$i][1], "ptr", DllStructGetPtr($XstPID))
If DllStructGetData($XstPID, 1) = $XSPID Then
$XhWnd = $XSWinList[$i][1]
ExitLoop
EndIf
EndIf
Next
Sleep(20)
Until $XhWnd <> 0
$XSdll = ""
$XstPID = 0
If $XhWnd <> 0 Then
WinMove($XhWnd, "", 200, 200, $XSR_Width, $XSR_Height)
Sleep(100)
WinClose($XhWnd)
EndIf
EndFunc ;==>XSkinReSize
Func XSkinRun($XR_Title, $XR_Program = "") ; thanks holger
If $XR_Program = "" Then Return
Local $XhWnd = 0, $XstPID = DllStructCreate("int"), $XSWinList, $XhWinSize, $XSdll, $XPID, $XPID2, $XR_Ret[3], $Xh_ret, $oxStyle, $ostyle
$XPID = Run($XR_Program, '', @SW_HIDE)
Do
$XSWinList = WinList()
For $i = 1 To $XSWinList[0][0]
If $XSWinList[$i][0] <> "" Then
DllCall("user32.dll", "int", "GetWindowThreadProcessId", "hwnd", $XSWinList[$i][1], "ptr", DllStructGetPtr($XstPID))
If DllStructGetData($XstPID, 1) = $XPID Then
$XhWnd = $XSWinList[$i][1]
ExitLoop
EndIf
EndIf
Next
Sleep(20)
Until $XhWnd <> 0
$XSdll = ""
$XstPID = 0
If $XhWnd <> 0 Then
$XhWinSize = WinGetPos($XhWnd)
$XPID2 = XSkinGUICreate ( $XR_Title, ($XhWinSize[2]) + ($tile_size * 2) , ($XhWinSize[3]) + ($tile_size * 2), $Skin_Folder)
If FileExists($Icon_Folder) Then $Xh_ret = XSkinIcon ($XPID2)
$oxStyle = DllCall("user32.dll", "int", "GetWindowLong", "hwnd", $XPID2, "int", -16)
DllCall("user32.dll", "long", "SetWindowLong", "hwnd", $XPID2, "int", -16, "long", BitOR($oxStyle[0], $WS_CLIPCHILDREN))
$ostyle = DllCall("user32.dll", "long", "GetWindowLong", "hwnd", $XhWnd, "int", -16)
DllCall("user32.dll", "int", "SetParent", "hwnd", $XhWnd, "hwnd", $XPID2)
DllCall("user32.dll", "long", "SetWindowLong", "hwnd", $XhWnd, "int", -16, "long", BitOR($WS_POPUP, $WS_CHILD, $WS_VISIBLE, $WS_CLIPSIBLINGS))
GUISetState()
WinMove($XhWnd, "", $tile_size, $tile_size)
WinSetState($XhWnd, "", @SW_SHOW)
WinActivate($XhWnd)
$XR_Ret[0] = $XPID2
$XR_Ret[1] = $XhWnd
$XR_Ret[2] = $Xh_ret[1]
Return $XR_Ret
EndIf
EndFunc ;==>XSkinRun
Func XSkinExplore($XSI_Title, $XSI_Location, $XSI_Width, $XSI_Height)
Local $oXIE, $XSI_Ret[3], $XSI_but, $XSI_gui, $oXActiveX
$oXIE = ObjCreate("Shell.Explorer.2")
$XSI_gui = XSkinGUICreate ($XSI_Title, $XSI_Width + ($tile_size * 2), $XSI_Height + ($tile_size * 2), $Skin_Folder)
If FileExists($Icon_Folder) Then $XSI_but = XSkinIcon ($XSI_gui)
$oXActiveX = GUICtrlCreateObj($oXIE, $tile_size, $tile_size, $XSI_Width, $XSI_Height)
$oXIE.navigate ($XSI_Location)
GUISetState()
$XSI_Ret[1] = $XSI_Ret[0]
$XSI_Ret[2] = $XSI_but[1]
Return $XSI_Ret
EndFunc ;==>XSkinExplore
EzSkinToolBar.au3 - ToolBar for EzSkin
XSkinToolBar.au3 - #include Code: #include-once
#include <GUIConstants.au3>
;Opt("MustDeclareVars", 1)
; ver 1.0.0
; $h_ToolBar = XSkinToolBarCreate($Xh_Gui, $tool_left, $tool_top, $tool_width, $tool_bkcolor = "")
; XSkinToolBarButton($iNumber, $iDLL = "shell32.dll")
; XSkinToolBarSeparator()
Global $TBcnt = -1
Func XSkinToolBarCreate($Xh_Gui, $tool_left, $tool_top, $tool_width, $tool_bkcolor = "")
Local $Xh_ToolBar
$Xh_ToolBar = GUICreate("", $tool_width, 24, $tool_left, $tool_top, $WS_CHILD, $WS_EX_STATICEDGE, $Xh_Gui)
If $tool_bkcolor <> "" Then GUISetBkColor( $tool_bkcolor, $Xh_ToolBar)
Return $Xh_ToolBar
EndFunc
Func XSkinToolBarButton($iNumber, $iDLL = "shell32.dll")
Local $Xhadd, $TBBleft
$TBcnt = $TBcnt + 1
$TBBleft = $TBcnt * 24
$Xhadd = GUICtrlCreateButton("", $TBBleft, 1, 24, 24, $BS_ICON)
GUICtrlSetImage( $Xhadd, $iDLL, $iNumber, 0)
Return $Xhadd
EndFunc
Func XSkinToolBarSeparator()
Local $TBBleft
$TBcnt = $TBcnt + .5
$TBBleft = $TBcnt * 24
GUICtrlCreateLabel("", $TBBleft + 17, 2, 2, 22, $SS_ETCHEDVERT)
EndFunc
My parents said i could become anything, so i became an a******! 
SHAMPOO IS BETTA
http:// www .youtube. com/watch?v=9BxNJRxGbgE |  | Donate to remove ads. | |  | Knight Rep Power: 2 Reputation: 39
 | | Posts: 220 Join Date: Jun 2007 Location: Padded white room | | |
03-02-2008
PROBLEMS FIXED; OTHER PART OF POST BELOW My parents said i could become anything, so i became an a******! 
SHAMPOO IS BETTA
http:// www .youtube. com/watch?v=9BxNJRxGbgE
Last edited by Imakepigsfly; 03-02-2008 at 02:35 AM..
|  | | | | Banned Rep Power: 0 Reputation: 181
  | | Posts: 655 Join Date: Feb 2008 Location: Winterspring..mainly | | |
03-02-2008
so whats the point of different layouts on auto-it? just for show? |  | | |  | Knight Rep Power: 2 Reputation: 39
 | | Posts: 220 Join Date: Jun 2007 Location: Padded white room | | |
03-02-2008
My parents said i could become anything, so i became an a******! 
SHAMPOO IS BETTA
http:// www .youtube. com/watch?v=9BxNJRxGbgE |  | | |  | Knight Rep Power: 2 Reputation: 39
 | | Posts: 220 Join Date: Jun 2007 Location: Padded white room | | |
03-02-2008
Quote:
Originally Posted by Yeti so whats the point of different layouts on auto-it? just for show? | They make your programs in Auto-It look nicer  My parents said i could become anything, so i became an a******! 
SHAMPOO IS BETTA
http:// www .youtube. com/watch?v=9BxNJRxGbgE |  |  |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | |
Powered by vBulletin® Version 3.7.4 Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vBulletin Skin developed by: vBStyles.com |