Share your MoI keyboard shortcuts
 1-20  21-40  41-60  61-72

Previous
Next
 From:  Michael Gibson
8123.61 In reply to 8123.60 
Hi Elang, there are some view setting shortcut key scripts listed here:
http://moi3d.com/forum/index.php?webtag=MOI&msg=3808.2

Are any of those close to what you want?

- 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:  Elang
8123.62 In reply to 8123.61 
Hi Michael

I tried the script from your link. I expect that if i tap the hotkey, the view will be change to the opposite direction from the current one.
So if it is in Front View, then tapping the same key will bring it to the Back View. Tapping it again will bring me to the Front View. And so on.

The script is not doing that for now.

Thank you.
  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
8123.63 In reply to 8123.62 
Hi Elang, try these ones:

Set Top/Bottom view:

script: /* Set Top/Bottom view */ var vname = 'Top'; var vp = moi.ui.mainWindow.viewpanel; if ( vp.mode.toLowerCase() != vname.toLowerCase() ) { vp.mode = vname; } else { vp.mode = vname; vp.reverseView( vname ); }

Set Front/Back view:

script: /* Set Front/Back view */ var vname = 'Front'; var vp = moi.ui.mainWindow.viewpanel; if ( vp.mode.toLowerCase() != vname.toLowerCase() ) { vp.mode = vname; } else { vp.mode = vname; vp.reverseView( vname ); }

Set Right/Left view:

script: /* Set Right/Left view */ var vname = 'Right'; var vp = moi.ui.mainWindow.viewpanel; if ( vp.mode.toLowerCase() != vname.toLowerCase() ) { vp.mode = vname; } else { vp.mode = vname; vp.reverseView( vname ); }


- 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:  Elang
8123.64 In reply to 8123.63 
It works, Michael.

Thank you very much!
  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:  none (EVALON)
8123.65 
Hi All,

I have a quick question that I hope one of you can help with:

Using much of the fine information in this thread I have sorted out most of my shortcut key wishes, however, I can't seem to find out what the shortcut key is for editing the "size" (x,y,z size dialog box) of a selected object. I probably have missed it but would one of you know what it is?

Best regards & wishing you a pleasant day!

Jesper
  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)
8123.66 In reply to 8123.65 
Scale, Scale1D, Scale2D ;)

http://moi3d.com/4.0/docs/moi_command_reference11.htm#shortcutkeys

But for that you want exactly no need shortcut it's direct! :)

EDITED: 14 Apr 2023 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:  none (EVALON)
8123.67 In reply to 8123.66 
Hi Pilou,

& thanks for your feedback ;-) ... However, I am not sure we are thinking about the same - at least when I insert e.g. Shift+Q=Scale(1D, or 2D) into the Shortcut keys list something else than what I was intending seems to happen ..

Just to clarify: In the "properties panel" description in this link: http://moi3d.com/4.0/docs/moi_command_reference11.htm#shortcutkeys (approximately half way down the page) I would like #4, i.e. the "Edit Size" dialog to open up so that the "cursor" is immediately placed e.g. in the x-axis size dialog box. I hope this make sense ... ? BTW I use the MOI3D V3 version - maybe that makes a difference?

Cheers,

Jesper
  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
8123.68 In reply to 8123.67 
Hi Jesper, see here for a script that you can put on a shortcut key for opening up the edit size menu:
http://moi3d.com/forum/index.php?webtag=MOI&msg=10769.2

- 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:  none (EVALON)
8123.69 In reply to 8123.68 
Hi Michael,

& thanks for your prompt & helpful reply ;-)

However, when I try your script I get an error message saying that " Typeerror: Result of expression 'moi.ui.findElement' [undefined] is not a function. " ... I have attached a screendump of what the moi.ini looks like an the error message. Maybe I need to change something somewhere to make it work ... ?

Cheers, Jesper
Image Attachments:
Size: 358.7 KB, Downloaded: 30 times, Dimensions: 2560x1440px
  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
8123.70 In reply to 8123.69 
Hi Jesper,

re:
> However, when I try your script I get an error message saying that " Typeerror: Result
> of expression 'moi.ui.findElement' [undefined] is not a function. "

The script uses some infrastructure that was added in MoI version 4, but you're using MoI version 3, so that's the problem.

Try this instead, it should work ok in v3:

script: /* Show edit size menu */ moi.ui.showMenu( 'EditSizeMenu.htm', moi.ui.sidePane.PropSizeContainer, 0, 0 );

- 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:  none (EVALON)
8123.71 
Hi Michael,

Thanks again for helping out with this - I have copied the script to my .ini list and it works fine! ... Much appreciated ;-)

Jesper
  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:  pafurijaz
8123.72 
This topic saved my life..
Now I works too fast, thanks to all!
  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

 

 
 
Show messages:  1-20  21-40  41-60  61-72