About the Solaris Express 4/6 - Chinese Input Method

I worked on Solaris 10 has long time, I write some articles or reports using StarOffice. In that time , the Chinese input methon has the Sun NewChuYin Input-method , I am very used to the input method. But when I upgrade the OS to Solaris Express 4/6. The input method has insteaded of iiimf. Because my work environment is zh_TW.Big5, I can't use "chewing". Now I feel difficultly in working.
I hope Sun can keep past input-methods and then add some new input methods.
Or can Sun tell me , where is the old input-methods package on Solaris 10 1/6 CD-Rom and its' name? I want to find it and override the package in Solaris Express 4/6.

We hope you can hear our requireme.
In these forums only other users like yourself will hear you. So repeat your request in the channel Apple has set up for that:
http://www.apple.com/feedback/iphone.html

Similar Messages

  • Re: [iPlanet-JATO] Re: Use Of models in utility classes - Pease don't forget about the regular expression potential

    Namburi,
    When you said you used the Reg Exp tool, did you use it only as
    preconfigured by the iMT migrate application wizard?
    Because the default configuration of the regular expression tool will only
    target the files in your ND project directories. If you wish to target
    classes outside of the normal directory scope, you have to either modify the
    "Source Directory" property OR create another instance of the regular
    expression tool. See the "Tool" menu in the iMT to create additional tool
    instances which can each be configured to target different sets of files
    using different sets of rules.
    Usually, I utilize 3 different sets of rules files on a given migration:
    spider2jato.xml
    these are the generic conversion rules (but includes the optimized rules for
    ViewBean and Model based code, i.e. these rules do not utilize the
    RequestManager since it is not needed for code running inside the ViewBean
    or Model classes)
    I run these rules against all files.
    See the file download section of this forum for periodic updates to these
    rules.
    nonProjectFileRules.xml
    these include rules that add the necessary
    RequestManager.getRequestContext(). etc prefixes to many of the common
    calls.
    I run these rules against user module and any other classes that do not are
    not ModuleServlet, ContainerView, or Model classes.
    appXRules.xml
    these rules include application specific changes that I discover while
    working on the project. A common thing here is changing import statements
    (since the migration tool moves ND project code into different jato
    packaging structure, you sometime need to adjust imports in non-project
    classes that previously imported ND project specific packages)
    So you see, you are not limited to one set of rules at all. Just be careful
    to keep track of your backups (the regexp tool provides several options in
    its Expert Properties related to back up strategies).
    ----- Original Message -----
    From: <vnamboori@y...>
    Sent: Wednesday, August 08, 2001 6:08 AM
    Subject: [iPlanet-JATO] Re: Use Of models in utility classes - Pease don't
    forget about the regular expression potential
    Thanks Matt, Mike, Todd
    This is a great input for our migration. Though we used the existing
    Regular Expression Mapping tool, we did not change this to meet our
    own needs as mentioned by Mike.
    We would certainly incorporate this to ease our migration.
    Namburi
    --- In iPlanet-JATO@y..., "Todd Fast" <toddwork@c...> wrote:
    All--
    Great response. By the way, the Regular Expression Tool uses thePerl5 RE
    syntax as implemented by Apache OROMatcher. If you're doing lotsof these
    sorts of migration changes manually, you should definitely buy theO'Reilly
    book "Mastering Regular Expressions" and generate some rules toautomate the
    conversion. Although they are definitely confusing at first,regular
    expressions are fairly easy to understand with some documentation,and are
    superbly effective at tackling this kind of migration task.
    Todd
    ----- Original Message -----
    From: "Mike Frisino" <Michael.Frisino@S...>
    Sent: Tuesday, August 07, 2001 5:20 PM
    Subject: Re: [iPlanet-JATO] Use Of models in utility classes -Pease don't
    forget about the regular expression potential
    Also, (and Matt's document may mention this)
    Please bear in mind that this statement is not totally correct:
    Since the migration tool does not do much of conversion for
    these
    utilities we have to do manually.Remember, the iMT is a SUITE of tools. There is the extractiontool, and
    the translation tool, and the regular expression tool, and severalother
    smaller tools (like the jar and compilation tools). It is correctto state
    that the extraction and translation tools only significantlyconvert the
    primary ND project objects (the pages, the data objects, and theproject
    classes). The extraction and translation tools do minimumtranslation of the
    User Module objects (i.e. they repackage the user module classes inthe new
    jato module packages). It is correct that for all other utilityclasses
    which are not formally part of the ND project, the extraction and
    translation tools do not perform any migration.
    However, the regular expression tool can "migrate" any arbitrary
    file
    (utility classes etc) to the degree that the regular expressionrules
    correlate to the code present in the arbitrary file. So first andforemost,
    if you have alot of spider code in your non-project classes youshould
    consider using the regular expression tool and if warranted adding
    additional rules to reduce the amount of manual adjustments thatneed to be
    made. I can stress this enough. We can even help you write theregular
    expression rules if you simply identify the code pattern you wish to
    convert. Just because there is not already a regular expressionrule to
    match your need does not mean it can't be written. We have notnearly
    exhausted the possibilities.
    For example if you say, we need to convert
    CSpider.getDataObject("X");
    To
    RequestManager.getRequestContext().getModelManager().getModel(XModel.class);
    Maybe we or somebody else in the list can help write that regularexpression if it has not already been written. For instance in thelast
    updated spider2jato.xml file there is already aCSpider.getCommonPage("X")
    rule:
    <!--getPage to getViewBean-->
    <mapping-rule>
    <mapping-rule-primarymatch>
    <![CDATA[CSpider[.\s]*getPage[\s]*\(\"([^"]*)\"]]>
    </mapping-rule-primarymatch>
    <mapping-rule-replacement>
    <mapping-rule-match>
    <![CDATA[CSpider[.\s]*getPage[\s]*\(\"([^"]*)\"]]>
    </mapping-rule-match>
    <mapping-rule-substitute>
    <![CDATA[getViewBean($1ViewBean.class]]>
    </mapping-rule-substitute>
    </mapping-rule-replacement>
    </mapping-rule>
    Following this example a getDataObject to getModel would look
    like this:
    <mapping-rule>
    <mapping-rule-primarymatch>
    <![CDATA[CSpider[.\s]*getDataObject[\s]*\(\"([^"]*)\"]]>
    </mapping-rule-primarymatch>
    <mapping-rule-replacement>
    <mapping-rule-match>
    <![CDATA[CSpider[.\s]*getDataObject[\s]*\(\"([^"]*)\"]]>
    </mapping-rule-match>
    <mapping-rule-substitute>
    <![CDATA[getModel($1Model.class]]>
    </mapping-rule-substitute>
    </mapping-rule-replacement>
    </mapping-rule>
    In fact, one migration developer already wrote that rule andsubmitted it
    for inclusion in the basic set. I will post another upgrade to thebasic
    regular expression rule set, look for a "file uploaded" posting.Also,
    please consider contributing any additional generic rules that youhave
    written for inclusion in the basic set.
    Please not, that in some cases (Utility classes in particular)
    the rule
    application may be more effective as TWO sequention rules ratherthan one
    monolithic rule. Again using the example above, it will convert
    CSpider.getDataObject("Foo");
    To
    getModel(FooModel.class);
    Now that is the most effective conversion for that code if that
    code is in
    a page or data object class file. But if that code is in a Utilityclass you
    really want:
    >
    RequestManager.getRequestContext().getModelManager().getModel(FooModel.class
    So to go from
    getModel(FooModel.class);
    To
    RequestManager.getRequestContext().getModelManager().getModel(FooModel.class
    You would apply a second rule AND you would ONLY run this rule
    against
    your utility classes so that you would not otherwise affect yourViewBean
    and Model classes which are completely fine with the simplegetModel call.
    <mapping-rule>
    <mapping-rule-primarymatch>
    <![CDATA[getModel\(]]>
    </mapping-rule-primarymatch>
    <mapping-rule-replacement>
    <mapping-rule-match>
    <![CDATA[getModel\(]]>
    </mapping-rule-match>
    <mapping-rule-substitute>
    <![CDATA[RequestManager.getRequestContext().getModelManager().getModel(]]>
    </mapping-rule-substitute>
    </mapping-rule-replacement>
    </mapping-rule>
    A similer rule can be applied to getSession and other CSpider APIcalls.
    For instance here is the rule for converting getSession calls toleverage
    the RequestManager.
    <mapping-rule>
    <mapping-rule-primarymatch>
    <![CDATA[getSession\(\)\.]]>
    </mapping-rule-primarymatch>
    <mapping-rule-replacement>
    <mapping-rule-match>
    <![CDATA[getSession\(\)\.]]>
    </mapping-rule-match>
    <mapping-rule-substitute>
    <![CDATA[RequestManager.getSession().]]>
    </mapping-rule-substitute>
    </mapping-rule-replacement>
    </mapping-rule>
    ----- Original Message -----
    From: "Matthew Stevens" <matthew.stevens@e...>
    Sent: Tuesday, August 07, 2001 12:56 PM
    Subject: RE: [iPlanet-JATO] Use Of models in utility classes
    Namburi,
    I will post a document to the group site this evening which has
    the
    details
    on various tactics of migrating these type of utilities.
    Essentially,
    you
    either need to convert these utilities to Models themselves or
    keep the
    utilities as is and simply use the
    RequestManager.getRequestContext.getModelManager().getModel()
    to statically access Models.
    For CSpSelect.executeImmediate() I have an example of customhelper
    method
    as a replacement whicch uses JDBC results instead of
    CSpDBResult.
    matt
    -----Original Message-----
    From: vnamboori@y... [mailto:<a href="/group/SunONE-JATO/post?protectID=081071113213093190112061186248100208071048">vnamboori@y...</a>]
    Sent: Tuesday, August 07, 2001 3:24 PM
    Subject: [iPlanet-JATO] Use Of models in utility classes
    Hi All,
    In the present ND project we have lots of utility classes.
    These
    classes in diffrent directory. Not part of nd pages.
    In these classes we access the dataobjects and do themanipulations.
    So we access dataobjects directly like
    CSpider.getDataObject("do....");
    and then execute it.
    Since the migration tool does not do much of conversion forthese
    utilities we have to do manually.
    My question is Can we access the the models in the postmigration
    sameway or do we need requestContext?
    We have lots of utility classes which are DataObjectintensive. Can
    someone suggest a better way to migrate this kind of code.
    Thanks
    Namburi
    [email protected]
    [email protected]
    [Non-text portions of this message have been removed]
    [email protected]
    [email protected]

    Namburi,
    When you said you used the Reg Exp tool, did you use it only as
    preconfigured by the iMT migrate application wizard?
    Because the default configuration of the regular expression tool will only
    target the files in your ND project directories. If you wish to target
    classes outside of the normal directory scope, you have to either modify the
    "Source Directory" property OR create another instance of the regular
    expression tool. See the "Tool" menu in the iMT to create additional tool
    instances which can each be configured to target different sets of files
    using different sets of rules.
    Usually, I utilize 3 different sets of rules files on a given migration:
    spider2jato.xml
    these are the generic conversion rules (but includes the optimized rules for
    ViewBean and Model based code, i.e. these rules do not utilize the
    RequestManager since it is not needed for code running inside the ViewBean
    or Model classes)
    I run these rules against all files.
    See the file download section of this forum for periodic updates to these
    rules.
    nonProjectFileRules.xml
    these include rules that add the necessary
    RequestManager.getRequestContext(). etc prefixes to many of the common
    calls.
    I run these rules against user module and any other classes that do not are
    not ModuleServlet, ContainerView, or Model classes.
    appXRules.xml
    these rules include application specific changes that I discover while
    working on the project. A common thing here is changing import statements
    (since the migration tool moves ND project code into different jato
    packaging structure, you sometime need to adjust imports in non-project
    classes that previously imported ND project specific packages)
    So you see, you are not limited to one set of rules at all. Just be careful
    to keep track of your backups (the regexp tool provides several options in
    its Expert Properties related to back up strategies).
    ----- Original Message -----
    From: <vnamboori@y...>
    Sent: Wednesday, August 08, 2001 6:08 AM
    Subject: [iPlanet-JATO] Re: Use Of models in utility classes - Pease don't
    forget about the regular expression potential
    Thanks Matt, Mike, Todd
    This is a great input for our migration. Though we used the existing
    Regular Expression Mapping tool, we did not change this to meet our
    own needs as mentioned by Mike.
    We would certainly incorporate this to ease our migration.
    Namburi
    --- In iPlanet-JATO@y..., "Todd Fast" <toddwork@c...> wrote:
    All--
    Great response. By the way, the Regular Expression Tool uses thePerl5 RE
    syntax as implemented by Apache OROMatcher. If you're doing lotsof these
    sorts of migration changes manually, you should definitely buy theO'Reilly
    book "Mastering Regular Expressions" and generate some rules toautomate the
    conversion. Although they are definitely confusing at first,regular
    expressions are fairly easy to understand with some documentation,and are
    superbly effective at tackling this kind of migration task.
    Todd
    ----- Original Message -----
    From: "Mike Frisino" <Michael.Frisino@S...>
    Sent: Tuesday, August 07, 2001 5:20 PM
    Subject: Re: [iPlanet-JATO] Use Of models in utility classes -Pease don't
    forget about the regular expression potential
    Also, (and Matt's document may mention this)
    Please bear in mind that this statement is not totally correct:
    Since the migration tool does not do much of conversion for
    these
    utilities we have to do manually.Remember, the iMT is a SUITE of tools. There is the extractiontool, and
    the translation tool, and the regular expression tool, and severalother
    smaller tools (like the jar and compilation tools). It is correctto state
    that the extraction and translation tools only significantlyconvert the
    primary ND project objects (the pages, the data objects, and theproject
    classes). The extraction and translation tools do minimumtranslation of the
    User Module objects (i.e. they repackage the user module classes inthe new
    jato module packages). It is correct that for all other utilityclasses
    which are not formally part of the ND project, the extraction and
    translation tools do not perform any migration.
    However, the regular expression tool can "migrate" any arbitrary
    file
    (utility classes etc) to the degree that the regular expressionrules
    correlate to the code present in the arbitrary file. So first andforemost,
    if you have alot of spider code in your non-project classes youshould
    consider using the regular expression tool and if warranted adding
    additional rules to reduce the amount of manual adjustments thatneed to be
    made. I can stress this enough. We can even help you write theregular
    expression rules if you simply identify the code pattern you wish to
    convert. Just because there is not already a regular expressionrule to
    match your need does not mean it can't be written. We have notnearly
    exhausted the possibilities.
    For example if you say, we need to convert
    CSpider.getDataObject("X");
    To
    RequestManager.getRequestContext().getModelManager().getModel(XModel.class);
    Maybe we or somebody else in the list can help write that regularexpression if it has not already been written. For instance in thelast
    updated spider2jato.xml file there is already aCSpider.getCommonPage("X")
    rule:
    <!--getPage to getViewBean-->
    <mapping-rule>
    <mapping-rule-primarymatch>
    <![CDATA[CSpider[.\s]*getPage[\s]*\(\"([^"]*)\"]]>
    </mapping-rule-primarymatch>
    <mapping-rule-replacement>
    <mapping-rule-match>
    <![CDATA[CSpider[.\s]*getPage[\s]*\(\"([^"]*)\"]]>
    </mapping-rule-match>
    <mapping-rule-substitute>
    <![CDATA[getViewBean($1ViewBean.class]]>
    </mapping-rule-substitute>
    </mapping-rule-replacement>
    </mapping-rule>
    Following this example a getDataObject to getModel would look
    like this:
    <mapping-rule>
    <mapping-rule-primarymatch>
    <![CDATA[CSpider[.\s]*getDataObject[\s]*\(\"([^"]*)\"]]>
    </mapping-rule-primarymatch>
    <mapping-rule-replacement>
    <mapping-rule-match>
    <![CDATA[CSpider[.\s]*getDataObject[\s]*\(\"([^"]*)\"]]>
    </mapping-rule-match>
    <mapping-rule-substitute>
    <![CDATA[getModel($1Model.class]]>
    </mapping-rule-substitute>
    </mapping-rule-replacement>
    </mapping-rule>
    In fact, one migration developer already wrote that rule andsubmitted it
    for inclusion in the basic set. I will post another upgrade to thebasic
    regular expression rule set, look for a "file uploaded" posting.Also,
    please consider contributing any additional generic rules that youhave
    written for inclusion in the basic set.
    Please not, that in some cases (Utility classes in particular)
    the rule
    application may be more effective as TWO sequention rules ratherthan one
    monolithic rule. Again using the example above, it will convert
    CSpider.getDataObject("Foo");
    To
    getModel(FooModel.class);
    Now that is the most effective conversion for that code if that
    code is in
    a page or data object class file. But if that code is in a Utilityclass you
    really want:
    >
    RequestManager.getRequestContext().getModelManager().getModel(FooModel.class
    So to go from
    getModel(FooModel.class);
    To
    RequestManager.getRequestContext().getModelManager().getModel(FooModel.class
    You would apply a second rule AND you would ONLY run this rule
    against
    your utility classes so that you would not otherwise affect yourViewBean
    and Model classes which are completely fine with the simplegetModel call.
    <mapping-rule>
    <mapping-rule-primarymatch>
    <![CDATA[getModel\(]]>
    </mapping-rule-primarymatch>
    <mapping-rule-replacement>
    <mapping-rule-match>
    <![CDATA[getModel\(]]>
    </mapping-rule-match>
    <mapping-rule-substitute>
    <![CDATA[RequestManager.getRequestContext().getModelManager().getModel(]]>
    </mapping-rule-substitute>
    </mapping-rule-replacement>
    </mapping-rule>
    A similer rule can be applied to getSession and other CSpider APIcalls.
    For instance here is the rule for converting getSession calls toleverage
    the RequestManager.
    <mapping-rule>
    <mapping-rule-primarymatch>
    <![CDATA[getSession\(\)\.]]>
    </mapping-rule-primarymatch>
    <mapping-rule-replacement>
    <mapping-rule-match>
    <![CDATA[getSession\(\)\.]]>
    </mapping-rule-match>
    <mapping-rule-substitute>
    <![CDATA[RequestManager.getSession().]]>
    </mapping-rule-substitute>
    </mapping-rule-replacement>
    </mapping-rule>
    ----- Original Message -----
    From: "Matthew Stevens" <matthew.stevens@e...>
    Sent: Tuesday, August 07, 2001 12:56 PM
    Subject: RE: [iPlanet-JATO] Use Of models in utility classes
    Namburi,
    I will post a document to the group site this evening which has
    the
    details
    on various tactics of migrating these type of utilities.
    Essentially,
    you
    either need to convert these utilities to Models themselves or
    keep the
    utilities as is and simply use the
    RequestManager.getRequestContext.getModelManager().getModel()
    to statically access Models.
    For CSpSelect.executeImmediate() I have an example of customhelper
    method
    as a replacement whicch uses JDBC results instead of
    CSpDBResult.
    matt
    -----Original Message-----
    From: vnamboori@y... [mailto:<a href="/group/SunONE-JATO/post?protectID=081071113213093190112061186248100208071048">vnamboori@y...</a>]
    Sent: Tuesday, August 07, 2001 3:24 PM
    Subject: [iPlanet-JATO] Use Of models in utility classes
    Hi All,
    In the present ND project we have lots of utility classes.
    These
    classes in diffrent directory. Not part of nd pages.
    In these classes we access the dataobjects and do themanipulations.
    So we access dataobjects directly like
    CSpider.getDataObject("do....");
    and then execute it.
    Since the migration tool does not do much of conversion forthese
    utilities we have to do manually.
    My question is Can we access the the models in the postmigration
    sameway or do we need requestContext?
    We have lots of utility classes which are DataObjectintensive. Can
    someone suggest a better way to migrate this kind of code.
    Thanks
    Namburi
    [email protected]
    [email protected]
    [Non-text portions of this message have been removed]
    [email protected]
    [email protected]

  • The os x lion does not have the Dayi Pro Chinese input method anymore, help!

    After I install the OS X Lion, I found out they cancel the Dayi Pro Chinese input method which they used to have in the previous OS version.  And the Traditonal Chinese writting pad is not working, can anyone help?

    Regarding 10.7 input methods, see
    http://www.yale.edu/chinesemac/pages/osx7.html
    If something is missing, you might be able to find it in alternative IM's
    http://www.yale.edu/chinesemac/pages/input_methods.html#other
    And you could also ask here:
    http://groups.google.com/group/chinesemac
    There have been various reports already about problems with the TC handwriting input, but I don't know if anyone has found a fix.

  • HT5176 What languages are the chinese input methods associated with?

    In the help file for iOS Dictation the following paragraph regards to selecting language for dictation
    When you want to change the language used for Dictation:
    Tap the globe icon to change to the keyboard for that language.
    Tap the microphone icon to start Dictation.
    Note: To use Dictation, the keyboard language needs to be a supported language. Dictation is designed to recognize the specific accents and dialects of the supported countries listed above. Since every language has its own accents and dialects, the accuracy rate will be higher for native speakers.
    Now there are couple chinese input methods for simplified or traditional chinese typing.  However, which one relates to "cantonese"? They both use the same characters but with different pronunciation. 

    Following up, here is the situation:
    Using "Chinese Traditional - Changjie" as input method,
    1, dictation WILL listen as Cantonese if SIRI is set to Cantonese-Hong Kong
    2, dictation defaults to Mandarin if SIRI is set to English
    Further testing concluded that regardless of the input method, as long as Siri is set to Cantonese-Hong Kong the dictation can listen to cantonese, and otherwise it cannot.
    Is there a way to individually toggle dictation language?

  • I just have questions about the AirPort Express and how it works.

    My household Wi-Fi is not the strongest in  my room and I found out about the AirPort Express and I read the overvie, but I still have some questions on how it works, how its setup and other questions as well.

    The AirPort Express will not wirelessly extend the signal from another router unless that router is also an Apple product.
    Not sure what other questions you might have, but we'll try to answer if you want to ask.

  • I can't type with Chinese Input Methods in Mail and Notes

    Today I suddenly can't type/input any word or character in Mail and Notes
    when the input method switches to any Chinese input method like Zhuyin, Yahoo KeyKey and Bopomofo.
    Even the cursor won't move when I press the " ↑↓←→"
    The keyboard just doesn't work from " ` " to "→" when it comes to Chinese input methods.
    However,
    the keyboard works well as soon as I switch to English input method and I can type English in Mail and Notes.
    I can type with any Chinese input methods in Chrome, TextEdit, Reminder, iPhoto, Contacts,......etc..
    Is there something wrong with Mail and Notes?
    Could anyone help me solve the problem?
    Thank you!

    Thank you, Tom.
    I have posted my issue there and hope for the best
    btw,
    I had the same problem (cannot input any word and move the cursor with Chinese input methods) in Evernote.
    Evernote Support helped me solve it.
    Here is how it works (for Evernote only).
    Ticket # 16051-XXXXX
    We believe that reinstalling the latest Mac version may address the issue that you reported. Please perform the following steps:
    Quit Evernote from the elephant icon in the Menu Bar
    Drag the Evernote application to the system Trash
    Reboot your Mac
    Download and install the latest version of the Mac client:
    http://www.evernote.com/about/download/get.php?file=EvernoteMac
    When you open the download, make sure to drag the Evernote icon into the Applications folder instead of running it from within the installer package.
    Eject the disk image and delete the installer file before you runEvernote.
    Let us know how this works for you.
    Thank you.
    Tania

  • Traditional Chinese input method

    I would like to suggest more Chinese input methods should be added in the iPhone 3G.
    FOr example, Traditional Chinese 'Jianyi' - 'Simplex', this is more convenient to use than 'pinyin'.
    I hope that this will be covered in the new update.

    how do you change to chinese input method?
    See page 27-28 of the iphone user guide.
    http://manuals.info.apple.com/en/iPhoneUserGuide.pdf

  • New interface of Chinese Input Method

    I don't know if there were any other Chinese / Taiwanese people here on the Apple Communities but I really hated the new input method.
    the iOS4 interface of Chinese input method is way better.
    i wonder if there were any way i can change it back to the former one???
    if there were no way to fix it by oneself ; I hope Apple can changed it back.
    btw, does anyone know how to send an advice or suggestion to Apple on certain issue like this??
    thanks for anyone who answer my question.

    For some strange reason, Apple has decided to replace the old Chinese Handwriting "keyboard" with the new Chinese Stroke "keyboard" when you upgrade to iOS 5. The old input method is actually still there - just go into Settings / General / International Keyboards / Add New Keyboard and select Chinese Traditional (or Simplified) Handwriting. I am using an iPad 2 but hopefully it is the same for an iPhone.

  • Using Boshiamy chinese input method on iPad Mini2?

    Hi there,
    I've been struggling a lot on inputting tranditional chinese on my iPad and is wondering if the community can assist with installing or supporting the use of Boshiamy chinese input method on iPad please? There are thousands and thousands of Boshiamy users in Asia, and it'd be greatly helpful if the installation/support is enabled.
    Can someone please advise or come forward with me on this request?
    Many thanks!
    Jas'

    There is presently no way to install custom keyboards on any iOS device, but you can ask Apple to add this via
    http://www.apple.com/feedback
    Have a look at this app, which may be useful for some purposes:
    https://itunes.apple.com/tw/app/id369906264?mt=8

  • About the Chinese input method on Z10.....

    Dear support team,,,,
    Im a Taiwan BB user for about 8 to 9 years....
    I used the strom 9500 and Bold !
    I usually use the Cangjie input method before...
    But......in the new Z10.....
    I can't use it.....
    could u responed me when will be released?
    tks

    Hey Tom,
    I did what it is said in Yale website, but it does not work, I even removed all the dictionaries in ROOT directory=,=
    I will go to google groups for further info.
    Thanks anyway.
    But, I mean, these dictionaries or whatever it is which stores the user's previous inputs must be somewhere in the **** disk, I will find out.

  • About the Hierarchy description change to chinese

    Hi,
    About the Hierarchy,
    I want to display the Hierarchy description change to chinese,
    I change the Hierarchy description to chinese in Discoverer Administrator,
    But the Hierarchy description still show column name in Discoverer Viewer,
    If I change the Hierarchy attribute name to chinese in Discoverer Administrator,
    and the Hierarchy description still show column name in Discoverer Viewer,
    It's important issue for my end user,
    so anyone can help me ?
    your sincerely,
    Yeh

    Hi Bernhard,
                        Answer to your Question:
    The original setting :
    ANLB-PERFY = 12.
    T090NA-XDAILY= " "
    some one changed the Dep Key with
    T090NA-XDAILY= X
    I made the below change:
    T090NA-XDAILY= " ".
    then there is no error for the Asset.
    Please let me know how to identify all the assets that have this error. You have mentioned RAAFAR00 'Recalculate depreciation'.
    so my understanding is if i run the program the warning for all the assets appear.
    Does calculation of Depreciation AFAB report the assets with errors.
    Thanks,
    Raja.

  • How can I reinstall the Chinese input method on Lion

    If I can not reinstall it, then how should I rest the input method, clear all learning phrases and all these stuff.
    Any ideas? I tried to rm all the files in ~/Library/Dictionaries/, but it did work for me, when I launch the input method, it still has the previous input phrases and frequency suggestiongs. I really want to get rid of that, I need a brand fresh unused input method.

    Hey Tom,
    I did what it is said in Yale website, but it does not work, I even removed all the dictionaries in ROOT directory=,=
    I will go to google groups for further info.
    Thanks anyway.
    But, I mean, these dictionaries or whatever it is which stores the user's previous inputs must be somewhere in the **** disk, I will find out.

  • Want to know about the AirPort Express and AirTunes

    I have been contemplating purchasing an AirPort Express to stream music from my bedroom into the entertainment room in a 4 bedroom apartment. I have a wireless G D-link router which could be better but its not going to get better any time soon. As far as AirTunes goes, i have been researching it but still have questions on how it works exactly. Also, is it possible to play music through the speakers that are currently hooked up to my computer and through the stero in my living room simulaneously with this device.

    So i have the airport express and i want to use internet at the same time as streaming my music to my stereo. I also have a router that i normally use for internet. My problem is, how do i use them at the same time because the airport run's or the router runs not both. I tried running a ethernet cord from the router to the airport express, and i can now recieve internet and stream music, but i want to be able to use my router instead of the express. also if i can't and have to go through the express, can i password protect the internet connection because i have no idea how to use settings for this device?

  • Outputs about the Solaris Crash Analysis Tool

    Hello all.
    I am new hear and would like to ask a question regarding to the Solaris Crash Analysis Tool.
    We are analyzing the results of "thread summary" but not quite sure what the asterisk represents.
    Following are the items that asterisk were attached.
    50* threads sleeping on a semaphore (49 user, 1 kernel)
    49* threads in biowait() (49 user, 0 kernel)
    1* process with 19 pending and 0 done kaio
    3* interrupt threads running (0 user, 3 kernel)
    It would be helpful if someone in this forum can educate us
    what does the asterisk mean.
    Thanks,
    Yu

    In addition, is the value
    "threads sleeping on a semaphore" and the "QNUM" in ipcs -q
    the same?
    It would be helpful if this question is also answered.
    Thanks,
    Yu

  • Curious about the Solar System in Appleworks

    Hi,
    Curious how or if I can draw nine circles in appleworks to represent the solar system. When trying to do this task, I use the circle tool, but then cannot make a smaller circle fit inside to represent the planets individual orbit.
    It may be impossible, but thought I'd ask
    Here's an example;
    http://www.fourmilab.ch/cgi-bin/Solar
    Thanks,
    -s
    Message was edited by: S Crawford

    Hello
    It seems that your glasses are out of date
    Looking at the passed shot you may see that the nine circles are "empty". The grid is visible which means that we may move the circle as we want, the nine ones will remain visible.
    You just need to use the background icon and select none.
    or
    Yvan KOENIG (from FRANCE jeudi 27 mars 2008 13:18:58)

Maybe you are looking for

  • Skillbuilders Modal Page - End Open event

    Hi, I'm using Skillbuilders Modal Page 2.0.0. plugin on Apex 4.2, and I can't seem to get the event End Open to work. I stumbled upon this thread Skillbuilder Modal Page - Dynamic Title but the solution Tom suggested didn't help; nothing happens even

  • Create po in backend

    hi I am on SRM 7.01 and using the classic scenario process SC created in SRM - > SC goes to approving ->Manager approved the Sc -> system create PR or PO or RS Automatically in backend as a follow on doc problem:  when purchaser create sc and manager

  • Time Machine Bug

    I believe there is a major bug with time machine being unable to restore a case sensitive file system. If i do a clean install with a case sensitive file system then do a full time machine backup. I am then unable to restore that backup onto an new s

  • Flash image expands out of container only on Safari browser

    I have this test page where flash image expands out of the container only on Safari browser, everything else works fine (I.E,Chrome,Mozilla,Opera) http://itmjobs.ro/lidl/eu.html . I have tried to insert flash image into a table, the same thing happen

  • Appointments deleted in Outlook remain on BB...

    Hi All, We just implemented BlackBerry Professional Server with a handful of users and I've noticed the following behavior:  When a calendar appointment is created on the BB, it syncs with Outlook and appears there as well.  If the appointment is the