All Languages with "Input Method" Other Than "Keyboard" Inaccessible

Sometime earlier today, I lost the ability to type in both Simplified and Traditional Chinese (and in Tamil, Korean and Japanese, essentially those listed to have their input methods as "Input Method" under the "International" pane in "System Preferences"). I have no idea what happened, as I didn't install any updates or do anything with my Mac. I had left it alone for a couple of hours as I went to do some other stuff; before that, I had been able to type in the said languages without problem.
I've tried a lot of things. Googling gave some solutions such as creating a new user account and copying its com.apple.systempreferences.plist from /Users/Library/Preferences (the said languages also work fine in the new user account). Tried that; no luck. I've fiddled around with the preferences under the "International" pane so much that I think I can memorise them by heart, and yet nothing has worked. The languages just don't show up on the language/input bar. All other languages that are listed to have input method as "keyboard" under the "International" pane are fine.
Any ideas what might have gone wrong? Help is much appreciated.

Hi Tom,
Thanks for the prompt reply! I've just tried that, but unfortunately it doesn't work. I got rid of all the com.apple.---.plist in the folder and rebooted; didn't work. I even copied all the .plist from the new user account to the old user account, but that didn't work either. I'm beginning to wonder whether or not it's some other problem somewhere in the machine that I'm overlooking.
Thanks.

Similar Messages

  • Bpel deployment fails for all processes that have revision other than 1.0.

    Using: Release *10.1.3.3.1*
    Hello All,
    Bpel deployment fails for all processes that have revision other than *1.0*.
    We have been attempting to deploy several BPEL projects via ANT script to a target environment and are encountering failures to deploy for every project which isn’t a (revision 1.0). We are getting the following error whenever we try to deploy a process with a revision other than 1.0:
    D:\TJ_AutoDeploy\BPEL_AutoDeploy_BETA\build.xml:65: BPEL archive doesnt exist in directory "{0}"
         at com.collaxa.cube.ant.taskdefs.DeployRemote.getJarFile(DeployRemote.java:254)
         at com.collaxa.cube.ant.taskdefs.DeployRemote.deployProcess(DeployRemote.java:409)
         at com.collaxa.cube.ant.taskdefs.DeployRemote.execute(DeployRemote.java:211)
         at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
         at org.apache.tools.ant.Task.perform(Task.java:364)
         at org.apache.tools.ant.Target.execute(Target.java:341)
         at org.apache.tools.ant.Target.performTasks(Target.java:369)
         at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
         at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
         at org.apache.tools.ant.Main.runBuild(Main.java:668)
         at org.apache.tools.ant.Main.startAnt(Main.java:187)
         at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
         at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)
    The structure of our automated deployment script is as follows:
    First, a batch script calls (Jdeveloper_BPEL_Prompt.bat) in order to set all necessary environment variables i.e. ORACLE_HOME, BPEL_HOME, ANT_HOME, etc for ant.
    Next, the script lists every .jar file within the directory to an .ini file called BPEL_List.ini. Furthermore, BPEL_DIR, ADMIN_USER and ADMIN_PSWD variables are set and initialized respectively to:
    -     “.” – point to directory where script is running from because all the BPEL processes are located here
    -     “oc4jadmin”
    -     “*********” (whatever the password for out environment is)
    We’ve developed a method to have the script prompt the user to select the target environment to deploy to. Once the user selects the appropriate environment, the script goes through the BPEL_List.ini files and a loop tells it that for every BPEL process listed:
    DO ant
    -Dprocess.name=%%b
    -Drev= !Rev!
    -Dpath=%BPEL_DIR%
    -Ddomain=default
    -Dadmin.user=%ADMIN_USER%
    -Dadmin.password=%ADMIN_PWD%
    -Dhttp.hostname=%HOST%
    -Dhttp.port=%PORT%
    -Dverbose=true
    (What’s happening is that the variables in the batch file are being passed on to the ANT script where *%%b* is the process name, !rev! is revision #, and so on…)
    The loop goes through each line in the BPEL_List.ini and tokenizes the BPEL process into 3 parts *(%%a, %%b, and %%c)* but we only extract 2 parts: *%%b* (process name) and *%%c* which becomes !Rev! (revision number).
    Example:
    Sample BPEL process:
    bpel_ThisIsProcess1_1.0.jar
    bpel_ThisIsProcess2_SOAv2.19.0.001B.jar
    After tokenizing:
    %%a     %%b     %%c
    bpel     ThisIsProcess1     1.0.jar
    bpel     ThisIsProcess2     SOAv2.19.0.001B.jar
    *!Rev!* and not *%%c* because *%%c* will return whatever the revision number is + the “.jar” file extension as illustrated above. So to circumvent this, we parse *%%c* so that the last 4 characters are stripped. Such is done like this:
    set RevN=%%c
    set RevN=!RevN:~0,-4!
    Hence, the usage of !Rev!.
    Below is a screenshot post of the ANT build.xml that goes with our script:
    <!--<?xml version="1.0"?>-->
    <!--BUILD.XML-->
    <project name="bpel.deploy" default="deployProcess" basedir=".">
         <!--
         This ant build file was generated by JDev to deploy the BPEL process.
         DONOT EDIT THIS JDEV GENERATED FILE. Any customization should be done
         in default target in user created pre-build.xml or post-build.xml
         -->
         <property name="process.dir" value="${basedir}" />
              <!-- Set BPEL process name -->
              <!--
              <xmlproperty file="${process.dir}/bpel/bpel.xml"/>
              <property name="process.name" value="${BPELSuitcase.BPELProcess(id)}"/>
              <property name="rev" value="${BPELSuitcase(rev)}"/>
              -->
         <property environment="env"/>
         <!-- Set bpel.home from developer prompt's environment variable BPEL_HOME -->
              <condition property="bpel.home" value="${env.BPEL_HOME}">
                   <available file="${env.BPEL_HOME}/utilities/ant-orabpel.xml" />
              </condition>
         <!-- show that both bpel and oracle.home are located (TESTING purposes ONLY) -->
         <!-- <echo>HERE:${env.BPEL_HOME} ${env.ORACLE_HOME}</echo> -->
         <!-- END TESTING -->
         <!--If bpel.home is not yet using env.BPEL_HOME, set it for JDev -->
         <property name="oracle.home" value="${env.ORACLE_HOME}" />
         <property name="bpel.home" value="${oracle.home}/bpel" />
         <!--First override from build.properties in process.dir, if available-->
         <property file="${process.dir}/build.properties"/>
         <!--import custom ant tasks for the BPEL PM-->
         <import file="${bpel.home}/utilities/ant-orabpel.xml" />
         <!--Use deployment related default properties-->
         <property file="${bpel.home}/utilities/ant-orabpel.properties" />
         <!-- *************************************************************************************** -->
         <target name="deployProcess">
              <tstamp>
                   <format property="timestamp" pattern="MM-dd-yyyy HH:mm:ss" />
              </tstamp>
              <!-- WRITE TO LOG FILE #tjas -->
              <record name="build_verbose.log" loglevel="verbose" append="true" />
              <record name="build_debug.log" loglevel="debug" append="true" />
              <echo></echo>
              <echo>####################################################################</echo>
              <echo>BPEL_AutoDeploy initiated @ ${timestamp}</echo>
              <echo>--------------------------------------------------------------------</echo>
              <echo>Deploying ${process.name} on ${http.hostname} port ${http.port} </echo>
              <echo>--------------------------------------------------------------------</echo>
              <deployProcess
                   user="${admin.user}"
                   password="${admin.password}"
                   domain="${domain}"
                   process="${process.name}"
                   rev="${rev}"
                   dir="${process.dir}/${path}"
                   hostname="${http.hostname}"
                   httpport="${http.port}"
                   verbose="${verbose}" />
              <sleep seconds="30" />
              <!--<echo message="${process.name} deployment logged to ${build_verbose.log}"/>
              <echo message="${process.name} deployment logged to ${build.log}"/> -->
         </target>
         <!-- *************************************************************************************** -->
    </project>
    SUMMARY OF ISSUE AT HAND:
    ~ Every bpel process w/ 1.0 revision deploys with no problems
    ~ At first I would get an invalid character error most likely due to the “!” preceding “Rev”, but then I decided to set rev=”false” in the build.xml file. That didn’t work quite well. In another attempt, I decided to leave the –Drev= attribute within the batch script blank. That still led to 1.0s going through. My next thought was deploying something other than a 1.0, such as 1.2 or 2.0 and that’s when I realized that if it wasn’t a 1.0, it refused to go through.
    QUESTIONS:
    1.     IS THERE A WAY TO HAVE ANT LOOK INTO THE BPEL PROCESS AND PULL THE REVISION ID?
    2.     WHAT ARE WE DOING WRONG? ARE WE MISSING ANYTHING?
    3.     DID WE GO TOO FAR? MEANING, IS THERE A MUCH EASIER WAY WE OVERLOOKED/FORGOT/OR DON’T KNOW ABOUT THAT EXISTS?
    Edited by: 793292 on Jul 28, 2011 12:38 PM

    Only thing i can think of is instead of using a MAC ACL , u cud jus use the default class
    Policy Map Test
    class class-default
    police 56000 8000 exceed-action drop
    Class Map match-any class-default (id 0)
    Match any
    You would be saving a MAC-ACL ;-).

  • IPhoto frustrating error..The volume for "Df23.JPG" cannot be found. It prompts for all photos with this issue rather than offering an option to ignore. I can find the images in spotlight but not in Find Photo. Does anyone have a solution

    iPhoto frustrating error..The volume for "Df23.JPG" cannot be found. It prompts for all photos with this issue rather than offering an option to ignore. I can find the images in spotlight but not in Find Photo. Does anyone have a solution?

    Unless you have the source files that were on the TC or Windows machine you will have to start over with a new library as follows:
    Start over from scratch with new library
    Start over with a new library and import the Originals (iPhoto 09 and earlier) or the Masters (iPhoto 11) folder from your original library as follows:
    1.  Move the existing library folder to the desktop.
    2. Open the library package like this.
    Click to view full size
    3. Launch iPhoto and, when asked, select the option to create a new library.
    4. Drag the Masters (iPhoto 11) folder from the iPhoto Library on the desktop into the open iPhoto window.
    Click to view full size
    This will create a new library with the same Events as the original library but will not keep the metadata, albums, books slideshows and other projects.  Your original library will remain intact for further attempts at fixes is so desired.
    OT

  • Cannot perform rounding for invoices with a currency other than the documen

    Hi all,
    I need some one to help me
    I want to process the incoming payment.
    The AR Invoice is using USD
    In Incoming Payment i want to pay using SGD,
    I already set the BP in all currency
    I also set the Bank account in Bank transfer payment mean in all currency.
    But when i add the document i saw the message like this
    "Cannot perform rounding for invoices with a currency other than the document currency.  [Message 3524-31]"
    What should i do ?
    Thanks in advance
    Regards
    KK

    Hi gordon,
    Thanks for your respon.
    I still do not understand, what you mean.
    I test it in SBO DEMO Au which is the local currency is AUD and the system currency is also AUD.
    Is the any special setting for this issue?
    Or Do i miss the settings in SBO
    My version is 8.81 pl 9
    Thanks in advance

  • How do I sync my Itunes with a device other than I Pod or I Phone ?

    Does anyone know how to sync ITUNES with a devise other than an I POD or I PHONE ?

    iTunes is designed to only sync Apple devices.
    However, you can use the same songs in your iTunes library and copy them to other devices, especially if they are in MP3 format.  Just follw the directions that came with your player.

  • Is there any other method other than se78 to upload a graphic into SAP R/3?

    Hi,
      Is there any other method other than se78 to upload a graphic into SAP R/3?
    Anita Jeyan

    hi ,
    just use  OAER or RSTXLDMC program
    it will definately help you
    regards
    rahul

  • Integrate Employe with internal order other than cost center

    Dear Experts,
    Integrate Employe with internal order other than cost center
    Thanks & Regards,
    Mythili
    Edited by: Mythili.R on Jan 10, 2012 1:45 PM
    Edited by: Sikindar on Jan 10, 2012 6:23 PM

    Can use IT0027 at employee level or IT1018 at OM level

  • Drawing with an effect other than Alpha Transparency and XOR

    Hello,
    I'm looking for a way to draw images (Or anything else for that matter) with simple effects other than the Alpha and XOR effects, such as Multiply, Subtract and Bitwise AND. I've realized it has something to do with the setComposite function, but I haven't figured out how to get further from there, and the documentation didn't seem very clear. This is my first time using Java fro anything graphical; most of my projects are done in PHP and C++.
    Could anyone help me with this, perhaps with an example?
    Thank you very much!

    I'm using Graphics2D. I have one big BufferedImage and other smaller once which I use as sprites. I'm rendering the sprites to the big buffer using drawImage. I need an efficient way to render some of the sprites with an ink effect such as subtract. I know it's possible to do it with a XOR effect by placing setXORMode(c1) before the drawImage function.

  • Finder Methods other than by Primary key

    How should the Finder methods other than by Primary
    key in Container MB be implemented? In Bean class?
    I did some search in archives to no avail.
    Thanks!!
    Sriram

    I think it might be different on different app servers, at least until EJB 2.0 is implemented everywhere. I found a bit of info on the matter:
    http://www.jboss.org/documentation/HTML/ch06s07.html

  • How do I number pages consecutively starting with a number other than 1?

    In Pages, how do I number pages consecutively starting with a number other than 1?

    Inspector > Document > Section > Page Numbering:     click on the dropdown menu

  • HDV Workflow -- What's wrong with this picture (other than some obvious)

    Hi Powerusers,
    I have a client with a canon XH-A1, they are ingesting via iMovie HD, cutting a rough timeline in iMovie, and then porting to FCP (via drag and drop) for me to finish on. Seems plausible all editing via AIC (apple intermediate codec). Final destination will be SD DVD, WEB, Handheld media, etc. Am I missing something or is this somewhat acceptable (other than loss of timecode) which they aren't concerned about since it's pretty lo-budget.
    Is editing using the AIC horrible (picture looks acceptable). I'm not used to this workflow. I work in DV, SD or DVCPROHD codecs/timelines but am baffled by not being able to ingest directly from Final Cut with this Canon HDV camera, but iMovie has that flexibility (view, start, stop, import) whereas I'm not getting any options other than capture now with FCP.
    Thoughts, criticisms, advice greatly appreciated.
    cheers

    I ended up capturing via FCP using HDV1080i60 easy setup with capture setting working with both Sony HDV over firewire and HDV Firewire Basic.
    Seems like all is working well using this setup. It's far more than the client needs as we'll be downconverting the timeline to SD once complete, but good enough now for edit. HDV is not fun to work with I'll tell ya. Still having some errors with log and capture.

  • "Choose input method" is behind keyboard so I can't use it

    I just upgraded to Kit Kat on my Galaxy S4, and I can no longer pick my preferred keyboard because the "choose input method" dialog does not close the keyboard when it opens like it used to, and so half of the dialog is hidden behind the keyboard.  Normally I would hit the back button to close the keyboard, except this closes the input selector dialog instead.  How do I change my active keyboard?

    OK, I can change the default keyboard from the settings panel, but that means I have to go into settings every time I need to change it (and I often switch back and forth between a few of them depending on what app I'm using because some keyboards are better suited for different tasks).  So the question then becomes is Verizon aware of this problem and how do I make sure they are so it gets fixed in the next update? (and how long before that update?)

  • How to connect to database with a schema other than current user?

    Dear all,
    I would like to know whether it is possible to specify a specific schema while connecting to a database directly by SQL*Plus command. Usually here is what I do (assuming that db01.WORLD is already in tnsnames.ora)
    $ sqlplus scott/[email protected], in this case the user is SCOTT and the current schema is also SCOTT. If I want to change the current schema I have to use an ALTER SESSION SET CURRENT_SCHEMA command. So what I would like to know is that whether there is an alternative, that is, proceeding in a way where the user SCOTT connects directly (by using SQL*Plus shell) to a SCHEMA other than SCOTT (in other words, is it possible to specify the desired schema at the connection time, for example user SCOTT who connects under a schema named 'management')
    Thanks in advance,
    Dariyoosh

    The ordinary way to do this is to
    1 - grant object privileges from the other schema to scott (Refer to the GRANT command in the online documentation)
    2 - create a private synonym in the Scott user (Look up CREATE SYNONYM in the documentation)
    The only other solution would be to make sure to create an after login trigger running the alter session command.
    Finally two words of advise
    1 You are recommended to leave the user Scott alone, and not mess it up with your own additions.
    2 You seem to treat this forum as a free Oracle class. As the people responding here are volunteers you are kindly advised to stop doing that and use the online documentation at http://tahiti.oracle.com and read at least the 'Getting Started' document and/or the '2-Day' document for your unknown version of Oracle.
    Sybrand Bakker
    Senior Oracle DBA

  • Doesn't work with a servlet other than ActionServlet

    Hi,
    We are doing portlet struts development which uses an extended version of the struts ActionServlet. It appears that if the web.xml defines a servlet class other than "org.apache.struts.action.ActionServlet" then the AppRay fails to find the struts configuration file - Struts Configuration is coloured red in the AppXplorer view.
    e.g.
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    is fine but
    <servlet-class>com.ibm.wps.portlets.struts.WpsStrutsPortlet</servlet-class>
    is not, even though the class is on the classpath.
    Thanks.

    Hi,
    Please follow this workaround to identify struts configuration.
    Modify web.xml to include a servlet entry for org.apache.struts.action.ActionServlet with "config" definition in addition to your custom servlet
    NOTE: The existence of "temp" servlet does not affect any runtime behavior.
    Ex:
    <servlet>
    <servlet-name>temp</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
    <param-name>config</param-name>
    <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    </servlet>
    Thanks
    M7 Support

  • Error creating dynamic page in an application with a schema other than portal30

    Running 9iAS 1.0.2.2 on Solaris.
    Database 8.1.7.1
    I cannot seem to create a default dynamic page (select 'x' from dual) in an application that has a schema (e.g. test) other
    than portal30. The error seems to be when portal tries to compile the dynamic-page package, it references itself from
    within the package but prefixing the call with the other (test) schema. It never seems to compile? What seems to be the
    problem? Any ideas?

    If you are using any database object other than the applcation owned,then it has to be prefixed with the schema owner.
    For example,
    if the application schema is based on the schema "schema1" (say)
    and your query is based on one of the object on "schema2"
    and if you have necessary privilegves to access that object from schema2, then the compiler wont throw any error.
    Can u explain, what u problem you are experiencing in detail?
    (Also, if u give me the portal version, I can cross-verify that).

Maybe you are looking for

  • I want to use my original iphone as an ipod touch but it does not see any wifi

    For a long time, my iphone would see my home network intermittently, but it would always drop the signal. I have been searching the web to try to find a way to resolve this issue. Recently the wifi connectivity seems to have gone completely out. I ju

  • Error pops up during instillation Mobile TV Nokia ...

    Hi, I have a problem I bought the SU-33W receiver into Mobile TV DVB-H. When you download from the nokia mobile tv application error pops up and download the installation again. Does anyone know the answer to my problem. Solved! Go to Solution.

  • How to create user in local datasource when UME is already switched to LDAP

    HI, Info : I have portal ( NW 700),  recently i switched the datasource of portal to LDAP from local datasource. issue: if i create user in portal it get created in LDAP, i want create few users in Local datasource. how to create user in local dataso

  • Another Lake Tahoe Reception Failure

    I don't know what has happened to ZIP CODE 89451 We had visitors this past weekend each with Samsung Galaxy III and they received no signal at all. They couldn't use their phones. We have only two towers, and lots of tourist since end of June.  Our i

  • Iphone 5 doesn't load backup from iphone 4

    Yesterday I bought a new iphone 5. I have previously used an iphone 4 up to that point. Having owned many handsets in the past I went through the usual itunes 'backup' and 'restore from backup' that I have done many times before. This time however th