Another Dark UI

Next
 From:  2byts
7180.1 
Just bought Moi and very happy with it at the moment. I am using it to fill in the gaps where SubD modelling has yet to fill.

https://www.dropbox.com/s/bhzb7yq7vwjvqjn/Screenshot%202015-01-14%2022.27.10.png?dl=0


I have even managed to get radial menus working inside Moi with the help of Autohotkey, :)
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Frenchy Pilou (PILOU)
7180.2 In reply to 7180.1 
Cool !
Does an external user can use your parameters of the UI and aespecially the Pie Menus without use the Autohotkey ?
---
Pilou
Is beautiful that please without concept!
My Gallery
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Michael Gibson
7180.3 In reply to 7180.1 
That's great 2byts, I'm glad that you're having fun with MoI!

- Michael
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  2byts
7180.4 In reply to 7180.2 
Autohotkey is required for the Radial Menus...

http://www.autohotkey.com/board/topic/46856-radial-menu-scripts-updated-07122014/

it is portable and requires very little resources.




I am a newb with scripting, and would honestly prefer something like this to be native. I come from a Maya background so these menus are second nature to me. Currently I am learning Autohotkey -a very powerful app that is way over my head. The menus work great inside Moi, but they are active in other apps as well which gets in the way. Still trying to figure out the solution.

I would be happy to share what I have if you want to first get the Radial Menus working....would appreciate the joint effort for problem solving.


As far as the Dark UI...nothing special their...I can share that, it is just a hack of the moi.css, sidepane and tweaking 1 icon.
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Frenchy Pilou (PILOU)
7180.5 In reply to 7180.4 
< I would be happy to share what I have if you want to first get the Radial Menus working....would appreciate the joint effort for problem solving.

Just to test it if you want - Not to code it alas! :)
---
Pilou
Is beautiful that please without concept!
My Gallery
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  2byts
7180.6 In reply to 7180.5 
Ok.

https://dl.dropboxusercontent.com/u/3784437/Radial%20menu%20v4.rar


Download and extract this into its own folder. Keep in mind, not all menus are fully functional...i just did the layout for now with some functions working correctly...and need to figure out how to suspend menus when not inside Moi.



Double clicke RadialMenu.exe and it should work. You should see an icon in the Task Manager -double click it to turn it off, right mouse click for options.


Make sure Moi is active (i made it partially inactive outside of Moi), and i have these hotkey mapped to submenus:

alt+1
alt+2
alt+3
alt+4
alt+q
alt+w
alt+e
alt+a
alt+s
alt+d
alt+z
alt+x
alt+c

This is the master menu:
alt+left (mapped to custom mouse button)
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Frenchy Pilou (PILOU)
7180.7 In reply to 7180.6 
I have launched it but It's appear one second and disapear!
And when I relaunch it! It's not appear again!

When you say Task manager, what is it exactly ? (the icones of the Radial Menu ? )
Where must be seen ? Icôns over over anything screen; windows or just Moi ?
I am on Windows 8

Alt+1, Alt+2... must be pressed or it's some sub menu initialised when you press the right click mouse?
Are they yet adressed by something or I must adress them ?

EDITED: 15 Jan 2015 by PILOU

  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  2byts
7180.8 In reply to 7180.7 
The icon (3 circles) is in the task manager next to where the windows clock is...double clicking it will make it turn red and pause it. RMB over it will point you to the controls.


Press and hold hotkey, make selection with left mouse click and then release hotkey.

The menus will disappear as soon as you release the hotkey.


The master menu (alt + left) should remain until you make a selection. This can be modified in the general settings.

 


I am on Windows 7
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Frenchy Pilou (PILOU)
7180.9 In reply to 7180.8 
Windows 7 --> Windows 8 is surrely my problem!
I will wait answer from another users! :)
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  RobertH
7180.10 
Hi 2byts,

The code below will show you how to setup AutoHotKey to work with specific applications. Basically you need to test if a window/app is active, set whatever commands for that app you want, then setup for the next app (or all apps). This is done with the following code for Moi:


#IfWinActive ahk_class MoiMainWindow


Every command that follows will apply to Moi until the next #IfWinActive ahk_class command is encountered. You can have one script work with many application. For instance I want all my applications to save data using F12 and if the application itself doesn't allow for remapping of keys I stick it in my main AutoHotKey script.

To determine the "ahk_class" for an application, do the following. When an AutoHotKey script is running (I don't remember if this works with a compiled EXE script), right click on the AutoHotKey icon in the system tray and select "Window Spy". Then run whatever application you want and Window Spy will tell you the class of that app along with other info, to be use in the #IfWinActive ahk_class parameter.

Look at the following example for setting up keys in one script for Moi, WordPad, PhotoShop, Solitaire followed by all applications.

HTH

 

================================================
;
;
; Settings in beginning of file
;

#SingleInstance force
#InstallKeybdHook
#InstallMouseHook
SetTitleMatchMode, 2

;
; Special Auto Hot Key Keystrokes
;
; ^ = Ctrl (Hold down the Ctrl key)
; ! = Alt (Hold down the Alt key)
; + = Shift (Hold down the Shift Key)
; # = WIN (Hold down the WIN key)
;

 

;
; Remap Moi
;
#IfWinActive ahk_class MoiMainWindow

 

;
; Remap WordPad
;
#IfWinActive ahk_class WordPadClass
F12::^s

 

;
; Remap Photoshop
;
#IfWinActive ahk_class Photoshop
!e::^!+E ; Copy Merged - Visible Layers Snap Shot
z::!^z ; Step Backward (undo)


;
; Remap Solitaire
;
#IfWinActive ahk_class Windows.UI.Core.CoreWindow
XButton1::g


#IfWinActive ; This puts subsequent remappings and hotkeys in effect for all windows.

================================================
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  2byts
7180.11 In reply to 7180.10 
I knew about the Ahk_class and had it working properly for one setting, but putting:

#SingleInstance force
#InstallKeybdHook
#InstallMouseHook
SetTitleMatchMode, 2
#IfWinActive ahk_class MoiMainWindow


into the hotkey script that the Radial Menu uses, works awesome!!!

wicked!

Now the Radial Menus no longer interfere with other hotkeys of other applications. Thanx Robert!

I will update the menus when I am done, and Moi can have radial menus :)
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  RobertH
7180.12 
My pleasure, glad I could help... and thanks so much for your contribution to the forum!
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  2byts
7180.13 In reply to 7180.12 
Is there any way to organize the custom commands and scripts so that they do not mingle with native scripts?

I hope to release the Radial Menus soon, but it will need to include some scripts and I hope to keep things organized.
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Michael Gibson
7180.14 In reply to 7180.13 
Hi 2byts,

> Is there any way to organize the custom commands and scripts so that
> they do not mingle with native scripts?

Sorry no there isn't - the way the command mechanism works MoI expects to find commands inside of its commands folder, you can't place them elsewhere and still have them found.

In the future this will probably change with other options but for now that's how things are set up.

- Michael
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Frenchy Pilou (PILOU)
7180.15 
No news of this radial menu ?
---
Pilou
Is beautiful that please without concept!
My Gallery
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  2byts
7180.16 
Oh wow, yeah I have a working version but it requires Autohotkey. Had to do a complete reinstall of hard drive though and have not been using MOI in the last 3 months because of a differeent project.

Let me look into it...now that I have gotten more proficient at Moi I have had less need for radial menus.
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
 From:  Frenchy Pilou (PILOU)
7180.17 In reply to 7180.16 
No problem! :)
---
Pilou
Is beautiful that please without concept!
My Gallery
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged
 

Reply to All Reply to All