It is currently March 29th, 2024, 9:20 am

help with inline options

Get help with creating, editing & fixing problems with skins
User avatar
xenium
Posts: 841
Joined: January 4th, 2018, 9:52 pm

Re: help with inline options

Post by xenium »

FreeRaider wrote:

Code: Select all

InlineSetting=Underline
InlinePattern=[MeasureToday]
InlineSetting2=Underline
InlinePattern2=[MeasureDAY1]
InlineSetting3=Color | 255,255,0
InlinePattern3=[MeasureName]
InlineSetting4=Size | 10
InlinePattern4=[MeasureName]
InlineSetting5=Size | 10
InlinePattern5=[MeasureToday]
InlineSetting6=Size | 10
InlinePattern6=[MeasureDAY1]
; InlinePattern7 is for [MeasureConditions]
InlineSetting7=Italic
InlinePattern7=^.*\s:\s{1,}(.*)\,.*,.*Feels Like.*
; InlinePattern8 and 9 are for MeasureTemp 
InlineSetting8=Color | 255,0,0
InlinePattern8=^.*\,\s+(.*).*\,.*Feels Like:.*
InlineSetting9=Size | 14
InlinePattern9=^.*\,\s+(.*).*\,.*Feels Like:.*
DynamicVariables=1
:17group
Thank you very much !
You are a Genius! :bow:

I have also noticed a problem in the meantime:
When the location name contains a parenthesis, InlineSetting = Size does not work anymore (InlinePattern4 = [MeasureName]).

ex: https: //www.foreca.com/France/Cerbere_ (Cervera_de_la_Marenda)
User avatar
FreeRaider
Posts: 826
Joined: November 20th, 2012, 11:58 pm

Re: help with inline options

Post by FreeRaider »

xenium wrote::17group
Thank you very much !
You are a Genius! :bow:

I have also noticed a problem in the meantime:
When the location name contains a parenthesis, InlineSetting = Size does not work anymore (InlinePattern4 = [MeasureName]).

ex: https: //www.foreca.com/France/Cerbere_ (Cervera_de_la_Marenda)

Code: Select all

InlineSetting3=Color | 255,255,0
InlinePattern3=^(.*)\s+\|.*
InlineSetting4=Size | 24
InlinePattern4=^(.*)\s+\|.*
User avatar
xenium
Posts: 841
Joined: January 4th, 2018, 9:52 pm

Re: help with inline options

Post by xenium »

FreeRaider wrote:

Code: Select all

InlineSetting3=Color | 255,255,0
InlinePattern3=^(.*)\s+\|.*
InlineSetting4=Size | 24
InlinePattern4=^(.*)\s+\|.*
Thank you very much again ! :bow:
User avatar
FreeRaider
Posts: 826
Joined: November 20th, 2012, 11:58 pm

Re: help with inline options

Post by FreeRaider »

Glad to help.
User avatar
xenium
Posts: 841
Joined: January 4th, 2018, 9:52 pm

Re: help with inline options

Post by xenium »

Is there any possibility to add FontEffectColor = 168,168,168,168 for [MeasureTemp] only ?

Thank you
User avatar
balala
Rainmeter Sage
Posts: 16110
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: help with inline options

Post by balala »

xenium wrote:Is there any possibility to add FontEffectColor = 168,168,168,168 for [MeasureTemp] only ?
The FontEffectColor option belongs to String meters, not to WebParser measures. You can't use it there.
Or would you like to set this option on the [MeterTEXT] meter, only for the value of [MeasureTemp] measure?
User avatar
xenium
Posts: 841
Joined: January 4th, 2018, 9:52 pm

Re: help with inline options

Post by xenium »

balala wrote:Or would you like to set this option on the [MeterTEXT] meter, only for the value of [MeasureTemp] measure?
Yes, to this I have referred.
User avatar
balala
Rainmeter Sage
Posts: 16110
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: help with inline options

Post by balala »

xenium wrote:Yes, to this I have referred.
Depends on what effect you would like to use. If you want a Shadow effect, the following option could help: InlineSetting=Shadow | 2 | 2 | 3.5 | 168,168,168,168. You have to find the best values, for the first three numbers, as described here.
User avatar
xenium
Posts: 841
Joined: January 4th, 2018, 9:52 pm

Re: help with inline options

Post by xenium »

balala wrote:Depends on what effect you would like to use. If you want a Shadow effect, the following option could help: InlineSetting=Shadow | 2 | 2 | 3.5 | 168,168,168,168. You have to find the best values, for the first three numbers, as described here.
Thank you very much !
User avatar
balala
Rainmeter Sage
Posts: 16110
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: help with inline options

Post by balala »

Glad to help.