Show messages: All
1
2-3
From: Michael Gibson
Hi Zooen,
re:
> Would it be possible for you to create a script that would let me switch between
> English and French using a keyboard shortcut?
Try putting this for the "Command" part of the keyboard shortcut:
script: /* Toggle language between English/French */ if ( moi.ui.language != 'English' ) { moi.ui.language = 'English'; } else { moi.ui.language = 'French'; }
- Michael
From: Zooen
Thank you so much, Michael !
Show messages: All
1
2-3