MoI discussion forum
MoI discussion forum

Full Version: CustomUI

Show messages:  1-5  …  386-405  406-425  426-445  446-465  466-485  486-505  506-522

From: Michael Gibson
12 Aug 2020   [#446] In reply to [#445]
Hi Alex, sorry no that's not something I've been planning. It doesn't really fit with the overall design of MoI which is focused on being streamlined and not showing a whole bunch of buttons at the top level all of the time.

But at some point I do want to make a mechanism for managing that area of the UI so you could promote some of your most frequently used commands there.

- Michael
From: fcwilt
13 Aug 2020   [#447] In reply to [#446]
Hi,

I haven't tried any sort of custom UI but I did like the idea of a "library" button.

That would seem to be in keeping with the idea of streamlining things.

Granted it doesn't save a lot of steps but it would be pretty nice just the same.

Frederick
From: bemfarmer
18 Aug 2020   [#448]
It would be nice if snapshot had a popup menu associated with it, for the different modes.
Maybe an html file could do this?

- Brian
From: art (ARTEXMG)
22 Aug 2020   [#449]
Hi guys, a quick (and simple I guess) question: how can I install the Custom UI Beta 2 in MoI 4 (Beta Jan 22 2020)?

What I've done so far:

1) Downloaded MoI 4.0 Beta Jan-22-2020 from http://moi.maxsm.net
2) Unzipped directory and copied into C:\Program Files\MoI 4.0 beta Jan-22-2020
3) Started MoI.exe

After that, I cannot see the custom bar. Is there something I'm missing here? I've been reading the forum, but I cannot find what's wrong. Should be something obvious.

Thanks for your help.
From: bemfarmer
22 Aug 2020   [#450] In reply to [#449]
Hi Art.
For Windows 10, the %AppData% path should be used. (Type in %AppData% in the windows search box, lower left corner of Windows 10 screen.)

I would suggest first that your C:\Users\<yourUsername>)\AppData\Roaming\Moi folders be unhidden.
(Google "unhide appdata folder windows 10") ...show hidden folders.
Also helpful is to set up a Library "MoiAppData" in File Explorer, for this path to ...AppData\Roaming\Moi, for quick access.
My Library link usually does not show the \Moi text, but the subdirectory is there.

The contents of this ...AppData\Roaming\Moi directory may be:
Folders:
commands (my extra non stock moi _scripts)
customui
nodeeditor
objects
snapshots
startup

There may also be some misc. files there, like MoiColors, moi license keys, etc.

- Brian

I scanned this topic back 2 years, and did not see comprehensive instructions for install in Moi v4 beta,
although a lot of issues were addressed.
I'd say follow Max's original instructions, but use %appdata%.

Mac link: https://moi3d.com/forum/index.php?webtag=MOI&msg=6507.404
From: art (ARTEXMG)
22 Aug 2020   [#451] In reply to [#450]
Wow Brian, thanks for this FAST and comprehensive answer.

It is working now. I think your post should be pinned.

Thanks

Art
From: Michael Gibson
22 Aug 2020   [#452] In reply to [#449]
Hi art, yes like Brian mentions above for v4 you should install it into the appdata folder, not into \Program Files.

Install instructions are here:
http://moi3d.com/forum/index.php?webtag=MOI&msg=6507.268

Try using Win+R to bring up the Windows "Run" dialog, and then type in:

%AppData%\Moi

and push Enter. That will open up the MoI appdata folder.

When you unzip CustomUI.2.0.beta2.zip there should be 3 folders that were inside the .zip . The folders are "customui", "objects", and "startup".

These should be copied over to the %AppData%\Moi folder.

So you should end up with:

%AppData%\Moi\customui
%AppData%\Moi\objects

and there will already be a %AppData%\Moi\startup folder, copy the contents of the startup folder in the .zip file into the %AppData%\Moi\startup folder.

- Michael
From: art (ARTEXMG)
22 Aug 2020   [#453] In reply to [#452]
Thanks Michael, this is one of the many reasons why MoI is the best: incredible fast answers :-)
From: Mindset (IGNITER)
7 Sep 2020   [#454]
The screen UI element for numeric input is missing.


This input widget doesn't appear.

Your suggestions will be appreciated.
MindSet

Image Attachments:
Numeric_Input.png  Numeric_Input.png 


From: Michael Gibson
7 Sep 2020   [#455] In reply to [#454]
Hi Mindset, does it not appear only in one specific place or everywhere?

Do you happen to have this set in your moi.ini ? :

[UI]
<....>
DisableNumericInputFlyout=y

- Michael
From: Mindset (IGNITER)
7 Sep 2020   [#456] In reply to [#455]
Bingo! Perfect!

BTW, Mr. Gibson, if I were to attempt to fully express how much I appreciate you, then neither of us would have time left for anything else.

Thank you Sir,
MindSet
From: Michael Gibson
7 Sep 2020   [#457] In reply to [#456]
Thanks Mindset! :)
From: Mindset (IGNITER)
7 Mar 2021   [#458]
How can I get a screenshot with a white background when using:
%AppData%\Roaming\Moi\ui\customui\-84 Snapshot.htm

???

Many Thanks,
Mindset
From: Michael Gibson
7 Mar 2021   [#459] In reply to [#458]
Hi Mindset, I don't seem to have an "-84 Snapshot.htm" file in the regular CustomUI package. Can you post it?

- Michael
From: Mindset (IGNITER)
7 Mar 2021   [#460] In reply to [#459]
Thanks Michael,

Maybe I renumbered it for some reason... don't remember.

MindSet

Attachments:
-84 Snapshot.htm


From: Michael Gibson
7 Mar 2021   [#461] In reply to [#458]
Hi Mindset, the code in there looks like it's already setting a white background.

What version of MoI are you using? I just noticed in the path you wrote:
%AppData%\Roaming\Moi\ui\customui\-84 Snapshot.htm

is that path really where you've got it? For MoI v4 it should be a .js file in %AppData%\Moi\startup and for v3 it would be in the install folder's UI subfolder not in appdata...

- Michael
From: Mindset (IGNITER)
7 Mar 2021   [#462] In reply to [#461]
Thanks Michael,

Apparently I've been editing the wrong file.
Here is %AppData%\Roaming\Moi\startup\82 Snapshot.js

MindSet

Attachments:
82 Snapshot.js


From: Michael Gibson
7 Mar 2021   [#463] In reply to [#462]
Hi Mindset, so in that one the line of code that sets the background color is line #22:

code:
	moi.view.viewportBackgroundColor = 0xEEEEEE;


That's going to be a light gray color. To make it white change that line to this instead:

code:
	moi.view.viewportBackgroundColor = 0xFFFFFF;


Does that do what you need?

- Michael
From: Mindset (IGNITER)
7 Mar 2021   [#464] In reply to [#463]
Thank you Michael,
You are a virtuoso! …the exemplar maestro!

That saves me a lot of time.
Shall I delete the ".\AppData\Roaming\Moi\ui\customui" Folder?

MindSet
From: Michael Gibson
7 Mar 2021   [#465] In reply to [#464]
Hi MindSet, you're welcome!

re:
> Shall I delete the ".\AppData\Roaming\Moi\ui\customui" Folder?

Yes I don't think it's being used. Double check that it's really \ui\customui though, there should be one in Moi\customui (no "ui") that is being used, that's where the menus for customui are at.

- Michael

Show messages:  1-5  …  386-405  406-425  426-445  446-465  466-485  486-505  506-522