Luigi Posted April 25, 2014 Share Posted April 25, 2014 Hi Forum, In this little example, I use _GUICtrlStatusBar_SetBkColor to flash the status bar, but, this idea flash all status bar parts's. Is possible flash only one part at each time? Flash only 'Part I' and not another parts? Thank you! expandcollapse popup#include <Array.au3> #include <GUIConstantsEx.au3> #include <GuiStatusBar.au3> Global $hGui, $hMsg, $hStatus $hGui = GUICreate('title', 800, 600) Local $a_Status_Part[3] = [266, 532, -1] $hStatus = _GUICtrlStatusBar_Create($hGui) _GUICtrlStatusBar_SetParts($hStatus, $a_Status_Part) _GUICtrlStatusBar_SetText($hStatus, 'Part I', 0) _GUICtrlStatusBar_SetText($hStatus, 'Part II', 1) _GUICtrlStatusBar_SetText($hStatus, 'Part III', 2) GUISetState(@SW_SHOWNORMAL) AdlibRegister('flash', 500) While 1 $hMsg = GUIGetMsg() Switch $hMsg Case $GUI_EVENT_CLOSE _exit() EndSwitch WEnd Func _exit() AdlibUnRegister('flash') GUIDelete($hGui) Exit EndFunc ;==>_exit Func flash() Local Static $toggle = 1 If $toggle Then $toggle = 0 _GUICtrlStatusBar_SetBkColor($hStatus, 0x0000ff) Else $toggle = 1 _GUICtrlStatusBar_SetBkColor($hStatus, 0xD4D0C8) EndIf EndFunc ;==>flash Visit my repository Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted April 25, 2014 Moderators Share Posted April 25, 2014 Detefon,How about this little trick? expandcollapse popup#include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <GuiStatusBar.au3> Global $hGui, $hMsg, $hStatus Global $iGUIHeight = 600 $hGui = GUICreate('title', 800, $iGUIHeight) Local $a_Status_Part[3] = [266, 532, -1] $hStatus = _GUICtrlStatusBar_Create($hGui) _GUICtrlStatusBar_SetParts($hStatus, $a_Status_Part) _GUICtrlStatusBar_SetText($hStatus, 'Part I', 0) _GUICtrlStatusBar_SetText($hStatus, 'Part II', 1) _GUICtrlStatusBar_SetText($hStatus, 'Part III', 2) GUISetState(@SW_SHOWNORMAL) $iStatusHeight = _GUICtrlStatusBar_GetHeight($hStatus) + (_GUICtrlStatusBar_GetBordersVert($hStatus) * 2) $aRect = _GUICtrlStatusBar_GetRect($hStatus, 0) $hMask = GUICreate("", $aRect[2] - $aRect[0], $aRect[3] - $aRect[1], 0, $iGUIHeight - $iStatusHeight, $WS_POPUP, $WS_EX_MDICHILD, $hGui) GUISetBkColor(0xFF0000) WinSetTrans($hMask, "", 0) GUISetState() AdlibRegister('flash', 500) While 1 $hMsg = GUIGetMsg() Switch $hMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Func flash() Local Static $toggle = 1 If $toggle Then $toggle = 0 WinSetTrans($hMask, "", 100) Else $toggle = 1 WinSetTrans($hMask, "", 0) EndIf EndFunc ;==>flashGood enough? M23 Luigi 1 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
Luigi Posted April 25, 2014 Author Share Posted April 25, 2014 Ohhhhh! A new Gui above old Gui? Flashing with transparence? I thinking the final effect is better than _GUICtrlStatusBar_SetBkColor! I like this! 8D Thank you Melba23! Visit my repository Link to comment Share on other sites More sharing options...
Luigi Posted April 25, 2014 Author Share Posted April 25, 2014 Reading another GuiStatusbar's functions, I found _GUICtrlStatusBar_EmbedControl. I not try yet, maybe is possible embed any kind flash control in status bar too. Is not flash native, but, may work like this. Visit my repository Link to comment Share on other sites More sharing options...
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