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

Similar Messages

  • 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

  • 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 paper format in SOST tcode from X_65_80 to X_65_266?

    I got data from OTF in SAPSCRIPT and send by email.
    How to change the paper format in SOST tcode from X_65_80 to X_65_255?
    I need to change it automatically from abap.
    Any suggestion?

    Hi,
           change line size and line count in report.
            By default report line size and line count is taken in printer
           settings
    REgards
    amole

  • How to change the browser used for Google search from context menu of selected text?

    How to change the browser used for Google search from context menu of selected text?
    It uses Safari. But I want to use Chrome (it's my default browser).

    How to change the browser used for Google search from context menu of selected text?
    It uses Safari. But I want to use Chrome (it's my default browser).

  • Is it possible to flip the multiple choice quiz "radio" button from left to right of the answers?

    Hello forum,
    I am using Captivate version 6.1.0.319 on a Windows 7 desktop PC and would like to know if it is possible to flip the multiple choice quiz "radio" button from left to right of the answers. I am working on a project that uses the "Require Right to Left composer" within the Global Preferences: General settings. The captions has been switched from left to right but the quiz answer radio buttons did not. Any help would be appreciated.
    Thanks, in advance. 

    Hello and welcome to the forum,
    I'm not aware of such a possibility. A workaround could be to create your own MCQ slides, using standard objects and widgets like the radiobuttons widget (there is an enhanced version created by Jim Leichliter) and advanced actions. These articles were written for previous versions, but can give you an idea about the work involved:
    http://blog.lilybiri.com/widgets-and-custom-questions-part-1
    http://blog.lilybiri.com/extended-widgets-for-custom-mcq-and-tf-questi
    Lilybiri

  • 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();
    }

  • HT3069 How to change the language for movies rented at German iTunes, watching in Denmark?

    I live in Denmark, but my iTunes account is in Germany. Furthermore I want to watch movies in English. Can I buy / rent movie from German iTunes and somehow change the language to english or other? I prefer to watch movies in an original language..
    Thanks for help!

    I know this is almost a year old, but I'd like to know the same thing. It seems the answer is that we can't do anything, but I'd rather ask.
    I'm from Brazil, living in France for my studies. I wanted to buy a movie, but it's only in french and I prefer the original language, in this case, english. Is it possible to buy a different version, or does the country you're in dictate that?
    Thanks for your time.

  • 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 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 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 Portal Password using a link from Web dynpro application

    Hello Everybody,
    I have a requirement to change the user password from a web dynpro application which is available on a mobile device. Firstly User will log into the portal through a mobile device and after getting authenticated user will be redirected to the mobile application. Within this mobile application there will be a link to change the login password(Portal login). Can somebody tell me how can i change the portal login password from a link available within the mobile application. Looking forward for a suitable reply.
    Thanks to all,
    Regards,
    Saby.

    Hi Maksim,
    Thanks for your reply..but i would also like to know can we directly use the Change Password Iview "persoUserPassword" from the portal. Can i directly Pass the URL of this iview from the portal to a "Change Password" link in the web dynpro application, so that when the user click this link he should be able to see this Iview on his/her mobile device and should be able to change the password from there. But i dont know whether this iview will appear properly on the mobile device or we have to have a custom web dynpro application for this purpose...Please reply with a suitable answer.
    Thanks in advance.
    Regards,
    Sarabjeet Singh.

  • How to change the price in sales order copying from contract?

    Hi All,
    I am creating a sales order with reference to contract & the same prices in the contract are flowing. But the validity of prices are expired & I am unable to edit the prices in the sales oerder level.
    Please suggest what configuration need to do to edit prices in the sales order level.
    Thanks,
    Madhu

    Hello Madhu,
    I am creating a sales order with reference to contract & the same
    prices in the contract are flowing. But the validity of prices are expired
    & I am unable to edit the prices in the sales oerder level.
    Please suggest what configuration need to do to edit prices in the sales order level.
    The configurational setting for changing the pricing flow from Contract to Sales Order is in Copying control. Go to the T-code VTAA and select your relevant Contract and Sales Order. At the Item level itself, you shall find a control called PRICING TYPE. Select the option as B or C.
    Please try out this approach so that your issue related to pricing flow can be avoided.
    Regards,
    Sarthak

  • How to change the resource of an old project from 7830r to 7841r for a NI FPGA module?

    Hello,
    Could you please tell me what is the easiest way to change the target resource (the device
    information) for the FPGA in a old project? We are using a 7841R board, but the
    old LabVIEW project always treat the board as 7830R and I therefore can not complete the compiling and run
    the project. 
    Thanks!

    You need to add the new board as a new target to the project. If you're using a recent version of LabVIEW you can then drag all the resources from the old FPGA target to the new one (I don't know if this works for IO items). In older versions of LabVIEW, you may be able to drag the files but you'll need to recreate the IO, FIFOs, memory blocks etc.

  • How to change the effect of drag and drop from MOVE to COPY in alv tree.

    Hi,
    I am using a tool in which now the behaviour on drag and drop is MOVE. I want to change it to COPY.
    But I do not know which parameter needs to be set and where.
    please help.
    Regards,
    Smita.

    Hi,
    Thanks for quick reply.
    The code goes on like this
    METHOD set_dd_behavior.
      DATA: l_copysrc(1) TYPE c,
            l_movesrc(1) TYPE c,
            l_droptarget(1) TYPE c.
    Set the Drag and Drop Flavors.
      CREATE OBJECT dd_behavior.
      READ TABLE reg_functions WITH KEY name_function = 'COPY'
      TRANSPORTING NO FIELDS.
      IF sy-subrc = 0.
        l_copysrc = 'X' .
      ENDIF.
      READ TABLE reg_functions WITH KEY name_function = 'CUT'
      TRANSPORTING NO FIELDS.
      IF sy-subrc = 0.
        l_movesrc = 'X' .
      ENDIF.
      READ TABLE reg_functions WITH KEY name_function = 'PASTE'
      TRANSPORTING NO FIELDS.
      IF sy-subrc = 0.
        l_droptarget = 'X' .
      ENDIF.
      CALL METHOD dd_behavior->add
      EXPORTING
      flavor = 'MOVE'
      dragsrc = l_movesrc
      droptarget = l_droptarget
      effect = cl_dragdrop=>move.
      CALL METHOD dd_behavior->add
      EXPORTING
      flavor = 'COPY'
      dragsrc = l_copysrc
      droptarget = l_droptarget
      effect = cl_dragdrop=>copy.
      CALL METHOD dd_behavior->get_handle
      IMPORTING handle = dd_behavior_handle.
    ENDMETHOD.
    Here what changes needs to be done.
    As I see once COPY is added and next time MOVE is added.
    I am able to check because I am not able to edit while debugging the value of effect.
    Please suggest.
    Warm regards,
    Smita.

Maybe you are looking for