How to get the CJK plugin for indesign cc 2014 english version?

I just bought the new cc 2014 today,but I need to edit some Chinese documents in english version. How can I get a new CJK plugin?Thank you guys!

Press the gear icon on the upper right of the CC app and change the language.

Similar Messages

  • How to get the "Missing Plugin" for iPhoto 9.1.1 eMailing??

    OK with the improvements in iPhoto (iLife'11) version 9.1.1 we are back to being able to eMail using MAIL or another eM program. Great. But I can also eMail within iPhoto- and this has been improved as well; so I tried this and sent a corkboard eM with 4 photos to myself...
    ...and got just the corkboard, with a message stating in the middle of the corkboard: *"Missing Plugin".*
    Can anyone assist with this? (I tried another theme, a gray-background one with 3 pics and that worked fine - but not the "corkboard")
    Best regards,
    Steve Schulte
    Thursday 23 December 2010

    Does anyone have any information about this? Is a "Plugin" really needed to send eMails via iPhoto 9.1.1?
    Thanks!
    Best regards,
    Steve Schulte
    Thursday 23 December 2010

  • How to get the last error for while loop?

    How to get the last error for while loop? I just want transfer the last error for while loop, but the program use the shift register shift all error every cycle.

    What do you mean by "get" and "transfer"?
    If the shift register is not what you want, use a plan tunnel instead.
    Typically, programmers are interested in the first, not last, error.
    Can you show us your code so we have a better idea what you are trying to?
    LabVIEW Champion . Do more with less code and in less time .

  • How to get the depreciation areas for an asset in particular period

    Hi frndz,
      how to get the depreciation areas for an asset in a particular period for writeup or manual depreciation method.
    Thanks and regards.
    Harisumanth.Ch

    Try table ANLB, then read ANLC.
    Regards.

  • How to get the owner name for the file in ftp using abap ?

    Hi folks ,
    How to get the owner name for the file in ftp using abap ? please help me very ugernt . I tried with all standard FTP commands
    but doest work out me . Helping in this regard highly appreciated ...
    Thanks and regards,
    Swarupa Vanarchi

    Hi
    dont you  have used the os user while calling the FTP_CONNECT FM?
    Hope you are not talking about the user executing the FTP program.
    Else If you are talking about the FTP file creator then its not related to abap as you can handle it by maintaining the user in file name itself.
    May be i am going too far with if and elses here as your question possesses no  clarity.
    Plz elaborate your requirement  before anybody can help.
    Regards
    sateesh

  • How to get the document number for a ware house order.

    Hello gurus,
    how to get the document number for a ware house order. [if GI is posted refering that WH order] .. is there any report?
    Thanks in advance

    There are several options.  When you post a Goods Movement, you can use LB12 -display Transfer Requirement for material document or LB11 Display TR for material.
    Depending on how your system is set up you may have gotten a Transfer Order automcatically.  In this case you can look at LT24 - Transfer Order for material.

  • How to get the baselinegrid position for a line?

    Hi All,
    How to get the baselinegrid position for a line in a paragraph?

    Hi,
    2nd line baseline grid for yourPara paragraph is:
    yourPara.lines[1].baseline;
    last line baseline is:
    yourPara.endBaseline;
    Jarek

  • HT204291 how do get the media icon for mac mirroring when running airplay on itunes?

    how do get the media icon for mac mirroring when running airplay

    Airplay mirroring requires a Mac from 2011 or later, running OSX 10.8 (or later)
    http://support.apple.com/kb/HT5404?viewlocale=en_US&locale=en_US

  • How to get the latest update for the phone?

    hey does anyone know how to get the latest upgrade for my phone? 3230 nokia

    http://www.nokia.co.uk/nokia/0,,58162,00.html
    Gadget
    Remember to mark all correctly answered questions as Solved. A forum is only as great as the sum of its parts, together we will prevail.

  • How to get the delivery number for the sales order

    hi
    how to get the delivery number for the sales order

    Hi,
    1. IN VA03, enter the sales order and click on the document flow button. From there you can check the delivery document.
    2. In SE11, enter VBFA(Document flow) table and enter the sales order in VBELV field and in VBTYP_N field enter 'J' to specify that you want to check if there is already a delivery document for that sales order.
    Hope it helps...
    P.S. Please award points if it helps...

  • HT1539 how to get the french track for the digital download

    how to get the french track for the digital download from having purchased a DVD at the store

    Hi, pascalegadbois.
    Thank you for the question.  From your question it seems like you are looking to change the language setting for a movie downloaded via Digital Copy.  If this is the case, then the instructions below will walk you through how to adjust the language settings.  Also, depending on the region the video was downloaded, not all languages are supported. 
    iTunes: Language settings for video
    http://support.apple.com/kb/HT5562
    Cheers,
    Jason H. 

  • How to get the Delivery address for PO

    I have a problem.
    I am working on a SAP Script , which is for PO(Zmedruck_po) , which is a copy of
    MEDRUCK.
    I am asked to print the delivery adress in a window .
    The scenario is like this .
    In ME23N , under item details , there is a tab called DELIVERY ADDRESS
    this has option to enter the adress details or a delivery number in the  address text box .
    If the address number is present i have to print that address , else i have to print the address which is entered in the delivery address tab.
    If the delivey address number is there i have no problem in printing it ,But if address number is not there ,I need to know how to get the delivery address,
    is it the plant address, company code address ... ?
    I debuged ,but could not find out.
    Can anyone help please .

    Hi,
    try using the below method:
    Goto TWLAD table with storage location (EKPO-LGORT) as key to get address number (ADDRNUMBER).  then goto ADRC table to get the address of the delivery
    Regards
    Shiva

  • How to get the opening balances for lessthan selected date in cubes.

    Hi All,
    my task is to get the opening balances for the selected date.
    Ex: If I select date say 31-1-2013, I should get the sum of values which are less than the selected date.
    in sql:
    select sum(balance) from banktrans where banktrans.transdate < 31-1-2013;
    BankTable                            BankTrans
    BankId                               BankId
                                            balance
                                            transdate
    BankTable (records):
    SCB
    BankTrans(records):
    a) SCB, 15000, 10-02-2013
    b) SCB, 20000, 31-01-2014
    c) SCB, 50000, 21-09-2012
    If I select date as 31-01-2014, I should get the value as 65000 
    If I select date as 10-02-2013, I should get the value as 50000
    Date will be dynamic selection from years months days hirearchy ( time dimension)
    How can i achieve this?  
    any help is much appreciated.
    Thanks,
    Rakesh

    Dear David,
    I've tried the below with static date but i'm not getting the values which are sum of less than the given date.
    I've given 1st jan 2013 as static date and I need to get the sum of values which are less than the 1st jan date.
    CREATE
    MEMBER
    CURRENTCUBE.[Measures].[OPENBALANCE]
    AS
    Sum({Null:[Time].[Years
    Quarters Months Weeks Days].[Days].&[2013-01-01T00:00:00]},[Measures].[AmountCur]]),
    FORMAT_STRING
    = "Standard",
    VISIBLE
    = 1
    can you plz check the above once and guide me.
    Thankyou,
    Rakesh

  • HR ABAP: How to get the organizational unit for the penr as chief

    Hi ,
      I am new to HR ABAP. Could any one  specify if we have a PERNR  how we can get the possible values for Orga units,positions and the personal areas that this PERNR as chief.
    Thanks in advance,

    Hi,
    <li>Check the table PA0001 which contains Org unit(ORGEH), Position(PLANS), Personal Area(WERKS) assigned to PERNR.
    <li>Use SELECT query to get those if you don't use Logical database PNP.
    Thanks
    Venkat.O

  • I am getting ready to wipe a PC clean but wanted to know how to get the activation code for the Version of Adobe reader that is currently installed on the PC?

    I do not have the activation code for this PC and need to know how to get the software loaded back on it after a clean install of the OS and other programs.

    If you use any additional subscription services to Adobe Reader, they are activated with your Adobe ID & password.

Maybe you are looking for

  • Data not loading for new Fields InfoObjects from DSO to InfoCube

    Hi Gurus -                I have a DataSource that is providing data to existing DSO then to Infocube. My client asked me to added couple fields to DataSource and get the data to DSO and then DSO to InfoCube. Here is the Old scenarion:   DataSource -

  • Cannot input new number for depost

    Hi, My client cannot input new deposit.  When input new deposit, deposit # : 520900001 is appear on the screen.  When click add, the following message appear : "This entry already exist in the following table 'Deposit' (ODPS)." On document numbering

  • ICSS components need to be activated

    Hi, We are implementing ICSS B2C scenario for Complaints. What are the Components need to activate in the CRM server for ICSS process. Regards, Pavan.

  • Final Cut Pro footage and Canon 5D import

    I am able to drag footage from Canon 5 D Mark 111 media card directly into Final Cut 7.  Previously I remember compressing footage, why does one compress footage, the total media is 8 GB. Thanks Catherine

  • LOV with designer 6.0

    Hi Everyone, I have an old Designer v 6.0.3.6.0, conf 2.17 to develop my forms.- My simply question (for who is familiarized with CS versions of Des.) is how i make Lov's?. From the begginin i used the 6.1 version and there is a section where i can c