Vicks Posted July 6, 2006 Share Posted July 6, 2006 do you know how to include the skinbuilder in to autoit? the websitei know it can be done but the guy who posted add a folder showing how but links are down [s]Autoit[/s] Link to comment Share on other sites More sharing options...
Vicks Posted July 6, 2006 Author Share Posted July 6, 2006 anyone please [s]Autoit[/s] Link to comment Share on other sites More sharing options...
Briegel Posted July 6, 2006 Share Posted July 6, 2006 Maybe this can help (only one strike at google). Have a look. Link to comment Share on other sites More sharing options...
livewire Posted July 6, 2006 Share Posted July 6, 2006 SkinBuilder builds skins. SkinCrafter allows you to display skins on GUIs. To use skin builder, download it from their website and follow their instructions. To use SkinCrafter, download their trial dll or buy it and get the official dll...then run some code like this (their API for the dll is on their wesite somewhere - I think in the manual). expandcollapse popup#include <GuiConstants.au3> $dll = DllOpen(@ScriptDir & "\SkinCrafter.dll") ; location of dll DllCall($dll, "int", "InitLicenKeys", "int", BSTR("0"), "int", BSTR("SKINCRAFTER"), "int", BSTR("SKINCRAFTER.COM"), "int", BSTR("support@skincrafter.com"),"int", BSTR("DEMOSKINCRAFTERLICENCE")) DllCall($dll, "int", "DefineLanguage", "int", 0) DllCall($dll, "int", "InitDecoration", "int", 1) DllCall($dll, "int", "LoadSkinFromFile", "int", BSTR(@ScriptDIr & "\SC-Skins\WinterBlues.skf")) ; location of skin DllCall($dll, "int", "ApplySkin") $handle = GuiCreate("Mem Stats", 300, 270,(@DesktopWidth-220)/2, (@DesktopHeight-220)/2) $Label_1 = GuiCtrlCreateLabel("Memory Load:", 10, 10, 190, 20) $Label_2 = GuiCtrlCreateLabel("Total Physical RAM:", 10, 40, 190, 20) $Label_3 = GuiCtrlCreateLabel("Available Physical RAM", 10, 70, 190, 20) $Label_4 = GuiCtrlCreateLabel("Total Pagefile", 10, 100, 190, 20) $Label_5 = GuiCtrlCreateLabel("Available Pagefile", 10, 130, 190, 20) $Label_6 = GuiCtrlCreateLabel("Total Virtual", 10, 160, 190, 20) $Label_7 = GuiCtrlCreateLabel("Available Virtual", 10, 190, 190, 20) $Progress1 = GUICtrlCreateProgress(200,10,25,200,$PBS_SMOOTH + $PBS_VERTICAL) $Progress2 = GUICtrlCreateProgress(235,10,25,200,$PBS_SMOOTH + $PBS_VERTICAL) $Progress3 = GUICtrlCreateProgress(270,10,25,200,$PBS_SMOOTH + $PBS_VERTICAL) $MPV_Label = GUICtrlCreateLabel("M P V",205,215) $timestamp = TimerInit() GuiSetState() DllCall($dll, "int", "UpdateControl", "int", 0) While 1 If TimerDiff($timestamp) > 1000 Then $timestamp = TimerInit() $mem = MemGetStats() GUICtrlSetData($Progress1,$mem[0]) GUICtrlSetData($Progress2,($mem[3]-$mem[4])*100/$mem[3]) GUICtrlSetData($Progress3,($mem[5]-$mem[6])*100/$mem[5]) GUICtrlSetData($Label_1,"Memory Load: " & $mem[0] & " %") GUICtrlSetData($Label_2,"Total Physical RAM: " & $mem[1] & " KB") GUICtrlSetData($Label_3,"Available Physical RAM: " & $mem[2] & " KB") GUICtrlSetData($Label_4,"Total Pagefile: " & $mem[3] & " KB") GUICtrlSetData($Label_5,"Available Pagefile: " & $mem[4] & " KB") GUICtrlSetData($Label_6,"Total Virtual: " & $mem[5] & " KB") GUICtrlSetData($Label_7,"Available Virtual: " & $mem[6] & " KB") WinSetTitle(WinGetTitle($handle),"","Mem Stats - " & $mem[0] & " %") EndIf $msg = GuiGetMsg() Select Case $msg = $GUI_EVENT_CLOSE Quit() Case Else ;;; EndSelect WEnd Func BSTR($str) $len = StringLen($str) $buff = DllCall("oleaut32.dll", "int", "SysAllocStringLen", "int", 0, "int", $len) DllCall("kernel32.dll", "int", "MultiByteToWideChar", "int", 0, "int", 0, "str", $str, "int", $len, "ptr", $buff[0], "int", $len) Return $buff[0] EndFunc Func Quit() GUISetState(@SW_HIDE) DllCall($dll, "int", "DeInitDecoration") DllCall($dll, "int", "RemoveSkin") DllClose($dll) Exit EndFunc Link to comment Share on other sites More sharing options...
Moderators SmOke_N Posted September 9, 2006 Moderators Share Posted September 9, 2006 how i convert *.skf to *.dll ??Convert? You don't... (Well you don't and expect it still to work that is). Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer. Link to comment Share on other sites More sharing options...
microsoft Posted July 13, 2007 Share Posted July 13, 2007 Please New Script And File Dll Link to comment Share on other sites More sharing options...
Snarg Posted July 14, 2007 Share Posted July 14, 2007 Please New Script And File Dll You bumped a *very* old topic but...This script contains a working SkinCrafter .dll and the required AutoIt code. A little reading goes a long way. Post count means nothing. Link to comment Share on other sites More sharing options...
microsoft Posted July 15, 2007 Share Posted July 15, 2007 You bumped a *very* old topic but...This script contains a working SkinCrafter .dll and the required AutoIt code.Error !! I am Use Autoit V 3, 2, 4, 9 Link to comment Share on other sites More sharing options...
Snarg Posted July 15, 2007 Share Posted July 15, 2007 I am Use Autoit V 3, 2, 4, 9I used 3.2.1.13. Try an older version. A little reading goes a long way. Post count means nothing. Link to comment Share on other sites More sharing options...
microsoft Posted July 20, 2007 Share Posted July 20, 2007 I used 3.2.1.13. Try an older version.Thank you Link to comment Share on other sites More sharing options...
microsoft Posted July 20, 2007 Share Posted July 20, 2007 I Need Update this Script and make it On Autoit V 3, 2, 4, 9 Link to comment Share on other sites More sharing options...
Fossil Rock Posted July 21, 2007 Share Posted July 21, 2007 Check this out ... http://www.skincrafter.com/forum/viewtopic...ighlight=autoit. Agreement is not necessary - thinking for one's self is! Link to comment Share on other sites More sharing options...
bundyal Posted May 17, 2023 Share Posted May 17, 2023 Hi, Does anyone have the 3.0 version of SkinCrafterDll.dll ? that works. Preferably the latest version. Thank you in advance Link to comment Share on other sites More sharing options...
Skeletor Posted May 17, 2023 Share Posted May 17, 2023 Before the mods get to you first, please start a new thread and do not NECROPOST. Kind RegardsSkeletor "Coffee: my defense against going postal." Microsoft Office Splash Screen | Basic Notepad Program (Beginner) | Transparent Splash Screen | Full Screen UI Link to comment Share on other sites More sharing options...
bundyal Posted May 17, 2023 Share Posted May 17, 2023 Okay sorry Skeletor Link to comment Share on other sites More sharing options...
Developers Jos Posted May 17, 2023 Developers Share Posted May 17, 2023 29 minutes ago, Skeletor said: Before the mods get to you first, please start a new thread and do not NECROPOST. Please don't post these kind of post. Only report in case you really can't suppress the urge to do something about it. thanks! Skeletor 1 SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
Recommended Posts