It is currently March 29th, 2024, 2:43 pm

TAB in a text string...

Get help with creating, editing & fixing problems with skins
User avatar
brax64
Posts: 172
Joined: July 8th, 2018, 8:05 pm

TAB in a text string...

Post by brax64 »

How can I add "tabs" inside a text string?

Did try setting the variable tab=[\x0009] and in a String meter Text=text1#tab#text2#tab#... but it doesn't work..
User avatar
jsmorley
Developer
Posts: 22628
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: TAB in a text string...

Post by jsmorley »

brax64 wrote: August 29th, 2020, 5:39 pm How can I add "tabs" inside a text string?

Did try setting the variable tab=[\x0009] and in a String meter Text=text1#tab#text2#tab#... but it doesn't work..
Sure it does...

Code: Select all

[Rainmeter]
Update=1000
DynamicWindowSize=1
AccurateText=1

[Variables]
tab=[\x0009]

[MeterOne]
Meter=String
FontSize=11
FontWeight=400
FontColor=255,255,255,255
SolidColor=47,47,47,255
Padding=5,5,5,5
AntiAlias=1
Text=text1#tab#text2#tab#text3

1.jpg
You do not have the required permissions to view the files attached to this post.
User avatar
brax64
Posts: 172
Joined: July 8th, 2018, 8:05 pm

Re: TAB in a text string...

Post by brax64 »

jsmorley wrote: August 29th, 2020, 6:26 pm Sure it does...
I'm a dumb ass... just noticed that my variable was x\0009 instead of \x0009...
So sorry to bother you for such a stupid thing...
User avatar
jsmorley
Developer
Posts: 22628
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: TAB in a text string...

Post by jsmorley »

No problem. Glad to help.