How to change the direction of my application ?

apex 4.0 , db11gxe , firefox 24 ,
hi all,
how to change the direction of my application from left to right to right to left of vice versa ?

newbi_egy wrote:
sure i did , i found nothing ,
provide me with a link if you have one
thanks
Hi,
That's strange.
Search works just fine for me
https://forums.oracle.com/search.jspa?view=content&resultTypes=&dateRange=all&q=rtl&rankBy=relevance&contentType=all&con…
Regards,
Jari

Similar Messages

  • How to change the direction text writen!

    i will write a notepad in pure java. but i will make it like this: item is top to bottom, and line is left to right. This is mongolian. but i dont know how can change the direction of text writen.
    please tell me!

    Here's what you should do:
    suppose your string is "abc" and you want to display that reversed:
    1. reverse the string
    2. find where your start point is (where you're going to draw 'a'
    3. Use FontMetrics to calculate the offset from the start point you need to make to print the string where it should be

  • How to change the theme of discussion application dynamically?

    We have a requirement such that we should be able to change the theme of owc_discussion application based on user locale. e.g. if the locale is arabic I want to display the forum UI rendered right to left.
    We will have separate categories or communities to cater to people from different locales. Which means that as soon as user clicks on the category url the theme should be dynamically changed. How can we do this?
    -Pratap

    Hi
    You can create and use your custom themes but I am not sure exactly about your requirement, please check OWC Discussions admin guide for custom theme.
    Regards
    Sumit

  • How to change the direction of movement in atable from left to right?

    As the title says i want to change the movement direction in the cells of a table in pages when i click tab key from "left to right" to "right to left", is that possible?

    It seams that we aren't using the same application.
    In mine, if the cell C3 is selected, pressing shift + tab select the cell B3 which is what you wanted in your original post (or I understood it wrongly).
    If what you want is the ability to insert a new row above the current one or at top of a table, you can't do that this way.
    Same response if you want to insert a new column to the left of the table.
    To do that, the soluce is to select the top row or the leftmost column.
    There is a funny bug in the menu items.
    If your table has a header row, entering the menu Format > Table, we get four items:
    Insert new header above
    Insert new header below
    if we are in the header row
    or
    Insert new row above
    Insert new row below
    Insert a column before
    Insert a column after
    These four menus items have shortcuts :
    option up arrow
    option down arrow
    option left arrow
    option right arrow
    If the table has no header, the menu items are :
    Insert new row above
    Insert new row below
    Insert a column before
    Insert a column after
    None of them display a shortcut *_but the shortcuts are active_*
    Yvan KOENIG (VALLAURIS, France) samedi 11 septembre 2010 23:52:27

  • How to change the direction of a moving object

    I am trying to make a connect four program for class, and i am trying to make it so the red check piece move down. But instead it move left n right -.-, ive tried changing the coordinates but then the piece would just spin in circle or spins out of control. Here is the code i have right now, can someone help me please =D .
    import java.awt.*;*
    *public class Circle{*
    *private int centerX, centerY, radius;*
    *private Color color;*
    *private int direction, velocity;*
    *private boolean filled;*
    *public Circle(int x, int y, int r, Color c){*
    *centerX = x;*
    *centerY = y;*
    *radius = r;*
    *color = c;*
    *direction = 0;*
    *velocity = 0;*
    *filled = false;*
    *public void draw(Graphics g){*
    *Color oldColor = g.getColor();*
    *g.setColor(color);*
    *// Translates circle's center to rectangle's origin for drawing.*
    *if (filled)*
    *g.fillOval(centerX - radius, centerY - radius, radius*  2, radius  *2);*
    *else*
    *g.drawOval(centerX - radius, centerY - radius, radius*  2, radius  *2);*
    *g.setColor(oldColor);*
    *public void fill(Graphics g){*
    *Color oldColor = g.getColor();*
    *g.setColor(color);*
    *// Translates circle's center to rectangle's origin for drawing.*
    *g.fillOval(centerX - radius, centerY - radius, radius*  2, radius  *2);*
    *g.setColor(oldColor);*
    *public boolean containsPoint(int x, int y){*
    *int xSquared = (x - centerX)*  (x - centerX);
    int ySquared = (y - centerY)  *(y - centerY);*
    *int radiusSquared = radius*  radius;
    return xSquared  +ySquared - radiusSquared <= 0;+
    +}+
    +public void move(int xAmount, int yAmount){+
    +centerX = centerX+  xAmount;
    centerY = centerY  +yAmount;+
    +}+
    +public int getRadius(){+
    +return radius;+
    +}+
    +public int getX(){+
    +return centerX;+
    +}+
    +public int getY(){+
    +return centerY;+
    +}+
    +public void setVelocity(int v){+
    +velocity = v;+
    +}+  
    +public void setDirection(int d){+
    +direction = d % 360;+
    +}+
    +public void turn(int degrees){+
    +direction = (direction+  degrees) % 360;
    // Moves the circle in the current direction using its
    // current velocity
    public void move(){
    move((int)(velocity  *Math.cos(Math.toRadians(direction))),*
    *(int)(velocity*  Math.sin(Math.toRadians(direction))));
    public void setFilled(boolean b){
    filled = b;
    import javax.swing.*;*
    *import java.awt.*;
    import java.awt.event.*;
    public class ColorPanel extends JPanel{
    private Circle circle;
    private javax.swing.Timer timer;
    public ColorPanel(Color backColor, int width, int height){
    setBackground(backColor);
    setPreferredSize(new Dimension(width, height));
    // Circle with center point (25, 100) and radius 25
    circle = new Circle(25, height / 2, 25, Color.red);
    circle.setFilled(true);
    // Aim due west to hit left boundary first
    circle.setDirection(90);
    // Move 5 pixels per unit of time
    circle.setVelocity(5);
    // Move every 5 milliseconds
    timer = new javax.swing.Timer(5, new MoveListener());
    timer.start();
    public void paintComponent(Graphics g){
    super.paintComponent(g);
    circle.fill(g);     
    private class MoveListener implements ActionListener{
    public void actionPerformed(ActionEvent e){
    int x = circle.getX();
    int radius = circle.getRadius();
    int width = getWidth();
    // Check for boundaries and reverse direction
    // if necessary
    if (x - radius <= 0 || x + radius >= width)
    circle.turn(90);
    circle.move();
    repaint();
    }with that code my circle just spins back n forth rapidly. How can i make it so it drop to a certain location everytime i click the mouse?

    lilkenny1337 wrote:
    I am trying to make a connect four program for class, and i am trying to make it so the red check piece move down.
    How can i make it so it drop to a certain location everytime i click the mouse?Try this:
    public class ColorPanel extends JPanel {
        private Circle circle;
        private Timer timer;
        private int stepX, stepY, xM, yM;
        public ColorPanel(final Color backColor, final int width, final int height) {
            setBackground(backColor);
            setPreferredSize(new Dimension(width, height));
            // Circle with center point (25, 100) and radius 25
            circle = new Circle(25, height / 2, 25, Color.red);
            circle.setFilled(true);
            // Aim due west to hit left boundary first
            circle.setDirection(90);
            // Move 5 pixels per unit of time
            circle.setVelocity(5);
            // Move every 5 milliseconds
            final MoveListener ml = new MoveListener();
            timer = new Timer(5, ml);
            addMouseListener(new MouseAdapter() {
                @Override
                public void mousePressed(final MouseEvent e) {
                    if (timer.isRunning()) {
                        return;
                    xM = e.getX();
                    yM = e.getY();
                    int xC = circle.getX();
                    int yC = circle.getY();
                    stepX = (xM - xC) / 10;
                    stepY = (yM - yC) / 10;
                    timer.start();
        @Override
        public void paintComponent(final Graphics g) {
            super.paintComponent(g);
            circle.fill(g);
        private class MoveListener implements ActionListener {
            public void actionPerformed(final ActionEvent e) {
                if ((stepX > 0 && circle.getX() >= xM)
                        || (stepX < 0 && circle.getX() <= xM)) {
                    stepX = 0;
                if ((stepY > 0 && circle.getY() >= yM)
                        || (stepY < 0 && circle.getY() <= yM)) {
                    stepY = 0;
                if (stepX == 0 && stepY == 0) {
                    timer.stop();
                    circle.setLocation(xM, yM);
    /* add this method in the class "Circle":
        public void setLocation(int xM, int yM) {
            centerX = xM;
            centerY = yM;
                } else {
                    circle.move(stepX, stepY);
                repaint();
    }

  • How to change the font of java application?

    Hie... I have created a simple java application. Now , i need to change the font to my native language (Nepali Unicode), ie, i want to change the font of the buttons and message box to Nepali? Can anyone help?

    Component.setFont(...)

  • How to change the direction of the Spry menu?

    Is there a way to change the SpryMenuBarVertical menu to fold
    out to the left? I am using this menu on the right side of the
    website and it now folds out to the right (standard). I have tried
    for hours to change the css (float left, etc) but must have
    overlooked something. Can somebody please help?
    This is what it looks like so far...
    http://www.norske.nl/zomer/tours/auto01.html
    (Click on the orange field: "50 Autotours")

    Is there a way to change the SpryMenuBarVertical menu to fold
    out to the left? I am using this menu on the right side of the
    website and it now folds out to the right (standard). I have tried
    for hours to change the css (float left, etc) but must have
    overlooked something. Can somebody please help?
    This is what it looks like so far...
    http://www.norske.nl/zomer/tours/auto01.html
    (Click on the orange field: "50 Autotours")

  • How to change the location of "Mobile Applications" in iTunes Library?

    Hi,
    Arch: PC i686
    OS: WinXP-Pro
    iTunes: 8.0.2.20
    I'm trying to move my "Mobile Applications" folder away to another drive to save some space because there's a quota problem on my C drive. However after searching I only found how to move 'Music Folder' away instead of the entire iTunes library.
    My understanding is iTunes needs (maybe hard-coded?) its library at "My Documements\My Music" to store the db and xml files. For potentially large music files, the "iTunes Music" can be moved away (pointed to another location).
    My question is can this also be done on "Mobile Applications" folder?
    The most desirable solution for me is to be able to create a single library folder on my external drive, and I can choose which library to connect/sync to in iTunes on different computers. Could you please advice how?
    Many thanks,
    Alex

    Move the itunes Library.itl file to your exHD.
    Then to get itunes to start using it from that new location, press *and hold* the shift key while starting itunes. Choose "use existing library" and browse out to the ITL file that is now on the exHD.
    Future app downloads will go to the Mobile Applications folder created there. It will also start downloading the itunes store artwork to the exHD.
    You can try downloading a free app to test it.

  • How to change the direction of play on an ipod playlist/podcast

    I play a lot of Podcasts on my Classic Ipod 160, and something that's bothered me for ages.
    If I have a particular podcast with more that 1 episode on it to play, I will usually want to play them in order from oldest to newest.
    However, the ipod only wants to play from the top of the list to the bottom, the top being the newest episode, the bottom being the oldest.
    So, I end up having to scroll down to the bottom, play the episodes one at a time, and manually move my choice of episode to the next newest after the episode I was listening to finished.
    When I got my first ipod, a looooonnnnnggggg time ago, you could start playing a particular podcast at the oldest episode, and the ipod would just move on to the next newest episode in a podcast automatically.
    Then, at some point, at some particular ipod software upgrade, or itunes upgrade, The ipod stopped functioning the way I wanted it to, and I had to go about playing them the awkward way. That was about 2 ipods ago.
    Now, my current Ipod, on 1 particular podcast, is allowing me to play the podcast episode list in the old way that I want, where I just select the oldest episode, and I can just let it play on its own, and the list will move on to the next newest episode on its own.
    This makes me think that there may be someway of controlling the directionality of play on a podcast episode list.

    Hi Frank,
    this is not easy to talk with words. First, since your antennas are articulated, you can achieve any coverage without moving the AP itself.
    The coverage patterns seen here :
    http://www.cisco.com/en/US/docs/wireless/antenna/installation/guide/5135dw.html
    can be identified like this :
    Place the ap on a desk. Cisco logo facing upwards (ceiling)
    Antennas are straight up (like they would be if they were not articulated). The antennas pointing like fingers to the ceilign.
    Then you have the coverage seen on the diagrams of the link I pasted.
    H-view is a top view (you are viewing the AP from the ceiling on your desk). You can see it's radiating in all horizontal direcitons.
    E-view is a side view (you are sitting on your chair looking at the AP at the same heigh as it) : You can see it's radiating left and right but not so much up and down of the AP.
    So this is a "floor" coverage.
    If you want a coverage "above and below" the AP then you should articulate the antennas to be parrallel to the AP (pointing the wall then). Direction will nto matter.
    I hope it's clear. I'm sorry I'm not using your diagrams as reference as I didn't really understand their significations as it's hard to view this kidn of stuff without 3d view :-)
    Nicolas
    ===
    Don't forget to rate answers that you find useful

  • How to change the direction of text writing: item is top to bottem

    hi, i will make a notepad. and i will make its text's direction: item is top to bottem and line is left to right.
    i cant do this, please help me!

    What you need is:
    http://www.macdevcenter.com/pub/a/mac/2002/03/22/vertical_text.html
    That gives you a very nice vertical text, with support for rotation
    control so Katakana and Arabic style writing can be done properly.
    James.

  • How to change the Oracle Server Hostname

    Good Day every one,
    Am working on Oracle Application 12.1.3
    And Database 11.2.0.3
    And OS RedHat linux 6.1
    I want to change the Server host name how can I do this in simple steps ?
    Is there is any pad impact on my server or application ?
    Regards

    Please also see:
    How to change the hostname and/or port of the Database Tier using AutoConfig (Doc ID 338003.1)
    How to change the hostname of an Applications Tier using AutoConfig (Doc ID 341322.1)
    Or, use Rapid Clone.
    Rapid Clone Documentation Resources For Release 11i and 12 (Doc ID 799735.1)
    Cloning Oracle Applications Release 12 with Rapid Clone (Doc ID 406982.1)
    Thanks,
    Hussein

  • Change the direction of a behavior

    Does anyone know how to change the direction of a behavior, for example, the glowor other text effect, it seems to start at the end of a word. Can this be changed to start on the first letter of a word, then move to the last letter?

    The Direction parameter reverses the direction the effect plays, but not in the way it seems. When you switch from left to right or right to left, the effect goes in reverse. In other words, Say you apply a "Breaking News" behavior to a line of text. It defaults to revealing the text from left to right. If you change the direction to Right to Left, it changes direction and removes the text instead of reveals. Anyone know a way around this? What if I want ot reveal from right ot left?
    Thanks
    -Jason

  • HoW to ChaNGE the text in the mobile application to be in MulTi-CoLoR text

    _*  Do anyone can tell me how to change the text in the mobile application to be in multi-color text, to make it more interesting and increase readability?
    Is it using the Graphic's paint() method? or any better suggestion?
    Please give the short example if can?
    Please help... "_"
    Hearing from u all soon...@_@
    thanks....

    Go into outline view. If you can see the outlines of the letterforms, you can't just change the text. If the letterforms are solid black, take the type tool, select the text and type yours.
    Anyway you can just select the letters, take the type tool and type new text.
    Working with the type tool is a basic. Please see the manual for details

  • How do you change the direction of a Tween Wipe effect

    Hi all,
    Completely new to the forums and I hopefully my query is straight forward.  How do you change the direction in the pre-built tween effects available within Flash CS3 (primarily the Wipe effect).  Example code:
    var Animate_Box:Tween = new Tween(Box, "height", Strong.easeInOut, 0, 200, 1, true);
    OR
    var Animate_Box_2:Object = {type:Wipe, direction:Transition.IN, duration:1, easing:Strong.easeInOut};
    TransitionManager.start(Box_2, Animate_Box_2);
    Many thanks in advance.
    Kam
    ANSWERED:
    Sorry for posting something so pointless!
    You simply add 'startPoint:5' onto the end i.e.
    var Animate_Box_2:Object = {type:Wipe, direction:Transition.IN, duration:1, easing:Strong.easeInOut, startPoint:5'};
    TransitionManager.start(Box_2, Animate_Box_2);
    startPoint:5' = can be any number depending on the direction of the Wipe you want.
    Thanks,
    Kam

    What you really want is a way of automatically mirroring the the X and/or Y coordinates of the keyframes within the effect. This ability would be very useful.
    But right now there's no way to do that. You'd have to do it manually. That effect actually uses the Slide parameter to generate the movement (instead of a discreet X/Y coordinate for the position.) Changing the first keyframe value of the Slide parameter to a negative number still doesn't give the effect I think you're looking for.
    So, it's probably easier to just rebuild the effect the way you want it from scratch.
    Bony

  • How can i change the direction of tab canvas in 10g ?

    hi all
    how can i change the direction of tab canvas in 10g at runtime i want to change the direction from left_to_right to right_to_left when i did that the form not appears well
    all prompts of item not dispalyed in order of its sequence ,in spite of that it works in 6i well and change direction without any problems
    i have been used set_canvas_property and set_view_property but it doesn't work
    can anybody help me in this mater?

    please can any body help?

Maybe you are looking for

  • My built-in webcam is not being detected by CyberLink Youcam

    My built-in webcam is not being detected by CyberLink Youcam (webcam) Pavilion dv6-6c10us

  • Imovie/Final Cut project compatibility

    Can you open Imovie digitized movie clips/bin in Final Cut Pro. I hope so because, I've digitized a ton of media into Imovie, which I'm going to end up editing on Final Cut Suite.

  • NOT able to connect my Black Berry Curve 3g to black berry desktop manager

    Hi , i purchased a new blackberry curve 3g yesterday ....i have to import all my contacts in bb so i downloaded the blackbery dektop manager and tried to connect my mobile with it ....when i pluged the cable inside my lappy due to my antivirus a star

  • 10.5.8 Firewall settings- need more info about

    Ok, I know that "Allow all incoming connections" does just that: nothing is refused. And I am clear on "allow only essential services" blocks everything except for some basic stuff. My question is this: on "set access for specific services and applic

  • Interface screen to Oracle database

    We are using oracle10g database. Customers calls ops team and ask about their security questions. Every time, we need to run the sql query and find answers for them. We are getting lot of request every day. I wanted to develop interface and i want op