Changing form display to right to left

Hi all
i've created a UDO form thourgh the UDO Form Generator. problem is i want the contols to appear from right to left instead of left to right.
do i have to set the controls manuly through the xml file. or is there another way.
i tried using screen painter but than the file loses its hierarchy display and becomes one long string which is unreadable.
appreciate the help
Yoav

Hi
I'm not sure what you exactly what you mean from right to left.  Do you mean the tab order, or do you mean the justifying of text.  Or the labels on the right perhaps ?

Similar Messages

  • Arabic Smartform - Display text right to left?

    I have been asked to investigate how to create some smartforms which will display the Arabic language reading right to left.
    I know how to create a smartform for different languages but I'm stuck on the right to left formatting.  It's not a case of just right justifying all the text, the words have to be displayed reading right to left.
    Any ideas?

    Thanks but I've just found out this is not the requirement.

  • How to change text to read right to left-InDesign CC 2014?

    How to change text to read right to left-InDesign CC 2014?

    I have described it here, step by step:
    How do I change text direction adobe indesign?

  • Change form display

    hi
    i have a j2me application with a display set to Canvas.
    when i try to change the midlet's display to another Canvas using
    the following command:
    Display.getDisplay(this).setCurrent(Canvas2);nothing happens.
    how can i efficiently change a display to another Canvas ?

    Hi,
    Refer this link
    http://help.sap.com/saphelp_nw04s/helpdata/en/89/d3e0fc3d5ef942b7af0260547d264e/frameset.htm
    Regards,
    Senthil K.

  • PDF form field alignment - Right to Left

    Actually I developed a form which pushes the entire PDF as an attachment by email when pressing on a send button created within the form.
    I have also added a text to appear within the email body message in Arabic language but its appearing on the left side of the screen and I want the alignment to be set by default to right.
    The code I use for the email body message to appear is:
    //  Set the body text for the email message
    var cBody = "\n\nشكراً على تفاعلكم و مشاركتكم.\n" +
                   "يرجى حفظ البريد المرسل كمرجع للبطاقة المرسلة";
    I noticed in outlook that the text direction is active once the pdf is ready to be pushed by email, hope this snap will clear it up for you guys.
    I still though need to add a script to make it appear on the right without human intervention.

    Well I dont think so since we can add to the sentences in the script spaces[ ], new lines [\n],etc.. then we should be able to align them somehow.

  • Orientation change button align from right to left

    Hi,
    On vertical view I want the button to be aligned to the right,
    and when is horizontal, align the button to the left
    I have put this code in the orientationchange event:
    if(window.innerHeight > window.innerWidth){
        sym.$("btnDeal").css('right', '10px');  // vertical
    } else {
       sym.$("btnDeal").css('left', '80px');  // horizontal
    I open the site in vertical mode, button looks good,
    change orientation to horizontal then the button change position, looks good
    now I put vertical again, this time the button is wrong, it stayed to the left, should go to the right.
    any change in the orientation the button keeps to the left
    please help, What Im doing wrong?
    thanks

    Please don't do that: https://wiki.archlinux.org/index.php/Fo … te#Bumping

  • Mail:  drawer/mail box panel display on right or left?

    Hello: Is it possible to switch the mailbox display panel to the right side? In Mail on Panther this was an option, but I can't find a way to switch the mail box panel or drawer over to the right side. Sorry if this is a repeat, I submitted this quesiton this morning and now don't see it on the list for some reason, must have not submitted it properly...
    Thanks,
    James

    No, that function was lost in Tiger, no idea why.

  • Changing form display

    Hi all,i want to ask.Suppose i got 3 forms/components that
    i've made.One is for the main page,one is for register,last one is
    for the members page.How to make the main page replaced with the
    register form when the user click on the register page like
    www.jooce.com..Thanks a lot...

    I didn't bother registering for that site to see exactly how
    they handle it but there are a couple fairly easy ways to
    transition from form to form. One is with show and hide effects
    that you can use on individual containers (wrapping in form in a
    canvas or something) and transitions between states. You could also
    use some transition effects between viewstacks I expect; that's
    just not something I've played with much.

  • Right-to-left direction of forms 10g (RTL)

    Hi
    I want Change Right to Left All of Forms Applet then
    i changed BASEjini.htm , base.htm , basejpi.htm and Added Line
    <HTML DIR= RTL>
    and bounce application server (EBS 12.1.1) but not working .
    Please help me .
    Regards
    Adel

    hi
    i think
    If you set the Direction Property on forms level to right to left,
    the direction will change.I hope it will help u too.
    sarah

  • How Show Right to Left For All English Forms and Web ? R12

    Hi
    I want show All English Forms and Web Right to Left (same Arabic Forms) ?
    need a Configure where show All Forms and Tab right to left.
    (Goal is Open same Arabic rigth to left and i translate labels by Personalization)
    Regards
    Adel

    Adel,
    I do not think this is doable as the the font direction is controlled by the session language you choose before logging to the application. If you login to the English interface, the English text will be from left to right, and for Arabic sessions the text will be from right to left. Displaying English forms from right to left can be done if you open the form using forms builder and set NLS_LANG to "ARABIC_AMERICA.<Character Set>", but to accomplish the same from the application I do not think it is possible. You could log a SR to confirm the same with Oracle Support.
    Regards,
    Hussein

  • Reliably calculating character bounds for Right-To-Left languages using flash.text.engine.* classes?

    I just filed a bug in the Adobe bugbase about this, but I thought maybe the community could help with a workaround (or point me in another direction if I'm looking at it wrong).
    I don't know an elegant way to describe the defect, but it's something like this:
    Create a Vector of ContentElements and add a TextElement containing a right-to-left string in a language such as Hindi (ex. "वह बाग़ में दोपहर का खाना ")
    Create a TextBlock with a GroupElement and use it to create a TextLine to display the right-to-left string
    Walk through each character in the right-to-left string and try to calculate its boundaries using the TextLine's "getAtomBounds" method.
    What I'm seeing in my test project is that the number of characters (atoms?) the TextLine reports is fewer than the number of characters that were in the original string. I was under the impression that TextLine would offer some method of automatically converting from a logical character index into a display index (to keep things simpler for the end user). That doesn't seem to be the case, and I don't see any way to use TextLine's methods to do that conversion.
    Am I overlooking something obvious?

    Update: I was missing something obvious!
    It seems like TextLine's getAtomTextBlockBeginIndex and getAtomTextBlockEndIndex methods were exactly what I was looking for. It just took me a while to find them and realize that. So to convert from a logical (unicode) character index to a display (atom) index, you can do this...
    private function getCharBounds( charIndex:int ):Rectangle {
         for ( var childIndex:int = 0; childIndex < textContainer.numChildren; childIndex++ ) {
              var textLine:TextLine = textContainer.getChildAt( childIndex ) as TextLine;
              for ( var atomIndex:int = 0; atomIndex < textLine.atomCount; atomIndex++ ) {
                   var charIndexRangeStart:int = textLine.getAtomTextBlockBeginIndex( atomIndex );
                   var charIndexRangeStop:int = textLine.getAtomTextBlockEndIndex( atomIndex );
                   if ( charIndex >= charIndexRangeStart && charIndex <= charIndexRangeStop ) {
                        var rectangle:Rectangle =
                             textLine.getAtomBounds(
                                  atomIndex );
                        var point:Point =
                             textContainer.globalToLocal(
                                  textLine.localToGlobal(
                                       new Point( rectangle.x, rectangle.y ) ) );
                        rectangle.x = point.x;
                        rectangle.y = point.y;
                        return rectangle;
         return null;

  • Rotating 10 number form right to left direction....Urgent

    Hello All,
    I am new to Java3D.
    I am facing some problem from long time in some visual effects.
    Recently I heard about Java3D and I think its better to ask help through this site.
    Here is the problem that I am facing.
    I am designing one site.
    On which the client wants to kept some animation images.
    As there company had already completed 10 years and he want to put 10years animation on there site.
    So is there a possibility to make the 10 years animation using Jave3D.
    What I have to do is I have to rotate 10 number from right to left continuously. What I mean is
    At starting 10 number had to display.
    Next 10 number have to start rotating from right direction 10--->
    Next 10 number have to view its back side after some moment as 01
    Next after some moment it have to come to its origional direction from left hand side as -->10
    So that the viewer can feel that 10 is rotating from right direction to left direction.
    ---------> 10 ---------->
    I know that there are too many graphic tools to develop this, but due to limitations in budget I have to complete with coding itself.
    Hope You all understood my problem and I will get the solution through all of you.
    Can any one suggest what to do, or coding if any.
    Thanks,
    RajivChowdary.

    Hello All,
    One of our friends didn't get what I am asking (with subject :- Rotating 10 number form right to left direction....Urgent), that's why I am explaining my problem again.
    Number (like 9 or 10 or 11 or...) has to rotate in 360 degrees.
    We are all familiar with rotating " 3D gif's" like rotating globe and email rotating in 360 degrees.
    Like wise I want to rotate numbers in 360 degrees using java3D.
    Set area size with 100 X 130 with some background color and 10 number with stand-alone position.
    Then 10 number have to start rotating in 360 degrees, starting from right direction to left direction, within the same place.
    And this process has to be going on until next page has called.
    This animation had to be placed before the company logo, notifying that out company had completed 10 years.
    I know that there are too many graphic tools to develop this, but due to limitations in budget I have to complete with coding itself.
    Hope You all got my problem.
    So please suggest or instructions what to do, or coding if any.
    Please explain in detail, because I am new to java3D
    Thanks,
    RajivChowdary.

  • "Right-to-left" languages causing formatting change

    Inserting Hebrew words into an English paragraph using the input menu causes formatting to change. I don't really know how to describe it well, but some have only a few words before it skips to the next line, etc.
    For example, this line would be changed to something like
    these
    lines
    when I
    add a
    Hebrew word here שףךדלגכ.
    I've tried other languages, and it seems to do this with all "right-to-left" languages, i.e. Arabic, Hebrew.
    Any ideas?

    I've had the same problem - this is definitely something Apple engineers need to tackle before the next increment.... We've been waiting too long! I've had it occur in my paragraphs as well, after inserting a Hebrew or Arabic word in the midst of English text..... Only, instead of single words or short phrases, I've had several lines broken down into seperate
    l
    e
    t
    t
    e
    r
    s.
    Very odd. Not all is lost, however: I have found so far that I can have a complete paragraph in either Hebrew or Arabic - by itself, no English inclusions - and that will format well.....
    For what it's worth, I tried the composing in TextEdit before copying and pasting suggestion, but no go.... Really odd, as TextEdit seems to have no difficulty at all displaying the mixed directional formatting. Apple engineers take note: If TextEdit can do it, why can't Pages?!!

  • Adobe form - Split internal table data & dis on the right and left corner

    HI ,
    I have a form where i am populating the data via an Internal Table.
    The concern i have is i have 100 rows in the table and i want to print the first 10 rows on the right hand side of the page and the next 10 rows on the Left hand side of the page. I want to do this dynamically on multiple pages during run time based on the volume of data in the internal table.
    I am sure i cannot dynamically change the interface of the form to allow multiple internal table , Please suggest if there is any other solution.
    Thanks in advance
    Tk
    Edited by: tarunk on Jan 16, 2012 5:56 PM

    Hi,
    Thank you  very much for the input, But my concern is
    I have a table with 120 records.
    i have three columns which i have it on the right side as well as on the Left side of the page.
    EX:
    Right Side                                                                          Left Side
    Col1 col2 col3                                                                    col1 col2 col3.
    Now what i want to do is the first ten rows of the internal table data i want to print it on the Right Side and the Next 10 rows on the Left Side in the same page .
    I want to do this on Multiple pages.
    please suggest.
    Thanks,
    Tk

  • Changing current display to a canvas subclass... still see the last form

    Hello,
    I'm sure most people can answer this in 10 seconds. I am changing the current display from a form to a canvas subclass in a midlet app. I keep seeing the last form displayed even though i assigned the initialized canvas subclass as the current display. Do I need to do something else to make the canvas visible? I pulled this source code right out of a game programming book.
    TestCanvas canvas = new TestCanvas();
    //game is a reference to the midlet
    game.getDisplay().setCurrent(canvas);
    I had the paint method in the canvas paint the back ground black, but I still see the form's image no matter what I do. Anyone know what I am doing wrong here? ... Thanks, Paul

    I figured it out, soory it was really stupid

Maybe you are looking for

  • What laptop to get for CS5 or CS6...

    Increasingly there appear questions about which laptop to get for CS5/6. First, the question is why a laptop and why not a desktop? Laptops are always at least 2 to 3 times slower than a desktop, they are significantly more expensive than a desktop w

  • How to install adobe contribute 6.5

    I purchased Adobe Contribute 6.5 on a different computer but need it download to this computer I am currently on. How do I download it to this computer?

  • No records were selected - S_P00_07000134

    Hi, I got "No records were selected" when I execute t code  S_P00_07000134 to view witholding tax report. This is the first time, I am running the t code for my user. Please advice whether I am missing any configuration which doesn't allow to execute

  • How to run TCK using Java Card Sun reference model from eclipse

    Hi all, can any one help me by giving an idea about running java card TCK using sun reference model from eclipse IDE. Thanks Murali

  • Rule based monitors (RZ20) - Show system availability for selected systems

    Hi experts, I'm new with CCMS monitoring and need an advice for rule based monitors. I want to create three alert monitors (RZ20). One for our developing systems, one for our quality assurance systems and one to monitor our production systems. For th