AutoHotkey Community

It is currently May 27th, 2012, 1:40 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 781 posts ]  Go to page Previous  1 ... 5, 6, 7, 8, 9, 10, 11 ... 53  Next
Author Message
 Post subject:
PostPosted: January 14th, 2010, 12:04 am 
Offline

Joined: August 1st, 2009, 12:24 pm
Posts: 46
Anyway to modify this so it doesn't interfere with right drag functionality? (Changing the hotkey to another key is undesirable for me)


Thanks.


Report this post
Top
 Profile  
Reply with quote  
 Post subject: same question.
PostPosted: January 14th, 2010, 5:49 am 
I've been playing with that too. autohotkey has some problems like with listening on certain keys. This may be an AHK issue not a RadialMenu problem.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 14th, 2010, 8:54 pm 
Offline
User avatar

Joined: April 4th, 2009, 8:19 pm
Posts: 1143
Location: Croatia
Radial menu help file wrote:
Troubleshooting - Hotkeys don't work.
Collision with other running scripts and/or programs is possible. Simply change your hotkeys.

RMShowHotkey (Radial menu show hotkey) can be:
- RButton
- MButton
- XButton1
- XButton2
- LButton

If you don't want to use RButton due to collision with other running scripts and/or programs
and changing the hotkey to another key is undesirable for you
than you can't use Radial menu.

What do you mean when you say right drag functionality?
Do you have some mouse gestures program that uses RButton?

Radial menu main code can be modified in the way that RM shows on some mouse gesture...


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 15th, 2010, 1:07 am 
Offline

Joined: June 28th, 2007, 1:08 am
Posts: 662
My biggest "right drag" functionality is 3D games and applications such as Blender3D, where you use a combination of mouse clicks to move your viewport.

For my issue, a program exclusion setting would work great. This would simply allow you to add programs that RM would not activate inside of.

I like having RM running all of the time, but if I am in a game and forget to turn it off, I suddenly have my game minimize when I try to operate the camera.

BTW, my settings script is on hold until further notice, as I am starting to work 12 hour shifts again next month, and RM is evolving too fast for me to keep up with (which is a good thing :P)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 15th, 2010, 4:12 am 
Offline

Joined: August 1st, 2009, 12:24 pm
Posts: 46
Learning one wrote:
Radial menu help file wrote:
Troubleshooting - Hotkeys don't work.
Collision with other running scripts and/or programs is possible. Simply change your hotkeys.

RMShowHotkey (Radial menu show hotkey) can be:
- RButton
- MButton
- XButton1
- XButton2
- LButton

If you don't want to use RButton due to collision with other running scripts and/or programs
and changing the hotkey to another key is undesirable for you
than you can't use Radial menu.

What do you mean when you say right drag functionality?
Do you have some mouse gestures program that uses RButton?

Radial menu main code can be modified in the way that RM shows on some mouse gesture...



Yes, I am trying to get this to work with StrokeIt. It would be sweet if this script can be used w/o interfering with that.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 15th, 2010, 3:17 pm 
Offline
User avatar

Joined: April 4th, 2009, 8:19 pm
Posts: 1143
Location: Croatia
Sorry, I'm really not motivated to find a way how to use Radial menu and StrokeIt in the same time with the same hotkey - RButton.
I wrote my own mouse gestures script that isn't in collision with Radial menu...

All I can do for you is to suggest you to change your RMShowHotkey...
If you don't have XButton1 or XButton2 this may be a nice combination for you:
RMShowHotkey = MButton
ShowDelay = 220
RSMShowHotkey = RButton



Elesar wrote:
My biggest "right drag" functionality is 3D games and applications such as Blender3D, where you use a combination of mouse clicks to move your viewport.
For my issue, a program exclusion setting would work great. This would simply allow you to add programs that RM would not activate inside of. I like having RM running all of the time, but if I am in a game and forget to turn it off, I suddenly have my game minimize when I try to operate the camera.


Radial menu can be modified to become context sensitive program
Replace line 649 in Radial menu v3.16.ahk with this (just EXAMPLE)
Code:
; EXAMPLE - Radial menu is disabled if Paint or Notepad are active windows.
; if this is useful, I'll probably allow user to make BlackList.txt and implant it here by FileRead or FileReadLine
; or just #Include *i BlackList.ahk - this is probably the best solution - gives more freedom
GroupAdd, BlackList, ahk_class MSPaintApp  ; Paint
GroupAdd, BlackList, ahk_class Notepad  ; Notepad

Hotkey, IfWinNotActive, ahk_group BlackList
Hotkey, %RMShowHotkey%, RMShowHotkey
Hotkey, IfWinNotActive



By the way, here is one custom subroutine that I'm using.
It toggles sounds on/off without reloading RM and IniWrite. In this example, it's associated to Item10 in MenuControl submenu.
Read Radial menu help file before you ask questions about it!
Code:
MenuControl10() {   ; Sounds on/off
Global
if Sounds = 1   ; turn off sounds
{
   SoundOnShow =
   SoundOnHover =
   SoundOnSelect =
   SoundOnHide =
   Sounds =
}
Else            ; turn on sounds
{
    IniRead, SoundOnShow, %A_ScriptDir%\RM settings.ini, General, SoundOnShow
    IniRead, SoundOnHover, %A_ScriptDir%\RM settings.ini, General, SoundOnHover
    IniRead, SoundOnSelect, %A_ScriptDir%\RM settings.ini, General, SoundOnSelect
    IniRead, SoundOnHide, %A_ScriptDir%\RM settings.ini, General, SoundOnHide
    Sounds = 1
}
}


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 18th, 2010, 2:25 am 
Offline
User avatar

Joined: April 4th, 2009, 8:19 pm
Posts: 1143
Location: Croatia
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject: WANT!
PostPosted: January 18th, 2010, 7:34 am 
obsidian skin?

holy hotness batman... gimme gimme gimme!!!


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 18th, 2010, 8:28 pm 
Offline
User avatar

Joined: April 4th, 2009, 8:19 pm
Posts: 1143
Location: Croatia
Quote:
holy hotness batman... gimme gimme gimme!!!

Oh, Batman requested one custom radial menu so he can quickly choose his vehicle...
Here's what Alfred and myself made for him;
Image




:wink: :wink:
To derive this skin from Obsidian skin (still not released), don't use icons and set;
TextColor = 000000
TextTrans = FF
ShadowColor = 686868
for a finishing touch you can put batman logo in the middle of MenuBackground...


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 18th, 2010, 9:16 pm 
Offline

Joined: October 28th, 2006, 5:01 pm
Posts: 58
lol @ Learning one

you should add that skin to the next release. Skins look great in 3.16!


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 19th, 2010, 1:32 pm 
Offline

Joined: September 2nd, 2006, 6:39 am
Posts: 279
Location: Scotland
Wow, this thing looks cool.

Thanks for taking the time to make it.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 19th, 2010, 7:52 pm 
Offline
User avatar

Joined: April 4th, 2009, 8:19 pm
Posts: 1143
Location: Croatia
RM v3.16 package updated! - download it again.

Changes:
- improved automatic text&shadow placement - now it's almost impossible that text and shadow in button don't match
- ShadowOffset limited to 2 max
- new skin: Obsidian
- partially updated RM help file
- possibility to temporary disable Radial menu while certain windows are active - see Black list in RM help file
- possibility to use multi line tooltips; `n
- Sounds on/off button in MenuControl submenu - quickly toggles sounds.
- some other changes in codes


Batskin. (3 posts above) To derive Batskin from Obsidian skin, set (change):
TextColor = 000000
TextTrans = FF
ShadowColor = 686868
don't use icons unless they are mainly black
for a finishing touch you can put batman logo in the middle of MenuBackground...


Report this post
Top
 Profile  
Reply with quote  
PostPosted: January 20th, 2010, 3:18 am 
love it, very slick... thanks!!![/img]


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 27th, 2010, 10:06 am 
Offline
User avatar

Joined: April 4th, 2009, 8:19 pm
Posts: 1143
Location: Croatia
Thank you, all.

Sound mixing is finally solved in RM v3.17! Excellent quality, fast response, very low CPU usage! Does not use any .dll-s or function libraries.

RM v3.17 can play (and mix):
- SoundOnShow
- SoundOnHover
- SoundOnSelect
- SoundOnHide
- SoundOnSubShow (sound on submenu show)
- SoundOnSubHide (sound on submenu hide)

Of course, you'll be able to disable all or just specific sounds and change them, if RM will sound to you too much like some spaceship launcher...

With Sound mixing technology in RM v3.17 it will also be easy to play random sounds on each event. For example, when menu shows up, you could hear human voice saying: Hello or Hi or What do you want?... That would give you impression that you are really dealing with live AI. But I'll not implement those random human voices yet. I'm not native English/American speaker, so hearing me saying What do you want? would sound bad.


Report this post
Top
 Profile  
Reply with quote  
 Post subject: RADIAL MENU scripts
PostPosted: January 27th, 2010, 7:32 pm 
Offline

Joined: March 30th, 2008, 5:50 pm
Posts: 23
Location: France 14
Hello Learning One,

Do you know Radian launcher ? : see Web address below :
Requirements .NET Framework 3

http://www.snapfiles.com/get/radian.html
or
http://www.nirmaltv.com/2009/11/07/radian-is-another-useful-application-launcher/

You should find some good ideas espacially for setup

MaxMax14


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 781 posts ]  Go to page Previous  1 ... 5, 6, 7, 8, 9, 10, 11 ... 53  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 13 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group