Что нового

Генератор цветов

GUIMish

Знающий
Сообщения
122
Репутация
12
Версия AutoIt: 3.3.8.1

Описание:
:scratch: Как состоит вот это:
01.png

Как я не смотрел, в http://autoit-script.ru/index.php/topic,4579.0.html
Не могу понять как она состоит, :-[ Я сам хочу сделать что-то наподобие, но не могу я понять код, смотрел и в библиотеке http://autoit-script.ru/index.php/topic,1382.0.html тоже не могу я понять!
Помогите разобраться!
 

WSWR

AutoIT Гуру
Сообщения
941
Репутация
363
GUIMish

Может нужно что-то вроде этого?

Код:
#include <Misc.au3>

$color = _ChooseColor(2)

MsgBox(0, 'Заголовок', $color)


В http://autoit-script.ru/index.php/topic,1382.0.html первый пример вроде несложный:

Код:
#Include <ColorChooser.au3>

Opt('MustDeclareVars', 1)

Global $hForm, $Msg, $Label, $Button, $Data, $Color = 0x50CA1B

$hForm = GUICreate('MyGUI', 170, 200)
$Label = GUICtrlCreateLabel('', 15, 15, 140, 140, $SS_SUNKEN)
GUICtrlSetBkColor(-1, $Color)
$Button = GUICtrlCreateButton('Select color...', 35, 166, 100, 23)
GUISetState()

While 1
    $Msg = GUIGetMsg()
    Switch $Msg
        Case $GUI_EVENT_CLOSE
            ExitLoop
        Case $Button
            $Data = _ColorChooserDialog($Color, $hForm)
            If $Data > -1 Then
                GUICtrlSetBkColor($Label, $Data)
                $Color = $Data
				MsgBox(262144, 'Заголовок', '0x' & Hex($Data, 6))
            EndIf
    EndSwitch
WEnd
 
Верх