sanhen Posted February 10, 2008 Posted February 10, 2008 (edited) The GUI of AU3 can carry out thus of control a style? Edited February 10, 2008 by sanhen
BrettF Posted February 10, 2008 Posted February 10, 2008 The GUI of AU3 can carry out thus of control a style?Pretty sure you could skin it using: http://www.autoitscript.com/forum/index.ph...amp;showfile=44I think... Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
Zedna Posted February 10, 2008 Posted February 10, 2008 #include <GUIConstants.au3> GUICreate("My Draw", 300, 200) GuiCtrlCreateGraphic(20, 20, 100,20) GUICtrlSetBkColor(-1,0x0000ff) GUICtrlSetColor(-1,0) GuiCtrlCreateLabel("123456789012345678901234567890", 20, 24, 300,20) GUICtrlSetColor(-1,0xff0000) GUICtrlSetBkColor(-1,$GUI_BKCOLOR_TRANSPARENT) ; *** GuiCtrlCreateGraphic(20, 50, 100,20) GUICtrlSetBkColor(-1,0x00ff00) GUICtrlSetColor(-1,0) GuiCtrlCreateLabel("123456789012345678901234567890", 20, 54, 300,20) GUICtrlSetColor(-1,0x000000) GUICtrlSetBkColor(-1,$GUI_BKCOLOR_TRANSPARENT) GuiSetState() Do $msg = GUIGetMsg() Until $msg=$GUI_EVENT_CLOSE Also look at GUICtrlCreateProgress() Resources UDF ResourcesEx UDF AutoIt Forum Search
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now