icadea Posted December 18, 2007 Posted December 18, 2007 (edited) Hi all,Am trying to make the label blink alternatively with any given number of colours till it closes.The code is given below#include <GUIConstants.au3> $lab = GUICreate("", 750, 40, 200, 0, $WS_POPUP, $WS_EX_TOOLWINDOW) GUISetBkColor(0xFF0000) GUISetState(@SW_SHOW) WinSetOnTop($lab, "", 1) WinSetTrans($lab, "", 255) While 1 Sleep(100) WEndHave searched the forum and came close to post at the link belowhttp://www.autoitscript.com/forum/index.ph...st&p=430585http://www.autoitscript.com/forum/index.ph...=blinking+labelbut i could not seem to adjust the script to do the work here as needed.Please guide/help. Thanks Edited December 18, 2007 by icadea
Nahuel Posted December 18, 2007 Posted December 18, 2007 Well, did you even look at Paulie's or Valuater's scripts? Valuaters was the closest to what you want, I guess.Now, you should also take a look at GuiEnhance, by RazerM and use _GUIEnhanceCtrlFad(). It fades a control's background color in a reeeaally smooth way. Try it out.
icadea Posted December 18, 2007 Author Posted December 18, 2007 am trying but is seems i'm keep getting only the text blinking and not the background... anyway, thanks for your help. Just need to figure out where i'm going wrong..
smashly Posted December 18, 2007 Posted December 18, 2007 Hi icadea, What Label ? I don't see a label in your snippet of code..#include <GUIConstants.au3> Opt("GUIOnEventMode", 1) $lab = GUICreate("", 750, 40, 200, 0, $WS_POPUP, BitOr($WS_EX_TOOLWINDOW, $WS_EX_TOPMOST)) GUISetOnEvent($GUI_EVENT_CLOSE, "Close", $lab) GUISetState(@SW_SHOW) AdlibEnable("RandomColor", 100) While 1 Sleep(100) WEnd Func RandomColor() GUISetBkColor(Random(0x000000, 0xffffff), $lab) EndFunc Func Close() Exit EndFunc Cheers
icadea Posted December 18, 2007 Author Posted December 18, 2007 hi smashly, Thank you for providing the help on the code above. I meant label as in the line below $lab = GUICreate("", 750, 40, 200, 0, $WS_POPUP, $WS_EX_TOOLWINDOW) GUISetBkColor(0xFF0000) sorry if i have named it wrong. thanks again.
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