As a Mac user who always has a Terminal window open (because a UNIX shell is such a powerful working environment) I find it helpful to define a command alias to launch MoI. One common use is when I want to have multiple instances of MoI running so that I can quickly switch back & forth between models.
To enable this, add an alias to your shell's profile (either ~/.bash_profile or ~/.zprofile depending on which shell you're using):
code: alias moi='open -b com.moi3d.MoI'
With the alias defined, typing "moi <filename>" at the shell prompt launches a new instance of MoI to open the given file. Note that using the -b bundle_identifier option rather than -a application uses the most recently installed version of MoI. If the application name was used the alias would need to be updated for each new beta...
--Larry
|