AutoHotkey Community

It is currently May 27th, 2012, 11:37 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 781 posts ]  Go to page Previous  1 ... 14, 15, 16, 17, 18, 19, 20 ... 53  Next
Author Message
 Post subject:
PostPosted: April 22nd, 2010, 5:28 pm 
Offline

Joined: June 28th, 2007, 1:08 am
Posts: 662
There are five skins currently.
    Merlock's Device
    Obsidian
    Metal Plate
    Fresh Green
    Funky Star



To change them, open the menu, the select Menu Control, then in there is the option to change skins.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 23rd, 2010, 11:22 pm 
Offline
User avatar

Joined: April 4th, 2009, 8:19 pm
Posts: 1143
Location: Croatia
tomoe_uehara wrote:
It's wonderful... I love it!
@tomoe_uehara: Thanks for kind words. I'm glad you love it.
@Elesar: I really appreciate when you answer on RM related questions instead of me. Thanks.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 24th, 2010, 6:16 pm 
Offline
User avatar

Joined: September 5th, 2009, 2:06 pm
Posts: 1718
Location: Somewhere near you
BTW, I can't use the v3.18, so I'll just use the v3.17 =/
There's nothing happened when I hold down the right mouse button.

_________________
Image
The quick onyx goblin jumps over the lazy dwarf


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 25th, 2010, 12:24 am 
Offline

Joined: January 26th, 2009, 5:26 pm
Posts: 151
That is because by default you need to move the mouse down while holding right click to show the menu. In my version that works with theme packages I have added a setting to allow easily disabling the movement features and instead use a short timer. Links in the first post.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 25th, 2010, 1:05 pm 
Offline
User avatar

Joined: September 5th, 2009, 2:06 pm
Posts: 1718
Location: Somewhere near you
LiquidGravity wrote:
you need to move the mouse down while holding right click to show the menu

Ah.. You're 100% correct!
LiquidGravity wrote:
added a setting to allow easily disabling the movement features and instead use a short timer

Where?
After LiquidGravity said it, I've just noticed that RM has the Mouse Gesture system, it's very nice!

_________________
Image
The quick onyx goblin jumps over the lazy dwarf


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 26th, 2010, 1:06 am 
Offline

Joined: January 26th, 2009, 5:26 pm
Posts: 151
Download for my modified Theme pack version and basic instructions are found here: http://www.autohotkey.com/forum/post-339752.html#339752


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 3rd, 2010, 2:07 am 
Offline
User avatar

Joined: April 4th, 2009, 8:19 pm
Posts: 1143
Location: Croatia
Image
Not intended to be mighty as Radial menu v3+ script/program, but completely in function form.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 5th, 2010, 7:01 pm 
Offline
User avatar

Joined: September 5th, 2009, 2:06 pm
Posts: 1718
Location: Somewhere near you
Are there no other SelectEffects?
Code:
;==Shake effect==
if SelectEffect = Shake       
{
   SetWinDelay, 35          ; Shake speed
   Loop, 5
   {
      ; Set Shake intensity. X axis shake looks better than Y axis shake
      if A_index = 1    ; 2 pixels
      XEff -= 2
      Else if A_index = 2    ; 2 pixels
      XEff += 4
      Else if A_index = 3    ; 1 pixel
      XEff -= 3
      Else if A_index = 4    ; 1 pixel
      XEff += 2
      Else if A_index = 5    ; back to initial position
      XEff -= 1
      WinMove, %WinTitle%,, XEff, YEff
   }
}

; I add these custom SelectEffect lines
If SelectEffect = Fuzzy
{
   SetWinDelay, 10
   WinGetPos, PosX, PosY,,, %WinTitle%
   Loop, 40
   {
      Random, RX, -7, 7
      Random, RY, -7, 7
      XEff := RX+PosX
      YEff := RY+PosY
      WinMove, %WinTitle%,, XEff, YEff
   }
}

If SelectEffect = Rocket
{
   SetWinDelay, 10
   WinGetPos, PosX, PosY, Wid, Hei, %WinTitle%
   Loop, 30
   {
      Random, RX, -9, 9
      Random, RY, -9, 9
      XEff := RX+PosX
      YEff := RY+PosY
      WinMove, %WinTitle%,, XEff, YEff
   }
   WinMove, %WinTitle%,, PosX, PosY
   Loop, 20
   {
      YEff-=15
      WinMove, %WinTitle%,,,YEff
   }
}

If SelectEffect = Snow
{
   SetWinDelay, 10
   WinGetPos, PosX, PosY,,, %WinTitle%
   Loop, 7
   {
      Loop, 5
      {
         Random, XX, 2, 4
         If Sign = 1
         PosX -= XX
         Else
         PosX += XX
         WinMove, %WinTitle%,, PosX
         Loop, 2
         {
            PosY += 2
            WinMove, %WinTitle%,, PosX, PosY
         }
      }
      If Sign = 1
      Sign = 0
      Else
      Sign = 1
   }
   XX =
   YY =
}

If SelectEffect = Spiral
{
   Sign = 1
   SetWinDelay, 10
   WinGetPos, PosX, PosY,,, %WinTitle%
   Loop, 5
   {
      YY++
      Loop, %YY%
      {
         If Sign = 1
         PosY -= YY
         Else
         PosY += YY
         WinMove, %WinTitle%,,, PosY
      }
      XX++
      Loop, %XX%
      {
         If Sign = 1
         PosX -= XX
         Else
         PosX += XX
         WinMove, %WinTitle%,, PosX
      }
      If Sign = 1
      Sign = 0
      Else
      Sign = 1
   }
   XX =
   YY =
}
If SelectEffect = Random
{
   SetWinDelay, 20
   WinGetPos, PosX, PosY,,, %WinTitle%
   Loop, 50
   {
      Random, RR1, 0, 1
      Random, RR2, 0, 1
      If RR1 = 0
      Axis = X
      Else
      Axis = Y
      If RR2 = 0
      Pos%Axis%+=2
      Else
      Pos%Axis%-=2
      WinMove, %WinTitle%,, PosX, PosY
   }
}
SetWinDelay, 100        ; default
Return

I know those effects aren't good enough, but perhaps the authors can add more SelectEffects on the next version of RM =)
And also I can't change the width or height, just move them around..

_________________
Image
The quick onyx goblin jumps over the lazy dwarf


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 6th, 2010, 11:01 am 
Offline
User avatar

Joined: April 4th, 2009, 8:19 pm
Posts: 1143
Location: Croatia
Nice select effects. Width or height can't be changed. I think I'll add #Include %A_ScriptDir%\RMData\SelectEffects.ahk in next version.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 6th, 2010, 7:55 pm 
Offline
User avatar

Joined: April 4th, 2009, 8:19 pm
Posts: 1143
Location: Croatia
Image
[module] Radial menus and docks
- no globals
- compatible with both AHK_L and AHK Basic
- 15 pre-defined styles
- 3 selection methods: click, release, touch
- many other features
- requires Gdip.ahk by Tic

Download RMmodule which includes: RMmodule.ahk + Gdip.ahk + 5 examples
- last change: 26.02.2012. (day.month.year)
- last version: 1.04

Basic example
Code:
#Include Gdip.ahk      ; by Tic
#Include RMmodule.ahk   ; by Learning one

MenuA := RM_Create("This|is|my|first|menu")   ; creates menu with 5 items and stores its ID in MenuA variable
Return

1::   ; press 1 to show menu
RM_Show(MenuA)   ; shows MenuA under mouse
ItemA := RM_GetSelectedItem(MenuA)   ; gets selected item from MenuA and stores it in ItemA variable
if ItemA   ; if item is selected
MsgBox, ,Selected, %ItemA%,1   ; show it in MsgBox
Return

Esc::ExitApp


Last edited by Learning one on February 26th, 2012, 10:08 pm, edited 6 times in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 6th, 2010, 7:58 pm 
Offline
User avatar

Joined: September 5th, 2009, 2:06 pm
Posts: 1718
Location: Somewhere near you
Already released??

_________________
Image
The quick onyx goblin jumps over the lazy dwarf


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 7th, 2010, 2:57 am 
Offline

Joined: October 28th, 2006, 5:01 pm
Posts: 58
wow! nice work Learning one on RMmodule. Lots of possibilities here. I'm having fun trying things.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 9th, 2010, 7:26 am 
Offline
User avatar

Joined: September 5th, 2009, 2:06 pm
Posts: 1718
Location: Somewhere near you
Still waiting for the v3.19... =)
Btw can you give us a hint of the new features?

_________________
Image
The quick onyx goblin jumps over the lazy dwarf


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 11th, 2010, 8:48 am 
Quote:
Still waiting for the v3.19... =)
Btw can you give us a hint of the new features?


:D I hope it will be soon.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: May 11th, 2010, 8:15 pm 
a competitor :wink:

http://www.flickr.com/photos/47069565@N06/sets/72157623182116367/

http://users.telenet.be/serhiy.perevoznyk/krento.html


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 781 posts ]  Go to page Previous  1 ... 14, 15, 16, 17, 18, 19, 20 ... 53  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: MSN [Bot], nomissenrojb and 61 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