[CS4] !!text Hebrew with problem unexpected

This is driving me !sreknob
I have a couple of Hebrew phrases in an otherwise English text, so I assigned the World Ready Composer to the styles in question using Peter Kahrel's "Arabic" set of scripts, and created a 'Hebrew' character style. No problem: the Hebrew text comes out perfect. What's Not So Nice is that some other text also follows an RTL direction!
In the above screenshot, you can see the volume number and page range "2:663-676" appear correctly in the Story Editor below. The Story Editor does not know anything about Hebrew, so it reverses the Hebrew text. That's not a problem, because the World Ready Composer fixes that in the formatted text (above).
But what is going on with the numbers!? No amount of copying & pasting seems to fix this. The paragraph direction is set to Left To Right; the Hebrew text has a character style that only applies another font.
[Edit] Oh, and of course the square bracket at the right of the numbers isn't corerct either. ]It seems more than a bit [random to me.]

A-ha! I was right, it's an automatic system going wild. Thanks for confirming it!
> Sometimes it's easiest just to retype the whole thing....
I must have used at least half a dozen different methods in the past. Fortunately, each one more advanced than the previous! Let me think, I have:
* printed from Word to PDF and painstakingly imported/placed/scaled each separate phrase. Pro: anyone can do this. Con: Loads of extra work. Loads of fun with line-spanning text, and the occasional last minute correction. Cannot adjust font.
* copied from PDF into Illustrator, saved as .ai, the rest as above. Pro: you can tinker with the text (a bit). Con: even more work.
* reversed the characters in ID. Pro: fast, efficient, can use fonts. Con: it qorked nicely in CS3 and older, but CS4 tries to override accent placing and ligatures, which is troublesome for Hebrew. Also, Arabic needs to have Each Bloody Separate Character checked for correct initial/medial/final form. Another con: line-wrapping needs to be done manually. Only just feasible with short phrases; longer stories -- think of a full paragraph -- needs to be broken manually into lines, because otherwise right-to-left text also appears bottom-to-top.
* cut phrases out of running text, pasted into separate text box, so I could finally use proper RTL character and paragraph formatting. Text boxes were then re-inserted into the text on the original position. Pro: finally! Automatic ligatures, wonky text cursor, real fonts -- the Real Thing. Con: still no good solution for line-wrapping text. Also, the text boxes themselves caused spacing problems.
With all said and done, the following worked out nicely at the end:
1. Add WRC to the correct styles. (I am *neurotic* about getting my style inheritance right. Since in this article both Hebrew and Arabic text appeared in different situations, I could set the WRC to only one style, and the rest also got it from there.)
2.  Select all text and blindly set its character direction to Left-to-Right.
3. Search for continuous spans of Hebrew and Arabic (which may include spaces and the occasional punctuation) and apply the right character set for the script to this. At this point I could either include or exclude spaces, periods at end, etc. by manually verifying if the GREP search matched the correct phrase.
At a couple of positions I encountered the "Operator Error", where a single space was *not* included inside a long RTL phrase -- but only because in a case like this I do not trust my senses nor InDesign, and verify Each Seperate Phrase against the original copy ...

Similar Messages

  • Flash CS4 Text Layout Component Problem

    Hi,
    We are trying to use multiple instances (around 25) of Flash
    CS4 Text Layout Component in one file to display arabic text. It
    works fine for some random number of instances. However, it gives
    problem if that number increases (The text doesnt show).
    Any help will be highly appreciated.
    Thanks!

    If you're referring to this:
    http://labs.adobe.com/technologies/textlayout/
    Then that's still in beta and you should take your discussion
    to the beta forum on that link.

  • Help with problem specifying text properties (style & antiAliasMethod)

    I would be very grateful if someone could help me figure out what I am doing wrong in specifying certain text properties, namely style and antiAliasMethod.  I have tried many different things and consulted the JavaScript Reference Guide, Tools Guide and PS CS4 Scripting Guide, as well as several example scripts, but I can't seem to find the information needed.
    The snippet of code below adds a text layer to a document and places text on it;  What I want is white Arial bold 10 point text with no antialiasing (this would appear as "none" in the PS CS4 text tool dialog).  This code does everything except get the bold property and the antialiasing = none property.  Instead, what this code produces is white Arial normal (not bold) crisp (not none) text,
    My attempt to get no antialiasing instead of "crisp" causes an execution error, so that line is commented out below.  The line setting style to "BOLD" does not create an execution error, but it doesn't give me bold, either (instead I get normal).
    I am certain these errors mean I do not understand the correct way to express the code to set these properties.  Can someone set me straight about how to do this?
    Thanks.
            // Create a new text layer at the top of the document
            var myLayerRef = newDocRef.artLayers.add();
            myLayerRef.kind = LayerKind.TEXT;
            myLayerRef.name = "Test";
            var myTextRef = myLayerRef.textItem;
            // Set the text color, font, size, etc.
            var textColor = new SolidColor;
            textColor.rgb.red = 255;
            textColor.rgb.green = 255;
            textColor.rgb.blue = 255;
            myTextRef.color = textColor;
            myTextRef.font = "ArialMT";
            myTextRef.style = "BOLD";
    //        myTextRef.antiAliasMethod = "NONE";
            myTextRef.size = 10;
            // Set the text position, blend mode and opacity
            var tx = 10;
            var ty = 50;       
            myTextRef.position = new Array(tx,ty);
            myLayerRef.blendMode = BlendMode.NORMAL;
            myLayerRef.opacity = 100;
            // Insert the text
            myTextRef.contents = "Hello World";

    Update:
    I discovered how to fix both problems myself.
    The antialiasing was fixed by statement: myTextRef.antiAliasMethod = AntiAlias.NONE;
    The bold problem was fixed by changing the font name to "Arial-BoldMT" and deleting the statement which attempted to set the style to "BOLD".
    Thanks for your interest.  No further help is needed on this issue.

  • If pdf generated with Bullzip, opens with problems in text (missing, weird characters, etc...)

    pdf opening in new tab shows problems with text. If pdf was generated with Adobe acrobat, works fine. If pdf generated with Bullzip, opens in new tab, but with problems.

    hello lwhitman, the pdf preview in firefox is still under very active development. if you find any issues please report them at https://github.com/mozilla/pdf.js/issues & provide a sample pdf-file which shows the problem.

  • Loading text file with flash lite 3.0 problem

    Hello,
    I recently ran into a problem with loading a plain text file with Flash Lite 3.0.
    I know there is a way to load name/value pairs using LoadVars class or XML file using XML class. Both methods work great, but these classes parse the data loaded and I need to load just a plain text - no pairs or xml structure. (its because Im loading specific file format, so I can't make any changes to it)
    There is a simple way how to achieve this in Flash using Actionscript 2 by extending the LoadVars class and overriding the onData() method. I used it plenty of times and it works fine.
    There is an example of implementation:
    // the PlainData.as file
    class PlainData extends LoadVars {
        function onData(str) {
            trace(str)
            this.onLoad(true);
    // now in the main file
    var my_data:PlainData = new PlainData();
    my_data.load("my3dmodel.obj");
    This code traces unchanged content of my3dmodel.obj file.
    The problem comes when I try to run this code using Flash Lite 3.0. The code stops working just by changing player version in publish settings to Flash Lite 3.0. It doesnt display any error, but also doesnt trace any content.
    Is there a reason why you cant override onData method in LoadVars class in lite version of flash or am I doing something wrong?
    (also overriding onLoad() method works fine in Flash Lite)
    Ondrej

    Thanks Man
    But i m very unhappy !!! :-(
    1M data to transfer my mp3 files is very small !!! hehehe
    Thanks a lot
    See ya
    Carlos Eduardo Burko - Curitiba - Brazil - Macromedia
    Certified Professional
    "biskero" <[email protected]> escreveu na
    mensagem
    news:e98nrb$a6e$[email protected]..
    > Ciao Carlos,
    >
    > yes you can load mp3. The only issue is that the FL2
    will need to load the
    > entire mp3 in memory which mean you are limited to the
    avalable memory and
    > also
    > there is a limitation of 1M data transfer.
    > Try to create a sample application to test it. You need
    to use the
    > loadSound
    > API.
    >
    > Alessandro
    >

  • How do i control 2 text boxes with 1 scroll bar? (CS4)

    I want to control 2 Dynamic Text boxs with the 1 scroll bar component? I want them to scroll simultaneously with the user only needing to use the one component. Thank you in advance for your help

    The textfields should have the same number of lines.  You can have the scrollbar (sb) assigned to one textfield (t1) and then have an event listener/handler for the scrollbar adjust the other textfield's (t2) scrollV property to match the first one's scrollV property:
    import fl.events.ScrollEvent;
    sb.addEventListener(ScrollEvent.SCROLL, adjustTs);
    function adjustTs(evt:ScrollEvent):void {
        t2.scrollV = t1.scrollV;

  • Making Rich Text Editor with PHP in Dreamweaver  - Problem with CKEditor...

    Hi,
    I am developing a website in Dreamweaver and using the platform of PHP and MYSQL. I need to develop a Rich Text Editor just like the one I am typing at the moment. With my recent searches I have come across with CKEditor as one of the possibilities to add a Rich Text Editor to my website. I have seen older versions of CKEditor also known as FCKEditor which I believe unfortunatley is out of date and obsolete now (discontinued). I cannot find any of the downloads now from anywhere on the web.
    I can find FCKEditor tutorials with PHP,  but can not find CKEditor tutorials for PHP (when I try googling it, it always gives me FCKEditor page). Can anyone please help me and tell me if I can still make Rich Text Editor using CKEditor and PHP?
    If yes, please guide me how? Any tutorials or reading material will be very helpful.
    Regards,
    Bilal . Khan

    Yes, you absolutely can use CKEditor to create a rich text editor with PHP/MySQL.I have tried several editors and it's my choice.
    Here is a link to the documentation page:
    http://docs.cksource.com/
    CKFinder is also very good in conjunction with CKEditor. Although it costs $59/per website, it's better than the free alternatives.

  • Access Web App - Need some advice with query (text to number problem)

    In an Access Web App I want to create a query.
    I have two tables which are related but in a bit complicated way. For some reason I have a text field in which I save a number. This number relates to the ID of another table. When I combine these two tables in a query, it's not working because the textfield
    cannot query the (ID)number field.
    Is there a way, in this query so that I covert the text field to a number so the query will work?
    I tried to do it with the "Parse" function but no luck, so far.
    Thanks, Mike

    Hi Mike,
    Based on the description, you want to create a query by joining a text filed with number filed?
    Did I understood correctly? If so, as far as I test, it works in Access 2013 web app. Here is the screen shot for your reference:
    If I misunderstood, please feel free to let me know.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Problem crating text index with PREFIX_INDEX option

    I am trying to create a text index with prefixes option for use in wildcard search scenarios.
    Here is the code I use:
    connect CTXSYS/*******
    BEGIN
    ctx_ddl.create_preference('wildcard_pref', 'BASIC_WORDLIST');
    ctx_ddl.set_attribute('wildcard_pref','PREFIX_INDEX','TRUE');
    ctx_ddl.set_attribute('wildcard_pref','PREFIX_MIN_LENGTH',3);
    ctx_ddl.set_attribute('wildcard_pref','PREFIX_MAX_LENGTH',8);
    ctx_ddl.set_attribute('wildcard_pref','SUBSTRING_INDEX','YES');
    END;
    And preference is created
    SELECT PRE_OWNER, PRE_NAME FROM CTXSYS.CTX_PREFERENCES;
    PRE_OWNER PRE_NAME
    CTXSYS WILDCARD_PREF
    CTXSYS DEFAULT_STORAGE
    CTXSYS DEFAULT_CLASSIFIER
    Now when I log as one of the database users and try to create the index,
    I got this:
    create index wildcard_idx on MY_Table(Name)
    indextype is ctxsys.context
    parameters ('WORDLIST wildcard_pref') ;
    create index wildcard_idx on MY_Table(Name)
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-10700: preference does not exist: wildcard_pref
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 364
    What I am doing wrong ? Keep in mind that I was able to create a text index without the prefixes, but a lot of the searches will be based on patial word search.
    Eventualy I would also like to make those indexes be tansactional and work as a datastore (multiple column search)
    Thanks.
    Stefan

    Problem solved.
    Atrributes and preferences had to be created by the same user creating the index.
    Log as sysdba and
    GRANT EXECUTE ON CTX_DDL TO <user_that_creates_index>
    And it works.
    Message was edited by:
    Stef4o

  • Will Dreamweaver CS4 work properly with 10.6.1 Snow Leopard?

    Hello
    Can anyone tell me please, if Adobe Dreamweaver CS4 work properly with my MacBook OS 10.6.1 Snow Leopard? Adobe state "Mac OS X v10.4.11–10.5.4" in the system requirements, but does this mean, in practise, that Dreamweaver will not work properly with Snow Leopard?
    I have tried to find info about this here, but have spend ages wading through masses of complaints about various applications crashing for people after they upgraded to 10.6.1 Snow Leopard. Personally, touch wood, I've had no problems with Snow Leopard, but I only really use it for Internet surfing and word processing (my work, music stuff on Logic Pro 8, is done on my Mac Pro which came with Leopard and which I am NOT upgrading - not yet!).
    I have also attempted to get an answer from Adobe - I 'phoned their "Pre-sales enquiries" number 0800 028 0148 (in the UK) and spoke to someone who sounded as if she was on the moon and who clearly had absolutely no idea what I was talking about. I gave up with them! They didn't give an email address to ask on.
    I'd be very grateful if anyone can give a clear, authoritative answer please - if possible.

    I've been a Mac user since 1987 and have never upgraded the OS too soon after a new version was launched. Any new OS, like new houses, will have a 'snagging list' - unforeseen problems that arise and need to be sorted before your purchase is truly habitable and functions as expected.
    But the stability of OS X 10.5 paved the way for my lapse of judgement when I upgraded to Snow Panther last week, while its compatibility with some major software is still clearly too buggy.
    I've been using Dreamweaver (DW) CS4 successfully on OS X 10.5 for some time. Since installing OS X 10.6.1 I now have problems with DW, which I've alerted Adobe to.
    When using Design View in DW CS4, any formatted text - from html tags to css tags - disappears from the Design view. The code appears correctly in the Code window and even if you highlight text that has coding attached in Code view - eg text with a url link attached - the Design view continues to ignore it and removes the text from its view. I've discovered that my heading tags (h1, h2, etc) all make the text disappear in Design view in a way that would be the envy of members of the Magic Circle! The only thing that seems to get through is text that is surrounded by paragraph tags.
    Thing is that 'Preview in Browser' shows the page correctly (except in Opera, which I've only installed since installing Snow Leopard, so I can't say how this displayed in the previous OS versions).
    Also when I upload the site to the server it all seems to display more or less as it should.
    So currently it seems that DW CS4's Design view is no longer WYSIWYG! Expect to find lots of text hidden in Design view and have to use Code view much more.
    It would be nice to think that Apple and Adobe would talk to each other and work it out between them.
    re: Dreamweaver, I'd check back to Adobe.com regularly to see when they upgrade the OS requirements to 10.6.1 (I hadn't spotted before I bought Snow Leopard that they only go up to 10.5 in their OS recommendations).
    My advice if you're thinking of upgrading to Snow Panther: delay it until it more of it works compatibly with your major applications. Check the OS spec from each software manufacturer first. Meanwhile I'll just have to wait patiently for Apple & Adobe to get their act together...
    Message was edited by: bcmartin

  • Why does Illustrator CS4 save pdfs with clipping paths and make rasters of gradient areas

    I am on a IMAC and upgraded to 10.6.8 Jan 2014. I am using CS4 Illustrator to create with. When i save my work as a pdf then reopen the pdf in Ill to make changes, the whole page has:
    A.) Multiple clipping paths around it
    B.) Most text has now become outlined. Not editable anymore.
    C.) Gradient areas have multiple clipping paths of the single gradient area
    D.) The gradient areas now become rasterized.
    This is very frustrating as now all of my marketing files, some 300+, are worthless. I don't know where to look anymore to find the problem.
    Please help.
    Thank you very much

    John,
    I have the presets as you have shown. I had been editing the supplied items as you suggested. Then figured i should ask the questions of those who are better than I.
    But still a bit confused as to why the new save places clipping paths around the document.
    Thank you John and Monika for your help.
    why does Illustrator CS4 save pdfs with clipping paths and make rasters of gradient areas
    created by John Mensinger in Illustrator - View the full discussion
    I do a save as "pdf" in the format pull down tab. I save to a folder on the hard drive. Where is the "Illustrator editability" check box? I presumed it is in Acrobat some where
    but i seem to be lost.
    It is in Illustrator's Save Adobe PDF dialog, which pops up before the saved file is written.
    https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6439399-644928/450-397/Untitl ed-1.jpg
    Sorry i didn't mention this, but this seems to have occurred when using images and text from provided pdfs.
    That's a critical fact. If you didn't do the original save, the above is moot, and it's too late to exercise any control over the save process. Someone else failed to save for editability. The only thing you can do is clean up/repair the content, (release clipping masks, rebuild rasterized elements, expand objects, etc.), and save correctly as AI. Then, if necessary, re-save as PDF with the correct settings.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6439399#6439399
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Illustrator by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • CS4 paragraph styles indentation problem

    CS4 paragraph styles indentation problem: indentation specifics abruptly APPEAR differently but read the same (in the paragraph style pallet) from page 5 to 6 and beyond. (There is no character style applied to any of the text, and no change to the page margins. The same Master page is applied to all.) On page 5 when I pull the text box down, the type is indented correctly, but when I flow it to page 6, it changes to a different indentation and looks wrong for the style.

    Here it is with the text block on page 5 pulled down to reveal correct indentation formatting, but still off on page 6.

  • Read Only Display of Radio group and Text area with counter not working

    Hello,
    I am using Apex 3.2, with 10g for the database
    I have this form, with fields that will set to read only when status = 'closed'
    All of the fields display as read only except for 2. I cannot figure out why this is not working correctly.
    1st field is Issues that is a text area with character counter, with a sql query behind it, that is set to null unless the query is pulling in the data.
    2nd field is Status which is a radio group that will not display as read only when status = 'closed'
    I have other fields on the form with the same format and they change to read only when the status = 'closed', I have even copied the pl/sql expression from one field to these fields and it still doesn't work correctly. I have also tried javascript for an on load event, which works, but once I click on the save button, it disables all of the page items, which works correctly, but I purposely forget to enter information, to make sure the validations are firing correctly, which it does, but the script disables everything, not allowing me to correct the errors. The javascript is firing on the on page load event.
    Any help on this is greatly appreciated.
    Mary

    Dung,
    That API seems to have a bug, it returns true/false/null, so you could use 'return not nvl(htmldb_util.current_user_in_group(p_group_name => 'APP Admin'),false)' to get a false value.
    Unfortunately there's another problem: using the read-only attributes for checkbox or radiogroup item makes them hidden. My suggestion would be to create another item that has disabled="disabled" in the HTML Form Element attribute in the item definition and display that item or the non-disabled item alternately, using conditions based on the current_user_in_group logic.
    Scott

  • Reading dilimited input from a text file with tokenizer

    i am trying to read in a text file with the following structure: 2 integers on each line with comma as the delimitor.
    i am using the BufferedReader stream and Tokenizer to detect ",".
    try {
    BufferedReader in = new BufferedReader(new FileReader(filename));
    //read in the data file
    while ((s = in.readLine())!= null) {
    int i = 0;
    for (i = 0; i < 100; i++) {
    t = new StringTokenizer(s,",");
    A1 = Integer.parseInt(t.nextToken());
    catch (IOException e) {System.err.println(e);}
    When i print out A1[i], it only reads the last line of the text file. Please tell me what's wrong.
    Also i'd really like A1[i] to store the integer before the comma and another array A2[i] to store the integer after the comma. Please help.
    Thanks.
    p.s. A1 and A2 are arrays...when i previewd message in Netscape 7 it left out the brackets and the index....

    What is the for i loop for? If it is to read the next line from the file, then the while loop has taken care of it. Other than this there should be no problem with the rest of the code.
    Just add another line to store the next token into A2.

  • When I create a text message from my contact on my iphone 5, the contacts mobile number appears and not there name.  But when they respond to my text, is shows up as a new text message with there name.  How do I fix this?

    When I create a text message from my contact on my iphone 5, the contacts mobile number appears and not there name.  But when they respond to my text, is shows up as a new text message with there name.  How do I fix this?

    Double click the home button and swipe up the messages app to stop it, then open the app again. This pretty much completely stops the process and freshly opens it again, resolving problems at times. I have had this happen before as well on my iPad, I get a banner, check messages, and nothing new is there.
    If that doesn't work, close the app like suggested above, but then restart the phone by holding down the home and lock button for 10-15 seconds until the apple logo appears.

Maybe you are looking for

  • Use of SQL Profiles where each schema has very different data distribution and volumes

    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production PL/SQL Release 11.2.0.3.0 - Production CORE    11.2.0.3.0      Production TNS for Linux: Version 11.2.0.3.0 - Production NLSRTL Version 11.2.0.3.0 - Production Our architect

  • The 'popping' sound

    I have the problem with strange intermittent small popping sound (which has been mentioned in other posts) It comes from the top hand left corner of the keyboard and seem to have noting to do with the speaker (it's occurring regardless of volume and

  • CM 5.2.1 upgrade

    Tride to do the 5.2.1 upgrade tonight. Had shut down all services and ran the update. But it failed with Services still locked. Canclelled the upgrade but the logs do not show the files which are locked. Has any one experienced a similar issue. Thank

  • Missing table begin XSL context for: ?end if?

    I have 8 if clauses with grouping sub grouping data shown. when I try to validate my RTF file I am getting following error msg: [061112_073853972][][ERROR] [Line 3322.83] Missing table begin XSL context for: <?end if?> [061112_073854018][][ERROR] [Li

  • Handling Unit procedure

    Hi All, please explain the handling unit procedure and its link to QM module. Regards, DTD