Show messages:
 1-11
 …
 32-51
 52-71
 72-91
 92-111
 112-131
 132-151
 152-171
 …
 512-522
Message 6507.92 was deleted
From: Frenchy Pilou (PILOU)
Say I want one for the LineWeb Command for example
I have the image ok, but what about the rest of the process till that icon will be added to the CommandBar ?
I don't want replace the 4 yet existing of the Max's Plugin
From: BurrMan
Hi Frenchy,
    You can open the commandbar.htm file with notepad, then note the line for one of the commands already there, like this one:
<moi:CommandButton icon="res://deleteicon" command="delete"><moi:Text textid="Delete"></moi:CommandButton>
This part here is your icon:
 icon="res://deleteicon"
If you put your icon in MoI's icon folder, you can then set that to something like this:
icon="icons/plugin.png"
Does that help?
From: Max Smirnov (SMIRNOV)
Hi Pilou, 
you need to create a new module. (you can use "select" module as template)
copy "07 Select.htm" to "60 LineWeb.htm"
open 60 LineWeb.htm with notepad
 code:
<moi:Spacer/>
<moi:CommandButton icon=" ----- put BASE64 icon here ---- " onbuttonclick="LineWeb">LineWeb</moi:CommandButton>
From: BurrMan
oop's... I had left max's ui.. yes, disregard my comments and look to previous post from max. My bad.
From: Frenchy Pilou (PILOU)
THX I will try that tomorrow! :)
From: Frenchy Pilou (PILOU)
hello :)
I have that when I press my LineWeb icon, image and text icon are good but... ;)
Lineweb is of course installed and works when I press Tab & type LineWeb
My 2 lines of 60 Lineweb.html file are
<moi:Spacer>
<moi:CommandButton icon="data:image/png;base64,........numerous caracters ...." onbuttonclick="LineWeb">LineWeb</moi:CommandButton>
Surely I must add something to the Commandbar.htm but what and where ? :)
 
PS When You press CTL + SHIFT + CLICK on the Options' Button You can open a Zoo! :D
From: Michael Gibson
Hi Pilou, the problem is onbuttonclick="LineWeb" - the contents of onbuttonclick are run as script code, and LineWeb is the name of a command, not script code.
Instead of that put command="LineWeb".
If you wanted to do it in a click handler with script code it would be like this:  onbuttonclick="moi.command.execCommand( 'LineWeb' );"
     - Michael
From: Max Smirnov (SMIRNOV)
Ops, my fault.
use "command=..." instead of "onbuttonclick=..."
From: Frenchy Pilou (PILOU)
Fabulous! Now Success is complete! Bravo!  Thx both of you! :)
I have used the Michael's method, but will test the Max's method also! ;)
And I see that I have not Translated the LineWeb Command! (if possible) ;)
P  I have forgotten to make a transparent image PNG! So background icon is here white!
 
From: Frenchy Pilou (PILOU)
Trying the Max line, works very fine also and some more short to type! ;)
Max method: command="LineWeb"
Michael method  : onbuttonclick="moi.command.execCommand( 'LineWeb' );" 
 
From: Max Smirnov (SMIRNOV)
Michael also said about "command=" method. ;) 
P.S. Check this thread: 
http://moi3d.com/forum/messages.php?webtag=MOI&msg=6440.1
From: Frenchy Pilou (PILOU)
LineWeb in French! ;)
http://moiscript.weebly.com/lineweb.html
 
 
From: raytownmike (HOPPER)
I haven't been reading (following) this thread for sometime. Back when I did I was wondering about just how to install the script on my Mac.
Are there many new developments I should be aware of? Thanks I look forward to any responses!
From: Max Smirnov (SMIRNOV)
>>raytownmike
>>..how to install the script on my Mac
Hi, 
1. Go to the first post in this thread and download CustomUI.1.0.mac.zip
2. Right-click the MoI app icon and choose "Show package contents". Go into drive_c/moi/ui. Backup CommandBar.htm
3. Extract CustomUI.1.0.mac.zip to drive_c/moi
From: Frenchy Pilou (PILOU)
Can you give me the process for a Script to the Commandbar?
Say i have this one	
script:/*Loop Selection*/moi.geometryDatabase.selectLoop();
Seems ... onbuttonclick="Loop Selection">Loop Selection</moi:CommandButton>
don't work ?
From: Max Smirnov (SMIRNOV)
Hi Pilou
 code:
<moi:CommandButton icon="..." onbuttonclick="moi.geometryDatabase.selectLoop();">Loop Selection</moi:CommandButton>
From: Frenchy Pilou (PILOU)
Huhu
of course if we must type all the script that is an another story! I could not find that !
Many thanks!
From: Frenchy Pilou (PILOU)
Tested! Bravo!
Button of the BarCommand for a script (not a Command) works very fine!
From: raytownmike (HOPPER)
I get to the final step and not sure what to do because to use the words Extract CustomUI.1.0 what does that mean.
For example: Replace something from existing contents? Sorry
Show messages:
 1-11
 …
 32-51
 52-71
 72-91
 92-111
 112-131
 132-151
 152-171
 …
 512-522