Chinese character show in AVAlertNote:

Ask a Question related to Adobe Acrobat SDK, Design and Development.

  1. #1

    Default Chinese character show in AVAlertNote:

    Hi i wonder to show some chinese character into an AVAlertNote, is it possible? Please give me some guides if it is possible.

    Thanks your concern.

    Regards,
    Tham
    cstham@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Showing Chinese character:
      I wonder to show a chinese word in AVAlertNote, is it possible? Please give me some guidelines if it can. Thanks your concern. Regards, Tham
    2. Input Chinese Character
      I having problem to insert chinese character from textarea input into MS Access DB, the funny character save into DB? I try out <meta...
    3. CF 5 or MX 7 support chinese character?
      Does any one know if CF 5 or MX 7 support chinese character or not? if so, what kind of additional file or extension i need to install? Can i use...
    4. Chinese Character in SQL 2000
      Hi, I know someone has asked similar question but the solution in this forum seems can't help me. I am now using SQL 2000 (ENG version) and...
    5. display chinese character
      hi, i wonder why dreamweaver can't display the chinese character that i entered...boxes appeared; but correct chinese characters display in...
  3. #2

    Default Re: Chinese character show in AVAlertNote:

    Use ASText
    Leonard_Rosenthol@adobeforums.com Guest

  4. #3

    Default Re: Chinese character show in AVAlertNote:

    From AVTextCopyProcCBExtract(ASAtom format, void* pBuf, AVTBufferSize bufLen, void* pClntData), i get the text from pBuf, but i still can't see the chinese character correctly in AVAlertNote. It always show me some unrecognize character (such as G4 ) in AVAlertNote for chinese character. Only english i can see correctly.

    Thanks your concern.

    Regards,
    Tham
    cstham@adobeforums.com Guest

  5. #4

    Default Re: Chinese character show in AVAlertNote:

    AVAlertNote is not support ASText. It only shows "char*" data type. I convert the ASText to char* but it shows unrecognized character in AVAlertNote. Below is my code:

    AVAlertNote((char*)(ASText)pBuf);

    Thanks your concern.

    Regards,
    Tham
    cstham@adobeforums.com Guest

  6. #5

    Default Re: Chinese character show in AVAlertNote:

    You can't simply coerce an ASText to a char* - it doesn't work that way. Please review the documentation on an ASText object.
    Leonard_Rosenthol@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139