Basic: how to move left/right areas within the track?

Hello

I have a selected area that I want to move to the left or right within its own track and LPX leaves me no move at all.  I selected the pointer tool and I try to click on and drag the box left or right, and it does not move.  When I'm clicking, I do I click on the lower half of the region.   What should I do to move the regions?

Thanks in advance

10.11.5 / LPX 10.2.2

Make sure that your drag is set on overlap and click on and hold the header at the top of the region portion to drag to the left or right

Tags: Professional Applications

Similar Questions

  • XY LineChart move left/right

    In the code below that line can be moved (dragged) left / right side of the left mouse click and drag
    import javafx.application.Application; 
    import javafx.beans.property.SimpleDoubleProperty; 
    import javafx.event.EventHandler;  
    import javafx.scene.chart.NumberAxis; 
    import javafx.scene.chart.XYChart; 
    import javafx.stage.Stage; 
    import javafx.scene.Scene; 
    import javafx.scene.chart.LineChart; 
    import javafx.scene.input.MouseEvent; 
    import javafx.scene.layout.BorderPane; 
    
    public class XYMove extends Application {
    
    BorderPane pane; 
    XYChart.Series series1 = new XYChart.Series(); 
    
    SimpleDoubleProperty rectinitX = new SimpleDoubleProperty(); 
    SimpleDoubleProperty rectX = new SimpleDoubleProperty(); 
    SimpleDoubleProperty rectY = new SimpleDoubleProperty(); 
    
    @Override 
    public void start(Stage stage) { 
    
    final NumberAxis xAxis = new NumberAxis(4, 16, 1); 
    final NumberAxis yAxis = new NumberAxis(0.53000, 0.53910, 0.0005); 
    
    xAxis.setAnimated(false);
    yAxis.setAnimated(false);
    
    yAxis.setTickLabelFormatter(new NumberAxis.DefaultFormatter(yAxis) { 
    
        @Override 
        public String toString(Number object) { 
            return String.format("%7.5f", object); 
        } 
    }); 
    
    final LineChart<Number, Number> lineChart = new LineChart<Number, Number>(xAxis, yAxis); 
    
    lineChart.setCreateSymbols(false); 
    lineChart.setAlternativeRowFillVisible(false); 
    lineChart.setAnimated(false); 
    lineChart.setLegendVisible(false);
    
    series1.getData().add(new XYChart.Data(1, 0.53185)); 
    series1.getData().add(new XYChart.Data(2, 0.532235)); 
    series1.getData().add(new XYChart.Data(3, 0.53234)); 
    series1.getData().add(new XYChart.Data(4, 0.538765)); 
    series1.getData().add(new XYChart.Data(5, 0.53442)); 
    series1.getData().add(new XYChart.Data(6, 0.534658)); 
    series1.getData().add(new XYChart.Data(7, 0.53023)); 
    series1.getData().add(new XYChart.Data(8, 0.53001)); 
    series1.getData().add(new XYChart.Data(9, 0.53589)); 
    series1.getData().add(new XYChart.Data(10, 0.53476));
    series1.getData().add(new XYChart.Data(11, 0.53023)); 
    series1.getData().add(new XYChart.Data(12, 0.53001)); 
    series1.getData().add(new XYChart.Data(13, 0.53589)); 
    series1.getData().add(new XYChart.Data(14, 0.53476)); 
    
    pane = new BorderPane(); 
    pane.setCenter(lineChart); 
    Scene scene = new Scene(pane, 800, 600); 
    lineChart.getData().addAll(series1); 
    
    stage.setScene(scene);         
    
    scene.setOnMouseClicked(mouseHandler); 
    scene.setOnMouseDragged(mouseHandler); 
    scene.setOnMouseEntered(mouseHandler); 
    scene.setOnMouseExited(mouseHandler); 
    scene.setOnMouseMoved(mouseHandler); 
    scene.setOnMousePressed(mouseHandler); 
    scene.setOnMouseReleased(mouseHandler); 
    stage.show();
    } 
    
    EventHandler<MouseEvent> mouseHandler = new EventHandler<MouseEvent>() { 
    
    @Override 
    public void handle(MouseEvent mouseEvent) { 
    
        if (mouseEvent.getEventType() == MouseEvent.MOUSE_PRESSED) {             
            rectinitX.set(mouseEvent.getX()); 
        } 
        else if (mouseEvent.getEventType() == MouseEvent.MOUSE_DRAGGED || mouseEvent.getEventType() == MouseEvent.MOUSE_MOVED) { 
            LineChart<Number, Number> lineChart = (LineChart<Number, Number>) pane.getCenter(); 
            NumberAxis xAxis = (NumberAxis) lineChart.getXAxis(); 
    
            double Tgap = xAxis.getWidth()/(xAxis.getUpperBound() - xAxis.getLowerBound()); 
            double newXlower=xAxis.getLowerBound(), newXupper=xAxis.getUpperBound();             
            double Delta=0.3;
            
            if(mouseEvent.getEventType() == MouseEvent.MOUSE_DRAGGED){
            if(rectinitX.get() < mouseEvent.getX()){    
                newXlower=xAxis.getLowerBound()-Delta;
                newXupper=xAxis.getUpperBound()-Delta;
            }
        else if(rectinitX.get() > mouseEvent.getX()){    
                newXlower=xAxis.getLowerBound()+Delta;
                newXupper=xAxis.getUpperBound()+Delta;
            }    
            xAxis.setLowerBound( newXlower ); 
            xAxis.setUpperBound( newXupper );                        
            }                                        
            rectinitX.set(mouseEvent.getX());                                 
         } 
      } 
    }; 
        public static void main(String[] args) {
            launch(args);
        }
    }
    My question is: how to modify this code so to stop this movement left / right when the X value is == 0 (no need to strengthen negative X values) and X == end value for NumberAxis? (in this case is 16).
    final NumberAxis xAxis = new NumberAxis(4, 16, 1);
    Thank you all

    Just change to this part:

     if (rectinitX.get() < mouseEvent.getX() && newXlower >= 0) {
          newXlower = xAxis.getLowerBound() - Delta;
          newXupper = xAxis.getUpperBound() - Delta;
     } else if (rectinitX.get() > mouseEvent.getX() && newXupper <= 16) {
          newXlower = xAxis.getLowerBound() + Delta;
          newXupper = xAxis.getUpperBound() + Delta;
    }
    

    I just added: * & newXlower > = 0 * and * & newXupper<=>

    Published by: 981077 on January 14, 2013 06:47

  • drop table left-right scale of the value axis are not the same scale

    http://img20.imageshack.us/img20/6264/questionk.PNG

    the scale of the axis left and right are not the same.

    How to configure?

    Thank you very much!

    Hello

    Try this
    Chart, Goto Advanced properties-> check the line sync and the axis of the bar
    This will make the two scale of identical values.

    Thank you
    Vino

  • Every page on my site has a clear red color that fills the area within the margins.  How to get rid of it?

    Every page on my site (not yet published) has a clear red color (maybe partially transparent red?) that fills the area within the margins.  My wife was working on a page, when it happened - they only thing she could think of was that she might have hit the 'function' button and the ' key (immediately to the left of the "Enter" button).  I've been playing with it and research online for the answer, but have failed so far.  Any ideas?  It's probably something CRAZY... stupid easy feeling.  (=) Thanks for any help you can give!

    Muse Glitch.png

    Turn off network Overlay on the view menu.

  • Smartphones blackBerry how to move an application icon to the home screen

    How to move an application icon in the menu of the applications to the home screen.

    For example the browser icon?

    domdp wrote:

    ... I have the selected theme and I get 10 icons along the left side and bottom...

    ... I think I may be limited to 10 icons...

    Witch hunt... But in reality its limited to 9 icons in the theme of the profiles icon is still present. From this screen, press Menu to display the largest list of icons. ARange so the first 9 icons are the ones you want to see on the theme of the.

  • How to move photos in containers in the print module

    I'm a newbie trying to create a collage of photos in Lightroom on Windows 8 4. I did a lot of videos from Lynda.com and other tutorials online, but am having a problem with the print module. I can drag my photos on the printed page and resize them without any problem, but what I want to do is to effectively crop part of the photo to the size of the container, but only in this printing page (I don't want the photo in my library to crop).

    I hit the Ctrl button and the little hand icon (as do the small squares on the edges of the photo to change the size) but when I drag with the CTRL key, nothing happens - I'd expect the picture to circulate inside the container, but it is not. What I try to do is exactly the same thing that made (by holding the CTRL) in this video at 1 min 11secs: http://www.youtube.com/watch?v=MusJtn4C11U

    Probably I'm missing something basic, but if someone could point out, it would be much appreciated as I am very close to my first collage sent to the printer!

    First click left on the image that you want to move in the frame and release your mouse button (i.e. simply click once) - the framework will then show the small squares on the sketch - then press Ctrl / Cmd and the cursor will change to the little hand that allows you to move the image.

    Be aware, though, that you can move the image to only be up/down or left/right, according to the shape of the image and the frame.

    BTW: You write "part of the picture of cultures." It's not crop the image, it's that moving in the frame.

  • How to insert as an entry within the formula variable, the total time on the scope window?

    How to insert, as an entry within the formula variable, the window of total time on the scope (i.e. of 20ms/div x 10 div = 200ms)?

    HERE'S A SAMPLE QUESTION:

    FORMULA FOR INTEGRAL ACTION:

    STATISTICS:

    Input variable: DPO4034 (CH1);

    Box: number of samples.

    FORMULA

    Input variable 0: DPO4034 (CH1); alias: x 0

    Input variable 1: 'time window Total out of scope?. " alias: x 1

    Input variable 2: number of samples (CH1); alias: x 2

    Under the operation Configuration: formula

    Y = (x 0 ^ 2) *(x1/x2)

    Output: Data 1 (CH1)

    THEN, WITH THE HELP OF STATISTICS:

    Input signal: data processing 1 (CH1)

    Checkbox: SUM

    Output: CH1 integral Action [has ^ 2s].


  • I can't left/right click on the icons on the desktop, the loading circle is always near my mouse... Help

    Here's the problem in my Windows 7 laptop.

    I can't left/right click on the icons to my office, and the loading circle is near my mouse forever! Please help me. I scanned with Windows Defender and nothing positive. Despite my problem, I can only run programs through the taskbar. I don't know what happened, please help me.
    EDIT: I can't even turned off my computer! Even after pressing the external button...

    Thanks if. I already tried another solution and worked.

  • How to move Adobe Acorbat Professional 8to the latest version?

    How to move Adobe Acorbat Professional 8to the latest version?

    Hi haroldd98301156,

    Would like to inform you that it is not possible to upgrade from Acrobat Pro 8 (old version). You buy Acrobat Pro DC as full version.

    Kind regards

    Christian

  • How do I left office cc if the window of my cc is empty?

    How do I left office cc if the window of my cc is empty? I deleted the OOBE folder and yet since the window CC is completely empty (white) there is no way to stop the CC desktop application.

    There is no wheel on top because the window is empty.

  • Using CS4 Flach and action script 2.0 how to move a specific frame in the main timeline when a movie clip instance come at the end of his chronology?

    Using CS4 Flach and action script 2.0 how to move a specific frame in the main timeline when a movie clip instance come at the end of his chronology?

    code on the last frame of your movieclip instance:

    _root.gotoAndStop ('whatever_frame');  will work unless this swf is loaded into another swf.  in this case, you must use a relative path to the main timeline (for example, _parent or _parent._parent etc.).

  • How to insert a bar area in the slide page property metadata Muse CC

    I use the latest version of Muse CC and want to know how to insert a bar area in the model box slides property page metadata page title suffix

    I found it.  If anyone has this problem press the shift and -at the same time on a standard windows keyboard.

  • Text of the column displaying from right to left, how to fix left right?

    I'm flowing in the English text .docx files in InDesign CC (latest version). For some reason when I arrange the text in columns, the column order is right to left instead of left to right. I noticed that the text in red [+] block is also on the left side instead of the right as usual. How can I get the old definition of return?

    P.S. I looked through the forum and all related issues are in Arabic and the use of versions of InDesign. I have the American version and have never used the international versions, as well as the additional panel options are not there for me. Somehow this swapped itself in the version that I have, so there must be a way to fix here.

    Create a new object based on any style and apply it to your text frames, it should fix the problem.

  • How to get the dimensions of the area within the window of the scene?

    Hello

    I am able to get the size of a window using stage.getWidth () and stage.getHeight (), which gives the dimensions of the window, including the border. But how the size of the dimensions within the window, which is the area inside the border of the window?

    I had created a way to understand this by calculating the difference between the sides of my initial scene and my step. I called this window filling, which is essentially the thickness of the border on the sides and up and down.

    This method of calculation for available surface area in a window is not reliable when a window is maximized, because the thickness of the border of the window shrinks when enlarged. And if your stage size is larger than your scene, then you will get a wrong value.

    There must be a way to get this area. I need it to do correctly scaling.

    Thank you
    Jose

    Published by: jmart on 22 August 2012 23:58

    I did it by adding a 'master' component to the stage

    mainScene = new scene (masterPane, 430, 430);

    The master component is just a container that contains all the content but will resize the window resize event and therefore will always have the right width and height.

    masterPane = new Pane();
    masterPane.getChildren () .add (root);

    Due to that you can resize your content based on

    Double screenWidth = masterPane.getWidth ();
    Double screenHeight = masterPane.getHeight ();

    Here is an example. You can zoom (scrollwheel), pan (click and drag) and Center + scale on the screen (middle button) (only if the content is a square, there is a bug if the content is greater than the width, which I had no time to eliminate now but you get the point)

    import javafx.animation.Animation;
    import javafx.animation.ParallelTransition;
    import javafx.animation.ParallelTransitionBuilder;
    import javafx.animation.RotateTransition;
    import javafx.animation.RotateTransitionBuilder;
    import javafx.animation.ScaleTransition;
    import javafx.animation.ScaleTransitionBuilder;
    import javafx.animation.Timeline;
    import javafx.animation.TranslateTransition;
    import javafx.animation.TranslateTransitionBuilder;
    import javafx.application.Application;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.input.MouseButton;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.input.ScrollEvent;
    import javafx.scene.layout.Pane;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.stage.Stage;
    import javafx.util.Duration;
    
    public class Test extends Application
    {
        Stage primStage;
        Scene mainScene;
        Group root;
        Pane masterPane;
        Point2D dragAnchor;
        double initX;
        double initY;
    
        public static void main(String[] args)
        {
            launch(args);
        }
    
        @Override
        public void init()
        {
            root = new Group();
    
            final Pane pane = new Pane();
            pane.setStyle("-fx-background-color: #CCFF99");
    
            pane.setOnScroll(new EventHandler()
            {
                @Override
                public void handle(ScrollEvent se)
                {
                    if(se.getDeltaY() > 0)
                    {
                        pane.setScaleX(pane.getScaleX() + pane.getScaleX()/15);
                        pane.setScaleY(pane.getScaleY() + pane.getScaleY()/15);
                    }
                    else
                    {
                        pane.setScaleX(pane.getScaleX() - pane.getScaleX()/15);
                        pane.setScaleY(pane.getScaleY() - pane.getScaleY()/15);
                    }
                }
            });
    
            pane.setOnMousePressed(new EventHandler()
            {
                public void handle(MouseEvent me)
                {
                    initX = pane.getTranslateX();
                    initY = pane.getTranslateY();
                    dragAnchor = new Point2D(me.getSceneX(), me.getSceneY());
                }
            });
    
            pane.setOnMouseDragged(new EventHandler()
            {
                public void handle(MouseEvent me) {
                    double dragX = me.getSceneX() - dragAnchor.getX();
                    double dragY = me.getSceneY() - dragAnchor.getY();
                    //calculate new position of the pane
                    double newXPosition = initX + dragX;
                    double newYPosition = initY + dragY;
                    //if new position do not exceeds borders of the rectangle, translate to this position
                    pane.setTranslateX(newXPosition);
                    pane.setTranslateY(newYPosition);
    
                }
            });
    
            int x = 0;
            int y = -40;
            for(int i = 0; i < 5; i++)
            {
                y = y + 40;
                for (int j = 0; j < 5; j++)
                {
                    final Rectangle rect = new Rectangle(x, y, 30 , 30);
                    final RotateTransition rotateTransition = RotateTransitionBuilder.create()
                            .node(rect)
                            .duration(Duration.seconds(4))
                            .fromAngle(0)
                            .toAngle(720)
                            .cycleCount(Timeline.INDEFINITE)
                            .autoReverse(true)
                            .build();
                    rect.setOnMouseClicked(new EventHandler()
                    {
                        public void handle(MouseEvent me)
                        {
                            if(rotateTransition.getStatus().equals(Animation.Status.RUNNING))
                            {
                                rotateTransition.setToAngle(0);
                                rotateTransition.stop();
                                rect.setFill(Color.BLACK);
                                rect.setScaleX(1.0);
                                rect.setScaleY(1.0);
                            }
                            else
                            {
                                rect.setFill(Color.AQUAMARINE);
                                rect.setScaleX(2.0);
                                rect.setScaleY(2.0);
                                rotateTransition.play();
                            }
    
                        }
                    });
    
                    pane.getChildren().add(rect);
                    x = x + 40;
    
                }
                x = 0;
    
            }
    
            pane.autosize();
            pane.setPrefSize(pane.getWidth(), pane.getHeight());
            pane.setMaxSize(pane.getWidth(), pane.getHeight());
            root.getChildren().add(pane);
    
            masterPane = new Pane();
            masterPane.getChildren().add(root);
            masterPane.setStyle("-fx-background-color: #AABBCC");
            masterPane.setOnMousePressed(new EventHandler()
            {
               public void handle(MouseEvent me)
               {
                   System.out.println(me.getButton());
                   if((MouseButton.MIDDLE).equals(me.getButton()))
                   {
                       double screenWidth  = masterPane.getWidth();
                       double screenHeight = masterPane.getHeight();
                       double scaleXIs     = pane.getScaleX();
                       double scaleYIs     = pane.getScaleY();
                       double paneWidth    = pane.getWidth()  * scaleXIs;
                       double paneHeight   = pane.getHeight() * scaleYIs;
    
                       double screenScale  = (screenWidth < screenHeight) ? screenWidth : screenHeight;
                       int    screenSide   = (screenWidth < screenHeight) ? 0 : 1;                 
    
                       double scaleFactor = 0.0;
                       if(screenSide == 1)
                       {
                           scaleFactor = screenScale / paneWidth;
                       }
                       else
                       {
                           scaleFactor = screenScale / paneHeight;
                       }
    
                       double scaleXTo = scaleXIs * scaleFactor;
                       double scaleYTo = scaleYIs * scaleFactor;
    
                       double moveToX  = (screenWidth /2) - (pane.getWidth()  / 2);
                       double moveToY  = (screenHeight/2) - (pane.getHeight() / 2);
                       TranslateTransition transTrans = TranslateTransitionBuilder.create()
                           .duration(Duration.seconds(2))
                           .toX(moveToX)
                           .toY(moveToY)
                           .build();
                       ScaleTransition scaleTrans = ScaleTransitionBuilder.create()
                           .duration(Duration.seconds(2))
                           .toX(scaleXTo)
                           .toY(scaleYTo)
                           .build();
                       ParallelTransition parallelTransition = ParallelTransitionBuilder.create()
                          .node(pane)
                          .children(transTrans,scaleTrans)
                          .build();
                       parallelTransition.play();
                   }
               }
            });
    
        }
        public void start(Stage primaryStage)
        {
            primStage = primaryStage;
            mainScene = new Scene(masterPane, 430, 430);
            primaryStage.setScene(mainScene);
            primaryStage.show();
        }
    }
    
  • BlackBerry Smartphones "BOLD" Trackball died - only movement left/right

    Six days old and everything suddenly while using the calculator the trackball died - only move left or right, not upwards or downwards.  Tried the deactivation/activation, then outgoing/incoming battery and reboot.  No luck - e-mails arrive but cannot scroll down to retrieve or read (or delete).  Cannot scroll to place calls.

    Read this please

    http://www.BlackBerry.com/BTSC/dynamickc.do?externalId=KB14168&sliceId=SAL_Public&command=show&forwa...

Maybe you are looking for

  • Mac stops do not after the update of the sierra

    I've updated my MacBook Air (13 inches early 2015) to Sierra. After the update, it is not shut down or restart. If I click on stop, my screen goes black and the keyboard backlight is on. The judgment never ends. Its the same case on reboot too. Help,

  • How can I remove remove "important after download instruction.

    Almost everytime I open a new link, this tab opens: "important after download instruction. I want to stop it. How?

  • Windows Movie Maker spans video

    I use Windows Movie Maker 5.1 on XP. When I import a video portrait in WMM, it spans the video to fill the preview, making the video look "fat". When I save the movie, the output seems tense. Is it possible to maintain the original dimensions of the

  • HP Message Center question/properly installed cartridges not immediately recognized 564XL

    I have a HP Photosmart eStation c510 series printer that I bought in October 2011. The model name is CQ140A. I also own an iMac running OS 10.7.2. Lately, I have not received all of the HP Message Center alerts, and I don't nor do not forget to turn

  • Unable to Ping hosts through IPSec Tunnel

    I have a configuration of lab home with a PIX 515 running code 8.03.  I've made several changes over the last week and now when I finish a VPN connection to the external interface, I'm unable to hit all internal resources.  My VPN connection comes fr