MikeTranser Posted March 16, 2010 Share Posted March 16, 2010 Two Script problem First: (I need Create Label only in TabSheet2) Case $Slider1 $silder = GUICtrlRead($Slider1) GUICtrlDelete($Label3) GUICtrlCreateLabel($silder, 328, 120, 35, 20)In $TabSheet2 GUICtrlSetColor(-1, 0x0000FF) GUICtrlSetBkColor(-1, 0xFFFFFF) Second: I need slider automatic "If you hold slider the label is create automatic no put down" Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted March 16, 2010 Moderators Share Posted March 16, 2010 MikeTranser,Q1. Create the label when you create the Tab structure so that you get it in the right place - then use GUICtrlSetState(-1, $GUI_HIDE) to hide it. When you want it to appear, just use $GUI_SHOW to make it appear. Q2. I do not understand what you want to do in the second part of your request ("If you hold slider the label is create automatic no put down") - can you please explain in a bit more detail?M23 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...
MikeTranser Posted March 16, 2010 Author Share Posted March 16, 2010 In slider you must hold slider and turn right/left and you must put down slider to effect. (I need autmatic) Q1. Do you show me in my script? Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted March 16, 2010 Moderators Share Posted March 16, 2010 Miketranser, I understand now! I think this does what you want: expandcollapse popup#include <GUIConstantsEx.au3> $hGUI = GUICreate("Test", 500, 500) $tab = GUICtrlCreateTab(10, 10, 200, 100) $tab0 = GUICtrlCreateTabItem("Tab 0") $tab1 = GUICtrlCreateTabItem("Tab 1") $tab2 = GUICtrlCreateTabItem("Tab 2") ; Create label and hide it $hLabel = GUICtrlCreateLabel("", 30, 80, 50, 20) GUICtrlSetState(-1, $GUI_HIDE) GUICtrlCreateTabItem(""); end tabitem definition $hSlider = GUICtrlCreateSlider(10, 250, 480, 30) GUISetState() $iLastSlider = 0 While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit EndSwitch ; When cursor is over slider and button is down $aInfo = GUIGetCursorInfo($hGUI) If $aInfo[2] = 1 And $aInfo[4] = $hSlider Then Check_Slider() WEnd Func Check_Slider() ; Show label GUICtrlSetState($hLabel, $GUI_SHOW) ; While button is pressed While $aInfo[2] $iCurrSlider = GUICtrlRead($hSlider) ; Update label if value has changed If $iCurrSlider <> $iLastSlider Then $iLastSlider = $iCurrSlider GUICtrlSetData($hLabel, $iCurrSlider) EndIf $aInfo = GUIGetCursorInfo($hGUI) WEnd ; Hode label again GUICtrlSetState($hLabel, $GUI_HIDE) EndFunc M23 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...
MikeTranser Posted March 16, 2010 Author Share Posted March 16, 2010 Thanks Melba23, And please close topic. 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