AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

RADIAL MENU scripts - updates - 29.01.2012.
Goto page Previous  1, 2, 3 ... 15, 16, 17 ... 46, 47, 48  Next
 
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
Elesar



Joined: 28 Jun 2007
Posts: 622
Location: Somewhere around 35 12N 101 49W

PostPosted: Sat Mar 20, 2010 3:47 am    Post subject: Reply with quote

SqtPooki, your idea is essentially what I am aiming for when I get time to work on my settings front end again, though I have no idea when that will be.

Provided RM goes to colab. development, it may just be easier to integrate it into RM instead of having a different script interact with it.

My original attempt was not drag&drop, and created an always-open RM that would change as you added items via a gui that it was docked to, but I only got about 50% done with that, and RM was still undergoing frequent and radical changes at that time.

I'm hoping to get some free time this weened to start looking at it, but no promises Razz

Also, I do like your idea of not having to click to show sub-menu. Maybe a small hover delay could be implemented instead?
Back to top
View user's profile Send private message
Learning one



Joined: 04 Apr 2009
Posts: 1001
Location: Croatia

PostPosted: Sat Mar 20, 2010 10:59 pm    Post subject: Reply with quote

@XionII & SgtPooki, thanks for kind words.

SgtPooki wrote:
I also plan on editing it so you do not have to click on each circle to have the next menu appear.
I do not encourage auto submenu open when you hover over item. Why? Limitation to just one ring in main menu. Read this.

@Elesar & SgtPooki:
- Automatic icon extraction if target is an exe, overwrite if custom one is set.
- Center clock as an option (an earlier post showed this, I really like it)
- Modular Skinning (LiquidGravity is already working on this)
Great suggestions. I encourage them all.

If you will create RM settings script, please, try to make it a stand alone script. I strongly insist on that. So when you run RM settings script:
1) it exits RM (if it is running)
2) loads RM in "edit mode"
3) when user finishes customization, it writes values to .ini files and
4) reloads RM

Some guidlines:
1) very long self-explainable variable names are always better than short ones. Example: AutoSubmenuMarking is always better than ASM
2) write comments
3) if you will edit RM main script, try to preserve code structure at all costs

In upcoming RM update: possibility to set button positioning separately for main menu and submenus, possibility to change window's transparency
by dragging and sliding over window's caption with RMShowHotkey, Sort RM Items.ahk utility, some reliability improvements, maybe something else...

BTW, if somebody likes LiquidGravity's or Houndx's modifications, say it! I said I like them. Saying nice mod is the minimal reward for their efforts.
Back to top
View user's profile Send private message Visit poster's website
SgtPooki



Joined: 19 Mar 2010
Posts: 2

PostPosted: Sun Mar 21, 2010 3:22 pm    Post subject: hover over submenu button Reply with quote

I didn't think of that. You would only be limited to one ring, and it would be a pain if you accidentally hovered over one button you didn't mean to..

But I am all for the hard challenges, thats why I started programming Wink

We could easily verify that hovering over a button wouldn't cause a problem and open the submenu at that point, or require a click if hovering would cause annoyance.

If I didn't explain that well enough:

If (CurrentMenuRing == 1LevelDeep) && (mousehover %submenubutton%)
{
goto open submenu code
}
else
{
wait for click
}
Back to top
View user's profile Send private message
Learning one



Joined: 04 Apr 2009
Posts: 1001
Location: Croatia

PostPosted: Mon Mar 22, 2010 7:58 pm    Post subject: Reply with quote

Radial menu v3.18 updated (v3.1807)

Changes:
- one (visual) surprise Smile
- click & horizontal drag over window's caption will change window's transparency. Drag left increases and drag right decreases transparency.
(one more built-in NCHITTEST Extra.ahk functionality)
- ButtonPositioning split to MMButtonPositioning and SMButtonPositioning - now you can change button positioning separately for main menu and submenus
- Sort RM Items.ahk - new utility located in Utilities folder. Read description section in it.
- updated RM help file
- some other changes

Download



* * *

@LiquidGravity: I'll implement modular themes in RM v3.19
Back to top
View user's profile Send private message Visit poster's website
LiquidGravity



Joined: 26 Jan 2009
Posts: 145

PostPosted: Tue Mar 23, 2010 1:04 am    Post subject: Reply with quote

Very nice skin and the transparency is an awesome effect.

Can't wait for V3.19!

I'm working on that animated PNG thing. Hopefully I'll have it all figured out for V3.2
Back to top
View user's profile Send private message
XionII



Joined: 01 Feb 2010
Posts: 6
Location: California, USA

PostPosted: Tue Mar 23, 2010 1:20 am    Post subject: RM has become even better?! Inconceivable!! Reply with quote

That new skin is really really awesome... crazy cool! Being able to make windows different levels of transparency is nifty too.

@LiquidGravity: Animated PNG? Never heard of such a thing. Sounds like I can't wait for it! Smile

P.S.
Just an afterthought; It would be kinda neat to have a line follow the movement of your mouse icon when you are doing mouse gestures. Shocked

P.P.S
I'll keep it to the point; I was messing with MyMouseGestures, in particular trying to get UD to show the desktop.
MG_UD() {
Send #D
}
This doesn't work. It simply types D. Is there a better command to show the desktop?
Thanks.
Back to top
View user's profile Send private message
Loving this script
Guest





PostPosted: Tue Mar 23, 2010 3:28 am    Post subject: autohotkey_l compatibility Reply with quote

I cant get it working with Autohotkey_L, the radial menu doesn't show. (tried on v3.17 and 3.1Cool
I read the code, but I am clueless about which modification should be made.

Can anybody help, please?
Back to top
Elesar



Joined: 28 Jun 2007
Posts: 622
Location: Somewhere around 35 12N 101 49W

PostPosted: Tue Mar 23, 2010 4:15 am    Post subject: Re: RM has become even better?! Inconceivable!! Reply with quote

XionII wrote:
P.P.S
I'll keep it to the point; I was messing with MyMouseGestures, in particular trying to get UD to show the desktop.
MG_UD() {
Send #D
}
This doesn't work. It simply types D. Is there a better command to show the desktop?
Thanks.


Give WinMinimizeAll a try Cool
Back to top
View user's profile Send private message
Elesar



Joined: 28 Jun 2007
Posts: 622
Location: Somewhere around 35 12N 101 49W

PostPosted: Tue Mar 23, 2010 4:22 am    Post subject: Reply with quote

Bug Report:

I really like the transparency utility added in the latest version. However, I have noticed that I frequently have to "refresh" a window to get the latest updates by changing transparency of the window.

My main issue is with Chrome, as when I reload a page or scroll up/down, it looks like the program freezes, but it is actually working, just not updating until I force refresh of the transparency.
Back to top
View user's profile Send private message
XionII



Joined: 01 Feb 2010
Posts: 6
Location: California, USA

PostPosted: Tue Mar 23, 2010 4:47 am    Post subject: Reply with quote

@Elesar
Awesome. I knew there had to be a way! Thanks a ton, as this now freed up a whole space in RM main window!

edit: The only downside to WinMinimizeAll is that it doesn't bring windows back up. I take it WinMinimizeAllUndo would do that, but my skills aren't great enough to implement it when, say, the desktop is in focus. It will do for now, in any case.

edit2: I believe that I got it to work properly! Thanks again Elesar for setting me on the right path!
Back to top
View user's profile Send private message
guest101
Guest





PostPosted: Wed Mar 24, 2010 2:47 pm    Post subject: Re: autohotkey_l compatibility Reply with quote

Loving this script wrote:
I cant get it working with Autohotkey_L, the radial menu doesn't show. (tried on v3.17 and 3.1Cool
I read the code, but I am clueless about which modification should be made.

Can anybody help, please?


If I recall correctly, there might be some problems with IniRead, which this script uses a lot
Back to top
Learning one



Joined: 04 Apr 2009
Posts: 1001
Location: Croatia

PostPosted: Thu Mar 25, 2010 5:49 pm    Post subject: Reply with quote

Thanks, all of you.
@Loving this script: I haven't tried to use RM with Autohotkey_L. If you are using unicode AHK_L, maybe main RM script and all #included scripts
should be saved in unicode encoding?
@Elesar: Regarding transparency, I even asked for help while working on this. It looks like there is no solution, it can't work perfectly in all cases...
Back to top
View user's profile Send private message Visit poster's website
tomoe_uehara



Joined: 05 Sep 2009
Posts: 1591
Location: Somewhere near you

PostPosted: Tue Apr 20, 2010 7:37 pm    Post subject: Reply with quote

Okay thanks to Elesar, so now I can use Learning one's RM =)

Learning one, what if you add the latest download link at your signature line, so people don't have to search for the link manually...

_________________

The quick onyx goblin jumps over the lazy dwarf
Back to top
View user's profile Send private message
Learning one



Joined: 04 Apr 2009
Posts: 1001
Location: Croatia

PostPosted: Wed Apr 21, 2010 10:17 pm    Post subject: Reply with quote

tomoe_uehara wrote:
I can use Learning one's RM =)

I'm glad to hear that! Do you like it?
Latest download link is in the first post of this topic, I think it's noticeable enough...
Back to top
View user's profile Send private message Visit poster's website
tomoe_uehara



Joined: 05 Sep 2009
Posts: 1591
Location: Somewhere near you

PostPosted: Thu Apr 22, 2010 7:04 am    Post subject: Reply with quote

It's wonderful... I love it!

It's noticeable enough, but maybe there's other people who like me too, who always jumps to the latest page of a thread..

Ow, what about the other skins? Has it implemented?

_________________

The quick onyx goblin jumps over the lazy dwarf
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2, 3 ... 15, 16, 17 ... 46, 47, 48  Next
Page 16 of 48

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group