It is currently March 28th, 2024, 7:30 pm

Skin won't stay position

Get help with creating, editing & fixing problems with skins
simnguyen22
Posts: 1
Joined: August 15th, 2010, 2:00 am

Skin won't stay position

Post by simnguyen22 »

Hey,

I've just put together a simple launcher dock. However, everytime I refresh the skin, or restart (rainmeter/laptop), the skin will never stay in the last place I left it, always going back to the default position in the top left of the screen.

The skin's settings will also reset to the default settings.

The dock itself works fine.

I'm running Windows 7, i've got the latest version of rainmeter, I've checked the on desktop buttons, unchecked the keep on screen and snap to edges buttons, rainmeter.ini is not read only, etc.

The code:

Code: Select all

[Rainmeter]
MouseActionCursor=0
Update=1000000
Background=bg.png

[Variables]
@include=#SKINSPATH#\WP7\Common\Variables\UserVariables.inc
@include2=#SKINSPATH#\WP7\Common\Variables\Languages\lang.inc

:------------------------------------------------------------

Image1=Icons\Firefox.png
Launcher1=C:\Program Files\Mozilla Firefox\firefox_.exe

Image2=Icons\GOOGLE CHROME.png
Launcher2=chrome.exe

Image3=Icons\Mail.png
Launcher3=https://mail.google.com/mail/?shva=1#inbox

Image4=Icons\MESSENGER - MSN.png
Launcher4=msnmsgr.exe

Image5=Icons\MS OFFICE 2007.png
Launcher5=WINWORD.exe

Image6=Icons\Itunes.png
Launcher6=Itunes.exe

Image7=Icons\WMPLAYER.png
Launcher7=wmplayer.exe

:------------------------------------------------------------

[Launcher1]
Meter=Image
ImageName=#Image1#
X=30
Y=10
H=48
W=48
LeftMouseDownAction=!Execute ["#Launcher1#"]

[Launcher2]
Meter=Image
ImageName=#Image2#
X=30R
Y=10
H=48
W=48
LeftMouseDownAction=!Execute ["#Launcher2#"]

[Launcher3]
Meter=Image
ImageName=#Image3#
X=30R
Y=05
H=48
W=48
LeftMouseDownAction=!Execute ["#Launcher3#"]

[Launcher4]
Meter=Image
ImageName=#Image4#
X=30R
Y=10
H=48
W=48
LeftMouseDownAction=!Execute ["#Launcher4#"]

[Launcher5]
Meter=Image
ImageName=#Image5#
X=30R
Y=10
H=48
W=48
LeftMouseDownAction=!Execute ["#Launcher5#"]

[Launcher6]
Meter=Image
ImageName=#Image6#
X=30R
Y=10
H=48
W=48
LeftMouseDownAction=!Execute ["#Launcher6#"]

[Launcher7]
Meter=Image
ImageName=#Image7#
X=30R
Y=10
H=48
W=48
LeftMouseDownAction=!Execute ["#Launcher7#"]

:------------------------------------------------------------

Thanks