| View previous topic :: View next topic |
| Author |
Message |
Elesar
Joined: 28 Jun 2007 Posts: 622 Location: Somewhere around 35 12N 101 49W
|
Posted: Sat Mar 20, 2010 3:47 am Post subject: |
|
|
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
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 |
|
 |
Learning one
Joined: 04 Apr 2009 Posts: 1001 Location: Croatia
|
Posted: Sat Mar 20, 2010 10:59 pm Post subject: |
|
|
@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 |
|
 |
SgtPooki
Joined: 19 Mar 2010 Posts: 2
|
Posted: Sun Mar 21, 2010 3:22 pm Post subject: hover over submenu button |
|
|
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
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 |
|
 |
Learning one
Joined: 04 Apr 2009 Posts: 1001 Location: Croatia
|
Posted: Mon Mar 22, 2010 7:58 pm Post subject: |
|
|
Radial menu v3.18 updated (v3.1807)
Changes:
- one (visual) surprise
- 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 |
|
 |
LiquidGravity
Joined: 26 Jan 2009 Posts: 145
|
Posted: Tue Mar 23, 2010 1:04 am Post subject: |
|
|
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 |
|
 |
XionII
Joined: 01 Feb 2010 Posts: 6 Location: California, USA
|
Posted: Tue Mar 23, 2010 1:20 am Post subject: RM has become even better?! Inconceivable!! |
|
|
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!
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.
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 |
|
 |
Loving this script Guest
|
Posted: Tue Mar 23, 2010 3:28 am Post subject: autohotkey_l compatibility |
|
|
I cant get it working with Autohotkey_L, the radial menu doesn't show. (tried on v3.17 and 3.1
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
|
Posted: Tue Mar 23, 2010 4:15 am Post subject: Re: RM has become even better?! Inconceivable!! |
|
|
| 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  |
|
| Back to top |
|
 |
Elesar
Joined: 28 Jun 2007 Posts: 622 Location: Somewhere around 35 12N 101 49W
|
Posted: Tue Mar 23, 2010 4:22 am Post subject: |
|
|
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 |
|
 |
XionII
Joined: 01 Feb 2010 Posts: 6 Location: California, USA
|
Posted: Tue Mar 23, 2010 4:47 am Post subject: |
|
|
@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 |
|
 |
guest101 Guest
|
Posted: Wed Mar 24, 2010 2:47 pm Post subject: Re: autohotkey_l compatibility |
|
|
| Loving this script wrote: | I cant get it working with Autohotkey_L, the radial menu doesn't show. (tried on v3.17 and 3.1
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
|
Posted: Thu Mar 25, 2010 5:49 pm Post subject: |
|
|
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 |
|
 |
tomoe_uehara
Joined: 05 Sep 2009 Posts: 1591 Location: Somewhere near you
|
Posted: Tue Apr 20, 2010 7:37 pm Post subject: |
|
|
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 |
|
 |
Learning one
Joined: 04 Apr 2009 Posts: 1001 Location: Croatia
|
Posted: Wed Apr 21, 2010 10:17 pm Post subject: |
|
|
| 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 |
|
 |
tomoe_uehara
Joined: 05 Sep 2009 Posts: 1591 Location: Somewhere near you
|
Posted: Thu Apr 22, 2010 7:04 am Post subject: |
|
|
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 |
|
 |
|