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

Similar Messages

  • 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?

  • Changing the direction of path

    1.  Create patch or object
    2.  Add art brush
    3.  Changing the direction of path ON or OFF

    Absolutely... this is something I have tried to work out. There are some complicated work around, such as break the path. That works but if the object needs to retain a fill, weird things can happen. I usually copy and paste in front, break the path, then reverse path direction.

  • 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

  • Urgent!!! change the direction of the focus of a JTable ,need Horizontal

    as I do to change the direction of the focus of a JTable, for default it is Vertical and I need Horizontal Focus...
    pressed the enter it is moved in the horizontal
    does anybody know as doing that?
    thank you!!!!

    Yes, the easiest way is post this request multiple times.
    http://forum.java.sun.com/thread.jsp?thread=386572&forum=31&message=1662714
    http://forum.java.sun.com/thread.jsp?thread=386545&forum=57&message=1662548
    http://forum.java.sun.com/thread.jsp?thread=386535&forum=31&message=1662517
    Good luck.

  • 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 Do You Change the Direction of an Effect?

    Hey everyone!
    I've been searching for a clear answer on this all over the web, and can't seem to find anything.
    I want to change the starting direction of a title effect - Motion Blur Left specifically, so that it goes from the left side of the screen to the right instead of from the right to the left.
    Anyone know if this is possible? Thanks!

    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

  • Is there a way to change the DIRECTED BY at the end of my iMovie?

    Hello:
    I just upgraded to iMovie '09 and really like it. I created a movie using the "Photo Album" option. Just wondering if there is a way I can change the ending transition to say something other than "Directed by" and my name?
    THANKS

    Yes. In the Project viewer click on the text in the bar above the clip. It will get the yellow frame around it. Then in the viewer window just click on Directed By field and type your new text. Click in your name and do the same.

  • Change the direction of a DO

    Hi Experts,
    i have a created a MAM scenario with Mobile 7,1 PATCH 9.
    One DataObject is the notification partner which i first defined as only downloadable and imported the model to the SAP Developer studio. Now i changed the DO to have a bidirectional DO and reimported the model.
    Now my problem:
    I can not change any data on the client. All the fields for this DO is read-only marked. How ca ic change this?
    Has anyone any solution for this?
    Thanks a lot
    Mathias

    Found the solution on my own. These steps had to be done:
    1. Mark all necessary fields in the DO as not downlaodable.
    2. Reimport the model to the IDE, update structure path and build the app.
    3. uncheck at all necessary fields the flag not downloadable.
    4. Make step 2 again. Then the flag read-only in the IDE has to be changed to false.
    Afterwards it is possible to save the data.

  • 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 Speed of a Behavior on Text?

    I have applied some text to my layer and added 3 of the following behaviors to different text: Big Spin, fly in, Behind the camera.
    I have searched in the discussion and fooled around with the inspector, but I can't figure out a way to make these texts to come in to the layer faster..
    How do I change this?

    Or the main timeline - to see them in relation to each other...
    Patrick

  • Changing the direction of the form

    Hi All,
    I am using forms 10g and when I run any form it's direction appears from the right to the left.
    How can I want to change this??

    I'm not sure to understand your requirement.
    Anyway,
    in property palette form module
    Direction Property Description
    Note:
    This property is specific to bidirectional National Language Support (NLS) applications. Specifies the layout direction for bidirectional objects. For the purposes of this property, assume that Local refers to languages displayed Right-To-Left, and Roman refers to languages displayed Left-To-Right

Maybe you are looking for

  • New TODO view--praise and criticism

    I love the new ToDo section of Mail. At first I thought it was a very basic application, but now I understand that it can compete fairly with Entourage by the use of Smart Mailboxes. Once I got my head round the terminology--Smart Mailbox is the same

  • Dual Monitors in CS5 still a problem?

    Hi, I have dual monitors using mostly photoshop. In CS3, when I opened a document, I was able to have it open automatically in the right monitor, which was great. In CS4, adobe did away with that for no reason that I can think of as it is the biggest

  • Vendor already released from block,but showing block while creating pr-help

    dear friends, my client is facing a problem in blocking of vendors. my client actually blocked the vendor in XK05 t-code. after some days again he want the same vendor. so they release the block, that is they removed the tick mark for block (for purc

  • Change Output Device Settings @ Runtime?

    This will sound silly, but there is a good reason for it :).  Also, I am not much of an ABAPer. We have a requirement to change output device settings on the fly in a program.  For instance, in case A, we would like to use the output device as it was

  • Objects in Illustrator won't move with cursor. Help!?

    It's been about a year since i've used Illustrator (CS5), and I'm not sure why I cannot get the objects to move. When I try, it just makes the error noise. Please help. Thx.