Please support more complex characters in ADE - time to switch reading engines !

In ADE 1.7 (and previous versions) there has always been a lack of support for Latin extended characters - such as a 'H' with a dot below - as shown at this post here:
http://graphemica.com/%E1%B8%A5
In version 1.7.x these characters appear as a question mark '?'. (as shown below)
Now in version 1.8.x they appear as a square with a cross inside (as shown below):
To code up a H character with a dot below the following character entities simply DO NOT WORK in ADE.
HTML Entity (Decimal)
ḥ
HTML Entity (Hexadecimal)
ḥ
Any webkit based reading engine (e.g. iBooks) renders these obscure characters CORRECTLY - as shown below:-
Gecko based reading engines (in this example Firefox) also renders these obscure characters CORRECTLY - as shown below:-
Please can Adobe support these character in RMSDK. It's a fundamental requirement if your RMSDK based e-reader is to compete anywhere near the more sophisticated webkit.
I think the future of ADE is less about re-skinning (which IMHO seems to be the main changes I'm seeing in version 1.8) and more about considering a switch from RMSDK to the more superior Webkit. (Appreciate Adobe cannot liscence webkit and make $$$$$, so this core change probably will never happen!). Alternatively update RMSDK to a 21st century reading engine and support this type of scenario.
I have clients who's use ADE for proofing ePUB and it always hurts to tell them that ADE is the reason for some of the complex characters appearing cr*p. Now that can't be good for Adobe's reputation.
THANKS - hope someone at Adobe is listening.
cheers, Rob.
PS: Really want to avoid having to embed fonts to achieve these characters in ADE beacuse we want one ePUB to work across multiple reading engines/ ePUB reading sytems.

This worked perfectly, many thanks!!!

Similar Messages

  • Can the AirPort Extreme support more than one printer at a time?

    can the AirPort Extreme support more than one USB printer at a time if it is connected to a USB Hub?

    can the AirPort Extreme support more than one USB printer at a time if it is connected to a USB Hub?
    Yes.....IF.....you use a powered USB hub.
    I have had 3 printers connected at the same time in the past and assume that more would work as long you have a powered hub to support the number of ports that you need.

  • HT204053 i cannot use my apple ID for Imessage or Face time because when i conect to my ID tell me check you ID or password  please support

    Dears
    i cannot use my apple ID for Imessage or Face time because when i conect to my ID tell me check you ID or password  please support
    BR
    Ahmed El-Sayed
    <Email Edited by Host>

    It is unwise of you to post your email address publicly, I will ask for it to be removed.

  • HT3231 Can you see 2 or more screens at the same time on a Macbook?

    If you know how to set up your Macbook so that you can view 2 or more screens at the same time on the display, please tell me the steps I need to take to do this.  Thanks!

    Hi geniew,
    Welcome to the Support Communities!
    The link below will give you some pointers on how to customize the Mac.
    Apple - Find Out How - Mac Basics
    I believe what you are asking is how to change the size of a window so that you can see two applications side by side.   For example, open the Safari application, and drag the bottom right corner of the window to resize it, then quit Safari.  When you open the application again, the window will open in the smaller size you created.
    Repeat for any other applications you wish, so that you can have windows open side by side.
    Alternatively, you can switch between applications quickly as mentioned above in the link.
    Quickly Switch Between Applications
    The Mac makes it easy to have multiple applications — Mail, Safari, iTunes, Pages, iChat, iPhoto, and others — open at the same time. So how do you quickly switch from Safari, let’s say, to Mail?
    Just hold down the Command key and press the Tab key (Command-Tab). Mac OS X immediately displays a mini-Dock with icons for each of your open applications. At the left side of the mini-Dock, you’ll see the icon for your current application. Next to it (and highlighted), you’ll find the icon for the application you last used. Each time you press the Tab key (without releasing the Command key), you can cycle through your open applications.
    One more tip: You can also use the Left Arrow and Right Arrow keys to navigate your open applications.
    Or, use Expose to manage multiple windows:
    Apple - Find Out How - Mac Basics
    I hope this information helps ....
    Have a great day!
    - Judy

  • ORA-24335 - cannot support more than 1000 columns - How to solve this?

    Hi,
    I got error message 'ORA-24335 - cannot support more than 1000 columns ' when i try to insert x no of rows for a table with following code:
    INSERT ALL
    INTO tableA Values ('A', 'B', 'C', 1, 2, 3)
    INTO tableA Values ('D', 'E', 'F', 4, 5, 6)
    INTO tableA Values ('G', 'H', 'I', 7, 8, 9)
    SELECT *
    FROM DUAL
    How to solve above?
    What does it really mean? It's not as easy as if my table has 10 columns than I can't insert more than 100 rows (1000 columns divided with 10 columns = maximun 100 rows to insert), or?
    Is there a better/more appropriate way to do insert many rows?
    Should I do my inserts with an OracleTransaction (My application is developed with C# and asp.net), as ~follows
    BEGIN
    INSERT INTO tableA Values ('A', 'B', 'C', 1, 2, 3)
    INSERT INTO tableA Values ('D', 'E', 'F', 4, 5, 6)
    INSERT INTO tableA Values ('G', 'H', 'I', 7, 8, 9)
    COMMIT
    END
    Thx in advance!
    Edited by: user8819407 on 2010-mar-07 15:40

    Hi,
    So how did you solve the problem? Can you please give an example?
    I have the same problem inserting over 1000 values into my Oracle DB. The table only has 51 columns but to speed up the insert command, I use bulk inserts via insert all command. I need to insert 100 rows at a time for a total of 5100 values.
    Example:
    SQLCmd = INSERT ALL INTO MYTABLE (VAL_ID,VAL_NAME,VAL_NUM,VAL_TIME,VAL_CMM,VAL_TIME1,VAL_TRIP,VAL_REMAINING,VAL_AGE,VAL_COUNT,VAL_RSTS,VAL_VOLT,VAL_RF,VAL_DC,VAL_HOPS,VAL_STATUS,VAL_ELAPSED,MODIFY_TIME) VALUES (?,?,?,TO_DATE(?,?),?,TO_DATE(?,?),?,?,?,?,?,?,?,?,?,?,?,SYSTIMESTAMP)
    INTO MYTABLE (VAL_ID,VAL_NAME,VAL_NUM,VAL_TIME,VAL_CMM,VAL_TIME1,VAL_TRIP,VAL_REMAINING,VAL_AGE,VAL_COUNT,VAL_RSTS,VAL_VOLT,VAL_RF,VAL_DC,VAL_HOPS,VAL_STATUS,VAL_ELAPSED,MODIFY_TIME) VALUES (?,?,?,TO_DATE(?,?),?,TO_DATE(?,?),?,?,?,?,?,?,?,?,?,?,?,SYSTIMESTAMP)
    INTO MYTABLE (VAL_ID,VAL_NAME,VAL_NUM,VAL_TIME,VAL_CMM,VAL_TIME1,VAL_TRIP,VAL_REMAINING,VAL_AGE,VAL_COUNT,VAL_RSTS,VAL_VOLT,VAL_RF,VAL_DC,VAL_HOPS,VAL_STATUS,VAL_ELAPSED,MODIFY_TIME) VALUES (?,?,?,TO_DATE(?,?),?,TO_DATE(?,?),?,?,?,?,?,?,?,?,?,?,?,SYSTIMESTAMP)
    INTO MYTABLE (VAL_ID,VAL_NAME,VAL_NUM,VAL_TIME,VAL_CMM,VAL_TIME1,VAL_TRIP,VAL_REMAINING,VAL_AGE,VAL_COUNT,VAL_RSTS,VAL_VOLT,VAL_RF,VAL_DC,VAL_HOPS,VAL_STATUS,VAL_ELAPSED,MODIFY_TIME) VALUES (?,?,?,TO_DATE(?,?),?,TO_DATE(?,?),?,?,?,?,?,?,?,?,?,?,?,SYSTIMESTAMP)
    SELECT 1 FROM DUAL
    SQLVals = 1 22C38299 80700334 04-19-2012 13:55:33 mm-dd-yyyy hh24:mi:ss MCC93000 04/19/2012 13:55:42 mm-dd-yyyy hh24:mi:ss 12 4 0.792191 23 1 0.00 -113.50 13.48 9 1 9
    1 36PR7038 8070EDC2 04-19-2012 12:24:35 mm-dd-yyyy hh24:mi:ss MCC60360 04/19/2012 12:24:41 mm-dd-yyyy hh24:mi:ss 7 4 0.757501 3 2 13.88 -114.80 14.06 5 1 6
    1 42C63512 8050166F 04-19-2012 16:02:50 mm-dd-yyyy hh24:mi:ss MCC52420 04/19/2012 16:02:57 mm-dd-yyyy hh24:mi:ss 10 4 0.778471 8 1 0.00 -122.30 13.05 8 1 7
    1 33MR3076 80803E75 04-19-2012 13:13:16 mm-dd-yyyy hh24:mi:ss MCC60330 04/19/2012 13:13:22 mm-dd-yyyy hh24:mi:ss 13 5 0.636721 28 3 0.00 -122.19 0.70 8 1 6
    Then I call: &DBInsert($sqlCmd, @sqlVals);
    This is the error I get: ORA-24335: cannot support more than 1000 columns.
    I need to insert about 879,500 rows (51 cols per row). The values I read from a text file in sets of about 48,000 and put them into a hash. I tried inserting one row at a time, but it takes too long, about 28 hrs! Then, I tried the bulk update with only 6 rows and the total time was about 25 minutes. Which is acceptable to us.
    Thanks!

  • How to add more special characters

    hello, is there any possibility to add more special
    characters ? I know how to use characters from windows, i read that
    tutorial, but if i want to add into special characters toolbar from
    fireworks is there any chance ?
    Because i have a problem with adobe acrobat. If i add a
    special characters from windows i get this error "?", but if i
    choose to add a character from adobe fireworks, it works fine.

    Hi Anubhav,
    Please refer in this code:
    DATA : INT_VAR TYPE /BI0/OIPOSTXT.
    DATA : length TYPE i.
    DATA : num type i.
    MOVE SOURCE_FIELDS-SGTXT TO INT_VAR.
    TRANSLATE int_var TO UPPER CASE .
    num = 0.
    length = STRLEN( int_var ).
    DO length TIMES.
       IF int_var+num(1) CN
       ',<>?/\:;"''ABCDEFGHI JKLMNOPQRSTUVWXYZ!%^&*()__+=1234567890'.
        int_var+num(1) = ''.
       ENDIF.
       num = num + 1.
    ENDDO.
    condense int_var NO-GAPS.
    RESULT = int_var.
    Revise that code based on your scenario..Just post here for any queries..
    For other solutions, please refer in this thread:
    handle invalid char at end of text
    Regards,
    Loed

  • Will new Intel  "Conroe" chip in Mac towers support more than 4 gig of RAM?

    Hi all,
    long time no speak
    Question:
    Will the new Intel "Conroe" chip in the upcoming Mac towers support more than 4 gig of RAM?
    I score Orchestral and since the new VSL library is completely 24bit i need to at least be able to adress 8 gig of RAM (16 gig would be better
    To APPLE: Guys please be aware that us Pro Users were always eager to adress those 8 gig of RAM in our G5s, but were dissapointed in the fact that Logic FCP etc, were never turned into 64 bit apps.....so adressing 4 gig was it for us........
    I guess another way to ask the same question would be whether "Conroe" is 64 bit, as that is what is required to adress more than 4 gig of RAM.....
    thanx,
    SvK

    Will the new Intel "Conroe" chip in the upcoming Mac
    towers support more than 4 gig of RAM?
    From what I've read Conroe will be 64-bit. A google search of "64-bit conroe" will give you a few sources and more info.
    To APPLE: Guys please be aware that us Pro Users were
    always eager to adress those 8 gig of RAM in our G5s,
    but were dissapointed in the fact that Logic FCP etc,
    were never turned into 64 bit apps.....so adressing 4
    gig was it for us........
    It doesn't need to be a 64-bit application. It just needs to have 64-bit memory addressing. Here is a good article if you're interested.
    http://developer.apple.com/business/macmarket/mathematica.html
    I don't have any experince with VSL, but I did have a quick experience with Kontakt 2 (I sold it). The Kontakt 2 forum has a post from the moderator that explains some issues around Kontakt's memory issues.
    http://www.nativeinstruments.de/forum_us/showthread.php?t=31572
    "furthermore, even Kontakt 2 and related products will not get 64 bit support any time soon since this would require a complete rewrite of the engine - this is the last thing we want at this point! products based on Kontakt 2 are Akoustik Piano and Bandstand."
    The complete rewrite of the audio engine might be the general issue with utilizing more than 4Gb of memory. But, I am not sure...I think there is another issue with how the OS handles memory usage.

  • Oracle can not support upto 32 characters table name and field name ?

    hi
    oracle up limitation ?
    create table aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa(a char);
    Error
    ORA-00972:identifier too long
    or
    create table a (aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa char);
    Error
    ORA-00972:identifier too long
    Oracle can not support upto 32 characters table name and field name ?
    It is true?
    null

    Hello All
    It's been a year after those posts about the limit of identifiers in Oracle Database. Does anybody know what can be done to get rid of that primitive limit? We are developing using Application Servers, Java, generated Code and a very nice object model, in which we can't just use abreviations because of early database age memory shortcomings.
    We are currently using 8i in a very large organization. Is there any chance this version can be configured to allow larger identifiers? Is upgrading to 9i going to solve this problem? Is Oracle Databases really doomed forever because of a 20-year-ago limitation?
    Please, I do like Oracle Databases. I don't want to be flooded with quick answers like "just use 32 character identifiers". I would like to hear a serious solution. Is anybody there still locked in the 8.3 filename paradigm of MS/PC-DOS? Does anybody has to fit an entire Enterprise System in segmented 640Kb of memory? Does anybody has to use monochrome character mode interfaces? Of course not those in the mainstream.
    I also know that other hadrware and software products have lots os limitations. Take Windows 2000. Its command line has a limit of 255 characters! You can't have more than 4GB of memory in a PC! However, one can't expect one mistake to justify others.
    I wish I were very wrong in this respect, and all it should be necessary is to turn on some kind of configuration parameter in 8i to allow us to develop high quality code.
    Thanks for your attention.
    Please, feel free to contact me if you have a solution.
    [email protected]

  • Can SPA9000 Support More Than 16 SIP Users

    Hi
    Can SPA9000 Supports more than 16 SIP Connections. If yes then how ???
    please give me complete detail because i m going to employ 100 SIP users on SPA9000 but i have found on net that it only supports 4 SIP users at a time and 16 Users by purchasing a license of 300$
    So please help me regarding this matter
    my email address is [email protected]
    waiting for your kind response....

    If the phones were Linksys SPA9XX phones the SPA9000 configured them for you. If you have an SPA9000 on a network and plug one of the SPA9XX phones into the same network it will find the SPA9000 and auto configure. If these are the first 2 phones the line displays are most likely showing one phone as extension 100 and the other as 101.
    No problem, hope this helps.

  • Do java supports all unicode characters including telugu..??

    Hello to Everybody..!
    Iam rather new to java technologies and I want to know whether java supports telugu language and if it supports it ,how can we implement it? and is there any system requirements for it.?
    Please Kindly consider this query and Thankks in advance.

    Yes, Java supports all Unicode characters. If you want to know more about Unicode, have a look at its website:
    http://www.unicode.org/
    Telugu characters are in their code charts here:
    http://www.unicode.org/charts/PDF/U0C00.pdf
    You don't have to "implement" anything. System requirements would include a font that can render those characters. I don't know about keyboards.

  • Is there a way to work with two or more app at the same time on iPhone or iPad

    Is there a way to work with two or more app at the same time on iPhone or iPad?

    What i am attempting to achieve is to work with at least two app at the same time. For example: select any picture from my albums to attach them in an email. Another example is get data from an app to use it with the calc app. And there are more exaples for it. And for sure I need support for an iPad air. I mencioned the other tablet just to try to be a bit clearer.

  • TS4268 Please help, I can't find face time and Siri icon on my mini ipad? Just bought it I have the IMessage icon and is able to use it.

    Please help, I can't find face time and Siri icon on my mini ipad? Just bought it I have the IMessage icon and is able to use it.

    There is no Siri "icon". You access Siri using the Home button. But you may need to turn it on: Settings App > General > Siri. http://support.apple.com/kb/HT4992
    Same for the FaceTime function (but if it is ON, there will be an icon): Settings App > FaceTime > [turn it on and set you Apple ID. http://support.apple.com/kb/HT4319

  • French characters in run time parameter values doesn't show up in emails

    We have a custom workflow with configurations to send email when a request is assigned to a person and also to send email on request rejections.
    We are encountering following issues with respect to French characters that are available in the message body and message subject.
    Issue 1:Notifications are configured in Human Task (ApprovalTask.task) when a task is assigned. Since the message body contains French characters we have used ISO-8859-1 encodings to render the message properly to the user. The message body also has some run time content from the task payload.
    For e.g. &#192; titre de responsable fonctionnel, une demande d''approbation pour un acc&#232;s informatique vous est assign&#233;e.
    Acc&#232;s informatique demand&#233; : <%/task:task/task:payload/ns1:ObjectDetails/ns1:name%>
    In this case all static text values are rendered properly to the end user in his email. However the French characters in run time parameter values doesn't show up properly and has some weird characters.
    Issue 2: Unable to change the default subject shown in the approval task emails i.e. Notifications are configured in Human Task (ApprovalTask.task) when a task is assigned. By default it shows Action Required: Approval. How can this default value be changed?
    Issue 3: We have an Email Activity in Bpel process that follows a task rejection. The emailpayload is ISO-8859-1 encoded and works for the message body. However the email subject shows up with ISO-8859-1 encodings itself and doesn't convert to proper string in the end user's email. Is there any specific setting required for french characters in subject?

    Hi Kulwinder,
    Thanks for your reply.
    In fact I do, I've follewed the "Using SAP HANA Variables with SAP BusinessObjects BI4.0" guide.
    Please note, when I use a fix value to parameter is working fine, for example:
    SELECT *
    FROM "_SYS_BIC"."prueba-concepto/CV_TEST_VAR_II" ('PLACEHOLDER' = ('$$FECHA$$','20130530'))
    But when I set prompt of the DataFoundation parameter I get and error, this is my sentence:
    SELECT *
    FROM "_SYS_BIC"."prueba-concepto/CV_TEST_VAR_II" ('PLACEHOLDER' = ('$$FECHA$$',@Prompt(FECHA)))
    To me is very curious that I can't enter a value in the DataPreview in Hana Studio, because is not requested, even when the input parameter have been set as mandatory
    Have you idea of what could be happening?

  • Please support bb bb pearl 8100 as his regular

    please for the bb 8100 is supported by software that supports and a little more modern like bb
    because I feel bb users find hp 8100 can not be in use as other
    please support os 5 for bb pearl 8100
    please

    Hello megaa,
    Welcome to the forums. 
    Device software availability is determined by your provider. You can check available versions here: 
    BlackBerry Desktop and Device Software Download Sites
    Hope this helps. Have a good day. 
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • 10.6 Terminal.app doesn't show complex characters

    Terminal only shows blanks instead of complex characters. This happens both for input as well as program output.
    Screenshot:
    !http://www.abload.de/img/sl_termuada.jpg!

    Jun T. wrote:
    Please make sure you are using the UTF-8 encoding in the Advanced tab of the Preferences Pane.
    Yes, it's set to Unicode UTF-8.
    Did you try removing com.apple.Terminal.plist in ~/Library/Preferences?
    Yes, without any success.
    What font are you using in Terminal? Monaco? Did you try other fonts, such as "Osaka Mono"?
    I used Monaco 10 pt. Osaka Regular-Mono finally helps displaying Japanese characters. So could something be wrong with /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreText.fr amework/Resources/DefaultFontFallbacks.plist ?
    BTW: All the Hiragino fonts don't display anything in Terminal. Is that normal behaviour?

Maybe you are looking for

  • Default value of radio button on first row in table

    Hi, I have created a custom page which includes a table ("SuppliersTable"), the table has a singleSelection table component (radio button) linked to a transient attribute ("SelectFlag") in a VO ("ApSuppliersVO"). The table is populated from a Query r

  • How to automatically send the mail without popping for send

    Hi, I am providing proper values in system parameters of report6. viz. Desformat=pdf Destype=mail mode=bitmap desname=Valid email id I am using MS MAPI (Microsoft Outlook) When I run the report, I get the composed mail with the pdf attachment. When I

  • Exception thrown during OSM7 installation-unresolved lib references

    Hi, I am using jdevstudio11113install.exe to install WL Server + ADF. During OSM 7.0.3 installation, i am getting exception as <Oct 17, 2012 4:53:31 PM IST> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with

  • Premiere Elements 10 install failure on Mac osx 10

    I have a copy of Adobe Premiere Elements 10, the five disk set, and keep having the same failure trying to install it on my Mac. I have gone through all the product requirements and made sure that my computer satisfies them, but I still find an insta

  • Some of my apps and programs crash when opening: "....has quit unexpectedly"

    Due to a system issue I had to reinstall Mavericks 10.9.5, I also reinstalled all programs and apps from a backup, but was advised NOT TO copy back my old Library folder, since that was where my previous issue was. So now some apps and programs refus