It is currently April 30th, 2024, 9:54 pm

Folder Paths

Get help with creating, editing & fixing problems with skins
Dean
Posts: 3
Joined: August 31st, 2012, 7:40 pm

Folder Paths

Post by Dean »

Hi i would like to know if i can add a path to a link to open explorer with arguements
eg: LeftMouseDownAction=!Execute ["%SystemRoot%\explorer.exe shell:MyComputerFolder"]

thnx
User avatar
Kaelri
Developer
Posts: 1721
Joined: July 25th, 2009, 4:47 am

Re: Folder Paths

Post by Kaelri »

This should work:

Code: Select all

LeftMouseUpAction=["explorer.exe" shell:MyComputerFolder]
Dean
Posts: 3
Joined: August 31st, 2012, 7:40 pm

Re: Folder Paths

Post by Dean »

That worked, thank you.
Lightz39
Posts: 98
Joined: August 1st, 2012, 12:48 am

Re: Folder Paths

Post by Lightz39 »

Avoid using down action. It will disable your ability to drag the skin.
User avatar
UnforgivenRevival
Posts: 310
Joined: June 7th, 2012, 2:25 am
Location: Philadelphia, PA

Re: Folder Paths

Post by UnforgivenRevival »

Holding Ctrl when clicking will override any mouse action on a skin. Just an fyi. :)
User avatar
Arne Anka
Posts: 100
Joined: April 18th, 2009, 11:31 am
Location: Sweden

Re: Folder Paths

Post by Arne Anka »

Dean wrote:Hi i would like to know if i can add a path to a link to open explorer with arguements
eg: LeftMouseDownAction=!Execute ["%SystemRoot%\explorer.exe shell:MyComputerFolder"]

thnx
All you need is

Code: Select all

LeftMouseUpAction=[shell:MyComputerFolder]
Livet är bara en period man ska överleva.
Som filosoferna säger: man föds, man lever och man dör ensam...
Dean
Posts: 3
Joined: August 31st, 2012, 7:40 pm

Re: Folder Paths

Post by Dean »

cool tips thnx all.