Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/28/2012 in all areas

  1. water

    GUI design concepts.

    Wouldn't it be nice if there was a screenshot with each example script?
    3 points
  2. legend

    Transparent label

    it does, but i found a better solution #Include <GuiConstantsEx.au3> $hGUI = GUICreate("",110,100) GUICtrlCreateGraphic(0,0,200,200) GUICtrlSetBkColor(-1,0xFF11EE) GUICtrlSetState(-1,$GUI_DISABLE) $check = GUICtrlCreatecheckbox ( " checkbox " , 20 , 20 ) GUICheckBoxSetColor ($check, 0x000000 , $GUI_BKCOLOR_TRANSPARENT ) GUISetState ( ) While 1 $nMsg = GUIGetMsg ( ) Switch $nMsg Case - 3 Exit EndSwitch WEnd Func GUICheckBoxSetColor ( ByRef $nats, $iColor, $iBkColor= "0xF1EDED" ) $CtrlHWnd = $nats If Not IsHWnd ( $CtrlHWnd) Then $CtrlHWnd = GUICtrlGetHandle ($nats) $AParent = DllCall ( "user32.dll" , "hwnd" , "GetParent" , "hwnd" , $CtrlHWnd) $aCPos = ControlGetPos ( $AParent[ 0 ] , "" , $nats) $Soldt = GUICtrlRead ( $nats, 1 ) GUICtrlDelete ( $nats) DllCall ( 'uxtheme.dll' , 'none' , 'SetThemeAppProperties' , 'int' , 0 ) $nats = GUICtrlCreatecheckbox ( $Soldt, $aCPos[ 0 ] , $aCPos[ 1 ] , $aCPos[ 2 ] , $aCPos[ 3 ] ) GUICtrlSetColor ( - 1 , $iColor) GUICtrlSetBkColor ( - 1 , $iBkColor) DllCall ( 'uxtheme.dll' , 'none' , 'SetThemeAppProperties' , 'int' , 7 ) EndFunc
    1 point
  3. It is possible to keep some function names. You have to add the names to the following directive as a comma separated list: #Obfuscator_Ignore_Funcs=
    1 point
  4. There will be no way that Obfuscator can know the names of the function you are trying to form in the formula like this: hotkeyset($hk[$hks][9], "functionfunction"&$hks) So it cannot rename them. But, having said that: I cannot see what obfuscating the names you have would buy you as there are just consecutive names already. Don't forget that what Obfuscator does can be undone partially and renaming funcs back is one of them, so Obfuscator doesn't protect your script at all, just makes it harder to read. Jos
    1 point
  5. AdmiralAlkex

    SDL UDF

    Some screenshots: (notice the transparent Opera/AutoIt png image) Bugs: The _SDL_*Color() draw strange colors (_SDL_*RGBA() works fine).See notes in scripts for more details and broken functions.ToDo:Lots. Q. What licence does it use? A. Read README.TXT in the archive. Download: SDL v14 ½.zip (previous downloads= ???+117+68+40+9+5) (old uploads can be found here) If the above link doesn't work, try links from post #44 or
    1 point
×
×
  • Create New...