It is currently May 19th, 2024, 9:22 pm

Editing Omnimo panels to show on mouseclick

Get help with creating, editing & fixing problems with skins
chunderface
Posts: 3
Joined: November 28th, 2012, 7:45 am

Editing Omnimo panels to show on mouseclick

Post by chunderface »

Hey all new to the scene and would like a bit of help.

What i want to do is have one Omnimo panel, that when clicked on, shows a bunch of other
panels, sort of like a menu.

If anyone could help it would be real great thanks.
User avatar
Mordasius
Posts: 1173
Joined: January 22nd, 2011, 4:23 pm
Location: GMT +8

Re: Editing Omnimo panels to show on mouseclick

Post by Mordasius »

You might like to try contacting Omnimo's authors on the Ominimo Help and Support page.
chunderface
Posts: 3
Joined: November 28th, 2012, 7:45 am

Re: Editing Omnimo panels to show on mouseclick

Post by chunderface »

Yeah i have doen that too, thought i may aswell ask here aswell.

I think i have to put the panels in a group and then have the main panel hide all the grouped panels on mouseclick. im jsut not sure where to put the code
User avatar
MerlinTheRed
Rainmeter Sage
Posts: 889
Joined: September 6th, 2011, 6:34 am

Re: Editing Omnimo panels to show on mouseclick

Post by MerlinTheRed »

If the panels are separate skins you can put them into a skin group by editing Rainmeter.ini (right-click Rainmeter tray icon->Edit settings). See here for the official documentation: http://docs.rainmeter.net/manual/groups
You have to find your skins in the Rainmeter.ini settings file and add Group=Something to it. Then you can use a bang to show/hide that group in your toggling skin:

LeftMouseUpAction=!ToggleGroup "Something"

See here for skin group bangs: http://docs.rainmeter.net/manual/bangs#SkinGroup
Have more fun creating skins with Sublime Text 2 and the Rainmeter Package!
chunderface
Posts: 3
Joined: November 28th, 2012, 7:45 am

Re: Editing Omnimo panels to show on mouseclick

Post by chunderface »

MerlinTheRed wrote:If the panels are separate skins you can put them into a skin group by editing Rainmeter.ini (right-click Rainmeter tray icon->Edit settings). See here for the official documentation: http://docs.rainmeter.net/manual/groups
You have to find your skins in the Rainmeter.ini settings file and add Group=Something to it. Then you can use a bang to show/hide that group in your toggling skin:

LeftMouseUpAction=!ToggleGroup "Something"

See here for skin group bangs: http://docs.rainmeter.net/manual/bangs#SkinGroup
Thank you very much, exactly what i wanted and it works perfectly!