But for later i will take a look on the other solution. [if some one post something]
I have the problem that the focus moves from the actual skin to the text field and the MouseOver Section gets activated.
No, the input field is in effect an entirely separate window. It's really a "control", but has the same behavior. You will need to design the skin in such a way that having the mouse "leave" the skin in order to enter the input field doesn't trigger unwanted MouseLeaveAction(s).
Here's my own answer to the original question you had. It is very similar to what RicardoTM wrote, except it also has last item addition and removal by left and right clicking on the item index between the < and > signs (that index is colored pink if it's the first, cyan if it's the last, and white if neither, for conveniency). I used it as a base to demonstrate how to use variables to tackle an "aggregate" of both the skin over / leave AND the input text into / outof events, see the log:On the skin unfocus when entering the input text, I might have some code somewhere on the forum tackling that but I can't recall 100% if that's true, so I'll only explain what jsmorley mentioned earlier. You will need to NOT use mouseover and mouseleave events directly to do the action you want. Instead, use a variable that is set to 1 (over) or 0 (leave) based on BOTH the mouseover / mouseleave on the skin AND the click on the meter corresponding to the input text measure / dismiss event on the input text measure. In other words, make that variable 1 when mouse is over the skin OR the said meter is clicked, and 0 when mouse leaves the skin AND the said measure is dismissed. Then, you can use the value of that variable to execute whatever you need.
Code:
[Variables]transparenz=150OriginalW=300OriginalH=70FontSize10=10Delay=16SkinMouseOver=0InputTextInto=0ItemCountMax=100ItemCount=1ItemIndex=1NameDefault=Enter NamePictureDefault=Enter PathWebStreamDefault=Enter URLName1=#NameDefault#Picture1=#PictureDefault#WebStream1=#WebStreamDefault#[Rainmeter]Update=1000AccurateText=1DynamicWindowSize=1---Measures---[TrueMouseOver]Measure=CalcFormula=(#SkinMouseOver#+#InputTextInto#)UpdateDivider=-1IfCondition=(TrueMouseOver=0)IfTrueAction=[!Log "Leave"]IfFalseAction=[!Log "Over"]DynamicVariables=1[InputName]Measure=PluginPlugin=InputTextX=77Y=5W=200H=15FontSize=#FontSize10#FontColor=255,255,255,255SolidColor=47,47,47,255AntiAlias=1FocusDismiss=1DefaultValue=""Command1=[!SetVariable Name#ItemIndex# "$UserInput$"][!WriteKeyValue Variables Name#ItemIndex# "[InputName]"] DefaultValue="#NameDefault#"Command2=[!SetVariable InputTextInto 0][!UpdateMeasure TrueMouseOver]OnDismissAction=[!SetVariable InputTextInto 0][!UpdateMeasure TrueMouseOver]DynamicVariables=1[InputPicture]Measure=PluginPlugin=InputTextX=77Y=28W=200H=15FontSize=#FontSize10#FontColor=255,255,255,255SolidColor=47,47,47,255AntiAlias=1FocusDismiss=1DefaultValue=""Command1=[!SetVariable Picture#ItemIndex# "$UserInput$"][!WriteKeyValue Variables Picture#ItemIndex# "[InputPicture]"] DefaultValue="#PictureDefault#"Command2=[!SetVariable InputTextInto 0][!UpdateMeasure TrueMouseOver]OnDismissAction=[!SetVariable InputTextInto 0][!UpdateMeasure TrueMouseOver]DynamicVariables=1[InputWebStream]Measure=PluginPlugin=InputTextX=77Y=52W=200H=15FontSize=#FontSize10#FontColor=255,255,255,255SolidColor=47,47,47,255AntiAlias=1FocusDismiss=1DefaultValue=""Command1=[!SetVariable WebStream#ItemIndex# "$UserInput$"][!WriteKeyValue Variables WebStream#ItemIndex# "[InputWebStream]"] DefaultValue="#WebStreamDefault#"Command2=[!SetVariable InputTextInto 0][!UpdateMeasure TrueMouseOver]OnDismissAction=[!SetVariable InputTextInto 0][!UpdateMeasure TrueMouseOver]DynamicVariables=1---Meters---[LineBorder]Meter=ShapeShape=Rectangle 2,2,300,70,10 | Fill Color 0,0,0,140 | StrokeWidth 2 | Stroke Color 0,0,0,140MouseOverAction=[!SetVariable SkinMouseOver 1][!Delay #Delay#][!UpdateMeasure TrueMouseOver]MouseLeaveAction=[!SetVariable SkinMouseOver 0][!Delay #Delay#][!UpdateMeasure TrueMouseOver]DynamicVariables=1[LabelBack]Meter=StringX=15Y=5FontFace=ArialStringStyle=BoldFontSize=#FontSize10#FontColor=170,170,170,255SolidColor=47,47,47,255Padding=2,0,2,0AntiAlias=1Text=<LeftMouseUpAction=[!SetVariable ItemIndex (Clamp(#ItemIndex#-1,1,#ItemCount#))][!UpdateMeter *][!Redraw]DynamicVariables=1[LabelIndex]Meter=StringX=41Y=5W=26FontFace=ArialStringStyle=BoldStringAlign=CenterFontSize=#FontSize10#FontColor=(#ItemIndex#=#ItemCount#?255:(#ItemIndex#=1?55:155)),155,155,255SolidColor=63,63,63,255AntiAlias=1Text=#ItemIndex#LeftMouseUpAction=[!SetVariable ItemCount (Clamp(#ItemCount#+1,1,#ItemCountMax#))][!WriteKeyValue Variables ItemCount "[#ItemCount]"][!SetVariable Name[#ItemCount] "#NameDefault#"][!WriteKeyValue Variables Name[#ItemCount] "#*NameDefault*#"][!SetVariable Picture[#ItemCount] "#PictureDefault#"][!WriteKeyValue Variables Picture[#ItemCount] "#*PictureDefault*#"][!SetVariable WebStream[#ItemCount] "#WebStreamDefault#"][!WriteKeyValue Variables WebStream[#ItemCount] "#*WebStreamDefault*#"][!SetVariable ItemIndex [#ItemCount]][!UpdateMeter *][!Redraw]RightMouseUpAction=[!SetVariable Name[#ItemCount] "#NameDefault#"][!WriteKeyValue Variables Name[#ItemCount] "#*NameDefault*#"][!SetVariable Picture[#ItemCount] "#PictureDefault#"][!WriteKeyValue Variables Picture[#ItemCount] "#*PictureDefault*#"][!SetVariable WebStream[#ItemCount] "#WebStreamDefault#"][!WriteKeyValue Variables WebStream[#ItemCount] "#*WebStreamDefault*#"][!SetVariable ItemCount (Clamp(#ItemCount#-1,1,#ItemCountMax#))][!WriteKeyValue Variables ItemCount "[#ItemCount]"][!SetVariable ItemIndex [#ItemCount]][!UpdateMeter *][!Redraw]DynamicVariables=1[LabelForward]Meter=StringX=55Y=5FontFace=ArialStringStyle=BoldFontSize=#FontSize10#FontColor=170,170,170,255SolidColor=47,47,47,255Padding=2,0,2,0AntiAlias=1Text=>LeftMouseUpAction=[!SetVariable ItemIndex (Clamp(#ItemIndex#+1,1,#ItemCount#))][!UpdateMeter *][!Redraw]DynamicVariables=1[LabelName]Meter=StringX=75Y=4W=200H=10FontFace=ArialStringStyle=BoldFontSize=#FontSize10#FontColor=170,170,170,255SolidColor=47,47,47,255Padding=5,1,5,6AntiAlias=1Text=Name: [#Name[#ItemIndex]]LeftMouseUpAction=[!SetVariable InputTextInto 1][!UpdateMeasure TrueMouseOver][!CommandMeasure InputName "ExecuteBatch All"]DynamicVariables=1[LabelPicture]Meter=StringX=75Y=27W=200H=10FontFace=ArialStringStyle=BoldFontSize=#FontSize10#FontColor=170,170,170,255SolidColor=47,47,47,255Padding=5,2,5,6AntiAlias=1Text=Picture: [#Picture[#ItemIndex]]LeftMouseUpAction=[!SetVariable InputTextInto 1][!UpdateMeasure TrueMouseOver][!CommandMeasure InputPicture "ExecuteBatch All"]DynamicVariables=1[LabelWebStream]Meter=StringX=75Y=51W=200H=10FontFace=ArialStringStyle=BoldFontSize=#FontSize10#FontColor=170,170,170,255SolidColor=47,47,47,255Padding=5,2,5,6AntiAlias=1Text=WebStream: [#WebStream[#ItemIndex]]LeftMouseUpAction=[!SetVariable InputTextInto 1][!UpdateMeasure TrueMouseOver][!CommandMeasure InputWebStream "ExecuteBatch All"]DynamicVariables=1
Computing the distance to the skin is the alternative to the above, it has nothing to do with jsmorley's suggestion (which is what the above is about). Regarding the distance, I only answered that because you asked, you could have simply checked if $MouseX$ was between #CURRENTCONFIGX# and #CURRENTCONFIGX#+#CURRENTCONFIGWIDTH# at the same time of checking if $MouseY$ was between #CURRENTCONFIGY# and #CURRENTCONFIGY#+#CURRENTCONFIGHEIGHT#. That would have been trivial to implement using one of the mouse plugins I mentioned earlier. An explanation or advice is not set in stone, you can adjust it in a more comfortable fashion yourself, and you don't need code for that if the adjustment is simple enough.For that I need the screen height, the skin position and the skin height? And somehow calculate them together. aaa No pain, no gain. Or do I just need #MouseY#

Statistics: Posted by Yincognito — November 30th, 2024, 7:47 pm