Is there a way to hotkey between Input Methods?

Dear all,
My macbook air has a JIS/Japanese keyboard.  I use two IMEs which translate to “Select Word” (I’ll call it ‘Japanese IME’) and “Chinese Word-Complex Characters” (I’ll call it ‘Chinese IME’).
The Japanese IME uses hotkeys such as “ctrl+shift+k” and“ctrl+shift+j” to switch between Japanese writing styles. 
For the Chinese IME, I only use one method, chongkit, its hotkey is “ctrl+shift+c”.
While using the Japanese IME, “ctrl+shift+c” does not activate chongkit.  I have to use my mouse and click select from the options in the top right.  Likewise, while using the Chinese IME, I cannot hotkey the Japanese writing systems.
The issue is clear… the Chinese and Japanese IMEs do not interact.
It is easy for me to exit the Chinese IME.  The JIS keyboard has keyboard keys that can put me in English or Japanese.
I write English (including this posting) with the Japanese IME’s roman character option.
So, is there a way I can hotkey chongkit from the Japanese IME?
Or, is there a way I can hotkey switching between IMEs?
Note, this is not an issue specifically about Japanese and Chinese IMEs, this is an issue with IMEs in general.
Thank you

The option that you referenced only cycles between your two most recently used input styles.  It does not change the IME, unless one of the recent ones was coincidently from another IME.  If the combination is pressed shortly after starting the system, then it only cycles through English and a Japanese phonetic system.  Anyway, this is not what I need.
If command is held and then space bar is pressed, a box appears that permits me to cycle through all styles, I can eventually get to chongkit.  Also, alt+command+space cycles through all the options without the box.  It is better than the mouse, but I would rather cycles the IMEs.
The goal is to go immediately from the Japanese IME to the Chinese IME, not cycle around styles within one IME.

Similar Messages

  • Is there a way to switch between workspaces in Spaces from the command line?  I want to write a script to set up certain applications in certain workspaces (without having to do it manually each time)...

    Is there a way to switch between workspaces in Spaces from the comnand line?  I use several workspaces from Spaces, each workspace having a certain number of fixed applications running.  Rather than set all this up each time I log on, I'd like to write a script from the command line (I use gawk) to automate this. Currently I have a gawk script that, given a directory, opens a few xterms whose working directory is the given directory, and opens "preview" applied to a certain file in that directory.  However, at present I have to manually move an xterm through each workspace and run my gawk script in each workspace (applied to each directory that I'm working on).
    There must be a better way...

    Addendum: Can this be done via:   open -a Spaces --args xxx  , where xxx is some set of arguments (or something like this)?

  • Is there a way to toggle between open sequences? Keyboard Shortcut?

    So I usually work form one sequence of selects, and then take pieces of those selects on the source monitor side and edit them into the edit sequence on the program monitor side.
    1. Is there a way to toggle between the two?
    2. Is there a way to toggle between sequences that are open?
    Although it is really nice now you can load sequences into the source monitor it would be nice to toggle to that sequence to actaully see the clips in the source monitor sequence, not just have the visuals.
    On a basic level I'd like to know if there is a way to toggle between open sequences that way i can select in and outs lift and undo (which copies to clipboard) and then toggle to the second sequence i have and paste it in the correct place.

    Short answer: Yes. Try Shift+3. It's the default Shortcut for "Timelines".

  • I have question about take folders.  After recording multiple takes on a project of say 16 tracks. Is there a way to switch between takes globally?  Instead of one at a time which is tedious.  I am talking about a situation where all tracks are being

    Oops , my body got put into the title sorry.   Anyway so when doing live recording and multiple takes of all tracks is there a way to switch between takes globally instead of switching them one by one?

    You used the data.  Verizon can not see what it was sued for.  However your phone can see whats apps used the data.  go to settings-data usage- there will be a place that says data usage cycle.  line the dates up with your cycle.  then there will be a bar graph below that   extend bother white bars one all the way to the left and one all the way to the right.  after those are extended below that will be a list of apps,  there should be one that used over 2 gb and that will show you what app used that data in her purse

  • HT204380 Is there any way to "FaceTime " between 3 or 4 users at the same time?

    Is there any way to "FaceTime " between 3 or 4 users at the same time?

    No. FaceTime is one on one only.

  • I am trying to create an outline for a communication class. Is there a way for me to input Roman numerals in pages?

    I am trying to create an outline for a communication class. Is there a way for me to input Roman numerals in pages?

    Only one Bookmarks Toolbar is allowed. You can create Folders on the bookmarks toolbar (named "Sports", "News", etc.) and add or move your bookmarks to those folders.
    *https://support.mozilla.org/en-US/kb/bookmark-folders-organize-your-bookmarks
    **Above demonstrates making folders in Bookmarks Menu in the Library window, but you can do the same under Bookmarks Toolbar in the Library window..
    **You can also create a new folder in Bookmarks Toolbar by right-click on the Bookmarks Toolbar itself and choose New Folder to create a folder on the Bookmark Toolbar.
    *More Bookmarks information - https://support.mozilla.org/en-US/kb/use-bookmarks-to-save-and-organize-websites?redirectlocale=en-US&redirectslug=how-do-i-use-bookmarks
    Other-
    *update Java to 1.6.0_35 or 1.7.0_7 for security issues
    **https://support.mozilla.org/en-US/kb/use-java-plugin-to-view-interactive-content
    *update Shockwave Flash for security issues
    **https://support.mozilla.org/en-US/kb/install-flash-plugin-view-videos-animations-games#w_keeping-flash-up-to-date

  • Is there a way of using keyboard input?

    Is there a way of using keyboard input in Edge? For example when you press the space-bar it will open a url. This is probaly done though programing.

    Shift/Command and Alt/Control have there own separate event routines.
    Example
    e.metaKey         // depends on browser and targets the Apple key
    e.ctrlKey             // targets the Control or Ctrl key
    e.altKey              // targets the Alt key
    e.shiftKey           // targets the Shift key
    So if you only wanted the event to fire when the Shift key is pressed, then
    if (e.shiftKey){                                              //If Shift key is pressed 
           window.open("http://www.adobe.com", "_blank");
    If you wanted to combine the Shift key + Space Bar to trigger the event, then resort to logical operators. In this case you want to 'combine' key strokes, then the logical operator would be a double &&, and demonstrated below.
    if (e.shiftKey && e.which == 32){                     //If Shift Key + Space Bar pressed
          window.open("http://www.adobe.com", "_blank");
    If you wanted to combine the Shift key + some other keyboard Character Code from the above noted list (http://rmhh.co.uk/ascii.html), then change the value of e.which to equal (==) that Character Code. Example from the list, the Character Code for the keyboard 'a' is 65, as altered below.
    if (e.shiftKey && e.which == 65){                     //If Shift Key + A pressed
    window.open("http://www.adobe.com", "_blank");
    To get an accuarte keycode value, there are two demonstrations on this page http://api.jquery.com/event.which/, whereby you can type in thee field and it will capture the value for you.
    Good luck
    Darrell

  • Is there any way to switch between using two different phones?

    I know when phones have SIM cards (like with ATT), you can use two different phones by simply moving the SIM card from one phone to the other and ATT is none the wiser.
    Is there any way to do that sort of thing with Verizon?
    I currently have an iPhone 5 but would like to start playing around with Android (I'm a gadget nut).  So, assuming I find an unlocked Android phone, is there any way to bounce back and forth between using different phones (obviously only one at a time)?

    Michael_F wrote:
    So, the SIM card contains all the info necessary for the new phone to ring when called, etc?
    yes, assuming the phones use the same size SIM card (otherwise, you'll need an adapter or a new SIM card; the cards are free at your local Corporate Verizon store).
    4G SIM Information | Verizon Wireless

  • Is there any way to toggle between languages in 10.5.8?

    I write emails in Japanese {Hiragana and Kanji) a lot but I need to frequently transfer between English and Japanese for that.
    On an older OSX version there used to be a way to toggle between selected languages using the space bar and another key (I think it was the Apple key) but that doesn't work in 10.5.8.
    Is there another way to toggle selected languages in 10.5.8?

    Someone (called rick) made a video tip on this.
    http://www.tiptrickmod.com/mac/how-to-switch-between-languages/

  • Is there any way to compare between last two activation of a Transformation

    Hi,
    I have activated a transformation 2 days back. Later on I found that the same transformation has been activated by someone else. I knew that from the transport organizer. I want to know what changes has been done after my activation. I have gone through each and every step i.e start routine or field routine everything. Didn't find any commenting also. Is there any way  to compare the version between last two activation of that transformation or any BW Object.
    Any version management option is available or not.
    Thanks in advance
    Snehasish

    You can get the information who had changed and at wht time from the properties of the Transformations
    Menu --> Transformation -> properties --> you can get who had changed n time...
    if you want to compare the versions .... you can follow the below steps...
    From the menu bar of transformations -->Extras --> display generated program --> utilities --> versions --> version management
    This will display the changes made... if any.
    if there are no changes it will display only one...version.

  • Is there any way to differentiate between R12 gl records and 11I?

    Hello all,
    is there any way we can tell if a record is r12 or 11I aside from basing this on when we upgraded? We run reports that use reference_XX data from the g_je_lines table. The references have changed for R12 so we need to get the required data 2 different ways.
    Thanks.

    You can use je_header_id.
    Since it is sequential, you can say je_header_id >= x is R12.

  • OIM11g: Is there a way to find out what method is used to create user

    Hello,
    I have a user pre-create event handler that gets called every time a user is created in OIM. In here, is there any way to find out if the user is created by self-service request, admin, or by an external client that used UserManager API? How can the Orchestration parameter be used to get this information?
    Thanks

    Once you have closed the file, the history in the palette is gone.

  • Is there any way to access an overridden method of super class?

    class Animals
         void makeNoice(){System.out.println("General noice");}
    class Dog extends Animals
              void makeNoice(){System.out.println("bark");}
    };Is there any way to access the makeNoice() of Animals class from a Dog object
    Dog dog = new Dog();
    Animal animaldog = dog;
    animaldog.makeNoice(); // will always calls Dog's makeNoice() ie the overriden method.
    Is there a way to access the Animals makeNoice() method ? by using cast or super etc?
    Or it is not possible at all?

    Rajeebs wrote:
    Now another question coming in my mind.
    Whether any way to access a method which belong to super class's super class without using any method of class B,
    like super.super.fn() ??Isn't this just the same question again? And won't you again just "solve" it by writing some invokeSuperSuperMethod or other? This flawed design is quickly getting out of hand, isn't it? The question isn't "How can I invoke an arbitrarily deep superclass' method?" but more "Why do I need to invoke a method belonging to a concrete type at all?". If you need to do that, chances are you've misused inheritance.
    To use your initial sample code, in what circumstance would you require that a Dog make anything other than a Dog noise? It makes no sense. Point is, you have an Animal abstraction, and can call makeNoise on any instance of any subclass, and it will make the appropriate noise. By trying to use trickery to force other noises, you're doing something unnatural, and you're also depending on actual specific concrete subclasses. If you're going to go to specific classes and ask them to make their noise, what use is the inheritance? What use it the polymorphism?
    Are we heading into another "I've got a brilliant idea for a [useless language feature|http://forums.sun.com/thread.jspa?threadID=5423706&messageID=10905772#10905772], guys!" thread?

  • I setup messaging on my verizon, however I have multiple lines on the account and it is showing messaging only for one phone line. Is there a way to toggle between multiple lines on the myverizon site?

    How do I toggle between multiple phone lines while on the myverizon website in regards to messaging?

    The Account Owner can see the call/text logs for all lines on the account, but each line needs its own My Verizon account for messaging and backups.  Those lines will be listed as Account Members and will have limited info. available to them regarding the account.

  • HT2513 Is there any way to sync between laptop, desktop, iPhone and iPad without using the iCloud?

    I want to sync my iCal between all my Apple products but this doesn't seem to be possible?
    It all used to sync with MobileMe, but I didn't upgrade, so it stopped syncing.
    If I use a 3-rd party calendar, say Google Calendars, in my iCal would that work?
    From what I can tell, I can sync from one machine to my iPhone via iTunes, but that's all...
    Thanks, Heather

    Because apps on iOS devices are isolated from one another ("sandboxed") such an app would not be possible.
    I recommend "SelfControl". It takes a little while to learn to use but it works on any platform.

Maybe you are looking for

  • I need to divide a large 111MB PDF

    I need to divide a large 111MB PDF into several smaller more manageable pieces. I have CS5 but it won't open it. I just bought PDF Extractor so I could convert it to a Microsoft Word File and edit from there. Message says, file too big, over 100MB. H

  • New IPod Touch will not show up on iTunes

    Hello, I just purchased an iPod Touch for my son. When we turned it on, it asked to connect to iTunes. I then started iTunes and was told to update it, which I did, after which I connected the IPod. iTunes would not recognize the iPod Touch. We then

  • Search function in the Adobe Viewer

    Hey there, i have the follow problems with de Adobe digital Publishing suite. Our company will present our costumers a catalog with the digital publishing suite for free. But we have so many questions about the FOLIO and the Adobe viewer and we need

  • Order prints while in view mode?

    Is there a way to order prints while in the view mode while the picture is nice and big, rather than having to select all pictures from an event when they are much smaller?

  • How do I get refunded for songs not downloaded?

    I was downloading a song, my gift card was debited 1.29 but the song never downloaded. Money gone, no song help.