Is it possible to change the position of popupScreen when it was posted?

I need to move a popupscreen in a way that is animated on the screen. IE I want to 'slide' to another location instead of just poping out the window and it redisplay in another location. Is there a way to make something like a "setPostion()", after posting the popupscreen?

Hey rab.
Which worked great! Thank you very much!

Tags: BlackBerry Developers

Similar Questions

  • Is it possible to change the Red to black when you use drawing annotations?

    Drawing annotations are all red when I try circling a text. Is it possible to change the color to black?

    You can right click on a line and select Properties. You can usually get a Properties menu by using ctrl-E.

  • Is it possible to change the Position of KFF Structure on Business Group?

    Hello

    We have defined a position KFF Structure and created the Group of companies as well. Now, we have disabled the old position structure and created the new structure, but in the configuration of the Group of companies, it does not show the new structure of position in LOV.

    Has anyone done in the past? In this case, nothing is loaded. (Without a job / Position etc.)

    Hello

    When you set the BG, it's forever. You cannot change the BG defination.

    But if you're not set up the jobs and positions in the structure of work, then you can change the listed segments in the ff respective. But you can change the structure of the ff at BG level when it has been set.

    Thank you and best regards,
    Loubna.

  • Is it possible to change the new ugly background when I wake my iMac to sleep in the Sierra?

    My iMac is password protected. When I wake from slumber in the Sierra again, he has a new ugly, indefinable experience. Is it possible that I can change this?

    Open System Preferences > desktop and screensaver and select the Desktop tab.

    You can change the background photo from there.

  • Possibility to change the region on laptop DVD code was limited__

    I have and watch DVDs from several regions 1,2,3.  My toshiba satellite running Vista Home Premium to limit the number of times I can do this.  Toshiba says that it is a limitation of windows.  Microsoft does not answer more questions of Vista.  We know of a fix for this or a computer laptop or net book which allows the use continues its DVD on several regions.  = Really what is a PC who loses the functionality with time and usage?

    Hello

    You can modify the code region only to a limited number of times (i.e. 5 times). This is by design, but you can post your comments on Microsoft Connect in order to help us improve Windows. Click on the link below.

    https://connect.Microsoft.com/dashboard/Info/

    Thanks and regards.

    Thahaseena M
    Microsoft Answers Support Engineer.
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How to change the positions of xy graph scale label

    LV2013

    Is it possible to change the position of label scale at design time?  The only way I can find to move each program which is not convenient.

    Surely, it should be possible to just catch them and move?

    # You have not to save it.  But do not tell it to replace the original control that exists in the VI.

  • change the position of several layers

    Hello

    I have tried many and find many things by google, but I can't find a working solution.

    I have about 60 layers in my Composition. They're all the same position at the moment. The idea is to browse through the Articles and change the y-position with an offset value.

    What I've learned so far is that there is a layer.property("Transform").property ('Position'). First I thought that it is a table like [x, y, z], but this seems to be only one... property.

    Now I can check if my layers in the 'Position' property...... but I already knew. I found no way to set or even get all values.

    I know how to set the position when I create a new layer, but this seems to be something different.

    Is there a possibility to change the Position of a layer existing script?

    Best regards

    G

    For the position or any other property in the layer, you must use the method .setValue(theNewValue).

    If the property contains keyframes, or if you want to add a keyframe, it will throw an error, however, to check if the property already has keys, in this case, you can use the method .setValueAtTime(theTime, theNewValue).

    Example:

    Layer.Property ("Transform"). Property ('position'). SetValue ([x, y, z]);

    Layer.Property("Transform") .property ("Position") .setValueAtTime (0, [x, y, z]);

    Check the after effects Scripting guide (pdf) for more information on this.

    Xavier

  • Change the position of the pane in a Voletfractionne

    It is a simple code for Voletfractionne field

    import javafx.application.Application;
    import javafx.geometry.Orientation;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.control.SplitPane;
    import javafx.scene.layout.Pane;
    import javafx.stage.Stage;
    
    
    /**
    *
    * @author utente
    */
    public class SplitPaneDragAndDrop extends Application {
       
        @Override
        public void start(Stage primaryStage) {
                  
            Pane root = new Pane();
            SplitPane sp = new SplitPane();
            sp.setPrefSize(800, 650);
           
            Pane one = new Pane();
            Pane two = new Pane();
            Pane three = new Pane();
            Pane four = new Pane();
           
            Label first = new Label(" Pane One");
            Label second = new Label(" Pane Two");
            Label third = new Label(" Pane Three");
           
            two.getChildren().add(first);
            three.getChildren().add(second);
            four.getChildren().add(third);
           
            sp.setDividerPositions(0.5f, 0.65f, 0.8f);
           
            sp.getItems().addAll(one, two, three, four);
            sp.setVisible(true);
            sp.setOrientation(Orientation.VERTICAL);
           
            root.getChildren().add(sp);
           
            Scene scene = new Scene(root, 800, 650);
           
            primaryStage.setTitle("SplitPane dragging test");
            primaryStage.setScene(scene);
            primaryStage.show();
        }
    
    
        /**
         * The main() method is ignored in correctly deployed JavaFX application.
         * main() serves only as fallback in case the application can not be
         * launched through deployment artifacts, e.g., in IDEs with limited FX
         * support. NetBeans ignores main().
         *
         * @param args the command line arguments
         */
        public static void main(String[] args) {
            launch(args);
        }  
    }
    

    I would like to know if it is possible to change the position of the left pane of the mouse and drag the: in the example, let's suppose I want to change position in a stream with three pane by click and drag over the area of the pane, is it possible?

    How to get there?

    Thank you

    It is probably more useful to you look at the FlowPane code and to find a way to change it to do what you want. You'll learn more that way.

    It is essentially if you can't get there. There is a little quirk with the positions of the divider; not very well why, but you can experiment with it.

    import java.util.Arrays;
    
    import javafx.application.Application;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.collections.ObservableList;
    import javafx.event.EventHandler;
    import javafx.geometry.Orientation;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.control.SplitPane;
    import javafx.scene.input.ClipboardContent;
    import javafx.scene.input.DragEvent;
    import javafx.scene.input.Dragboard;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.input.TransferMode;
    import javafx.scene.layout.Pane;
    import javafx.stage.Stage;
    
    /**
    *
    * @author utente
    */
    public class SplitPaneDragAndDrop extends Application {
    
        private static final String SPLIT_PANE_DRAG_ITEM = "SplitPaneItem";
    
        @Override
        public void start(Stage primaryStage) {
    
            Pane root = new Pane();
            SplitPane sp = new SplitPane();
            sp.setPrefSize(800, 650);
    
            final ObjectProperty currentlyDraggedPane = new SimpleObjectProperty<>();
    
            Pane one = createPane(currentlyDraggedPane, sp);
            Pane two = createPane(currentlyDraggedPane, sp);
            Pane three = createPane(currentlyDraggedPane, sp);
            Pane four = createPane(currentlyDraggedPane, sp);
    
            Label first = new Label(" Pane One");
            Label second = new Label(" Pane Two");
            Label third = new Label(" Pane Three");
    
            two.getChildren().add(first);
            three.getChildren().add(second);
            four.getChildren().add(third);
    
            sp.setDividerPositions(0.5f, 0.65f, 0.8f);
    
            sp.getItems().addAll(one, two, three, four);
            sp.setVisible(true);
            sp.setOrientation(Orientation.VERTICAL);
    
            root.getChildren().add(sp);
    
            Scene scene = new Scene(root, 800, 650);
    
            primaryStage.setTitle("SplitPane dragging test");
            primaryStage.setScene(scene);
            primaryStage.show();
        }
    
        private Pane createPane(final ObjectProperty currentlyDraggedPane,
                final SplitPane splitPane) {
            final Pane pane = new Pane();
            pane.setOnDragDetected(new EventHandler() {
                @Override
                public void handle(MouseEvent event) {
                    Dragboard dragboard = pane.startDragAndDrop(TransferMode.MOVE);
                    ClipboardContent content = new ClipboardContent();
                    content.putString(SPLIT_PANE_DRAG_ITEM);
                    dragboard.setContent(content);
                    currentlyDraggedPane.set(pane);
                    event.consume();
                }
            });
            pane.setOnDragOver(new EventHandler() {
                @Override
                public void handle(DragEvent event) {
                    Dragboard dragboard = event.getDragboard();
                    if (dragboard.hasString()
                            && SPLIT_PANE_DRAG_ITEM.equals(dragboard.getString())
                            && currentlyDraggedPane.get() != null
                            && currentlyDraggedPane.get() != pane) {
                        event.acceptTransferModes(TransferMode.MOVE);
                        event.consume();
                    }
                }
            });
            pane.setOnDragDropped(new EventHandler() {
                @Override
                public void handle(DragEvent event) {
                    Dragboard dragboard = event.getDragboard();
                    Pane incomingPane = currentlyDraggedPane.get();
                    if (dragboard.hasString()
                            && SPLIT_PANE_DRAG_ITEM.equals(dragboard.getString())
                            && incomingPane != null && incomingPane != pane) {
    
                        ObservableList items = splitPane.getItems();
                        int indexOfIncomingPane = items.indexOf(incomingPane);
                        int myIndex = items.indexOf(pane);
    
                        double[] dividerPositions = splitPane.getDividerPositions();
    
                        // Swap items, being careful to remove both before adding
                        // both back.
                        // Doing this in the wrong order will violate rules of the
                        // Scene graph.
    
                        int rightIndex = Math.max(indexOfIncomingPane, myIndex);
                        int leftIndex = Math.min(indexOfIncomingPane, myIndex);
                        Node rightNode = items.remove(rightIndex);
                        Node leftNode = items.remove(leftIndex);
                        items.add(leftIndex, rightNode);
                        items.add(rightIndex, leftNode);
    
                        // Maybe do something more sophisticated here to maintain
                        // original relative
                        // sizes of each pane
                        splitPane.setDividerPositions(dividerPositions);
                    }
                }
            });
            return pane;
        }
    
        /**
         * The main() method is ignored in correctly deployed JavaFX application.
         * main() serves only as fallback in case the application can not be
         * launched through deployment artifacts, e.g., in IDEs with limited FX
         * support. NetBeans ignores main().
         *
         * @param args
         *            the command line arguments
         */
        public static void main(String[] args) {
            launch(args);
        }
    }
    
  • [FAD] Change the position of the label of inputText component

    Is it possible to change the position of the label of inputText on the left at the top?


    Thank you.

    Hello

    be wrapped in an af:panelForm and it is then encapsulated in an another af:panelForm

    Frank

  • OfficeJet pro 8600: not possible to change the scanning of the Panel of the printer resolution settings

    With my Officejet pro 8600, there is no possibility to change the scanning resolution settings when you are working in the control panel of the printer (not present button to touch) when I want to scan to the computer, while in the manual it is mentioned that, after pressing the Document Type, it should be possible to reach the resolution to change the resolution of the scan setting. On the other hand, when the scan to a memory card the button change the resolution settings is present.

    Sometimes for the scanning of all computers to select (winXP SP3 installed on it). The HP printing software is installed on all computers and manage digitization to the computer is turned on. It is possible to change the resolution settings when using my computer with the HP printing software, but as I said not in the use of the printer.

    Thank you to help you solve the problem!

    Hey mk75053,

    Scanning to memory card has the parameters of resolution through the front because that is the only way for the device perform this type of analysis.  However, to change the resolution settings for the Scan of the computer, one will have to perform scans through the software installed on the PC.

    I have all three types of 8600 models where I am located (base, more high quality) and of all printers simply ask to start the analysis after selecting the scan type.

    I hope this helps.

  • Starkey Halo 2 passes to 'Flow Boost' memory state when the iPhone received incoming calls.   Is it possible to change the setting.

    I just got my Halo 2 a few days ago Starkey.  I noticed that when I get incoming calls on my iPhone 6, Halo 2 switches in position of memory 'Stream Boost' that increases the volume and picks up a lot of background noise.  Is it possible to change the default iPhone meets the memory of another parameter memory.

    No, you should contact the developer of the application to this topic.

  • How to change the position of the BB Menu?

    Hi all
    I would like to know how to change the position of the BB Menu. We made a personalized menu of BB and it appears in the upper right of the screen. I would like to know if it is possible to display the menu in the lower left side. We have checked RIM API, but did not find anything for this. Is there a way to do this? We could use other libraries or specific solution as it is very important for our project.

    Thank you

    Pedro

    It is not possible with the menus built-in mechanism.

    You can provide your own menu, using popupscreen and objectlistfield, for example. You can place this popup where you want.

  • change the position of the image user on the session screen in windows 7

    I want to replace the image of user on the login screen and also resize. Is this possible?

    Michalis salvation,

    Unfortunately, you cannot change the position of photo of user profile on logon screen. This function is by default design on Windows 7.

  • Dynamically change the position of the SVG element

    Hello world

    Is it possible to change the upper and left an image of any svg positions to HAVE running by using code?

    I tried to convert to symbol and using:

    sym.getSymbol("WholeCircle").css ("left", 850);  -bad luck

    I tried to use as an element:

    SYM. $("WholeCircle") .css ("left", 850); CROME is my element disappear.

    Hello

    I think just, I solved my problem.

  • Change the position of the pages

    I'm working on PC, with Indesign CS 3. I wrote a 600-page book, 400 photos and extensive notes. Now, I try to change the position of 10 pages. The order 'verschieben Seiten' is OK, no problem with - for example - the pagenumbers. BUT: My notes numbers will not be told. Example: I take Page X with note 30-34, page 250 page 420. The last note on this page is 320. Now, my notes on page X must be reported: NO 30-34, BUT 321-325. It does not work. My X page changes the place, but my notes do not recognized this. They believe that they are already to the 250 page... Is there a possibility to reorganize my notes? InDesign

    This has nothing to do with age! This is the expected behavior.

    Break the link between text blocks is unnecessarily complicated, for

    the reason why you've noticed. And Adobe has not provided a simple way to

    that, although there is at least a free script available

    somewhere out there.

    But a script is not required.

    Break the link as you did. The text disappears.

    Now, place your cursor in text after the last visible character in the

    previous text block. Press CtrlSHIFTend to select all the invisible

    text. Press Ctrl-X to cut it. Place your cursor in the empty text frame,

    and paste the text you have just cut.

    That's it: the link is now broken, and everything should be in place.

    Repeat for the last image (as in my previous post) and continue

    According to the above instructions.

Maybe you are looking for