How to customise individuals windows with colours?

Hi, is it possible to customise individuals windows and assign colours? Tags isn't enough for me. Thanks

Guess they thought we needed more exercise so now we have to swip them to close.....miss iOS6. My eyes are blurry now after looking at my phone, and my arms are tired from swipping lol

Similar Messages

  • How do I use windows with my mac

    How do I use windows with my imac?  I need to know which program I need.

    use the built in boot camp or a program such as Parallels or VMware Fusion.

  • How to create a window with its own window border other than the local system window border?

    How to create a window with its own window border other than the local system window border?
    For example, a border: a black line with a width 1 and then a transparent line with a width 5. Further inner, it is the content pane.
    In JavaSE, there seems to have the paintComponent() method for the JFrame to realize the effect.

    Not sure why your code is doing that. I usually use an ObjectProperty<Point2D> to hold the initial coordinates of the mouse press, and set it to null on a mouse release. That seems to avoid the dragging being confused by mouse interaction with other nodes.
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.collections.FXCollections;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.geometry.Pos;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.stage.StageStyle;
    import javafx.stage.Window;
    public class CustomBorderExample extends Application {
      @Override
      public void start(Stage primaryStage) {
      AnchorPane root = new AnchorPane();
      root.setStyle("-fx-border-color: black; -fx-border-width: 1px; ");
      enableDragging(root);
      StackPane mainContainer = new StackPane();
        AnchorPane.setTopAnchor(mainContainer, 5.0);
        AnchorPane.setLeftAnchor(mainContainer, 5.0);
        AnchorPane.setRightAnchor(mainContainer, 5.0);
        AnchorPane.setBottomAnchor(mainContainer, 5.0);
      mainContainer.setStyle("-fx-background-color: aliceblue;");
      root.getChildren().add(mainContainer);
      primaryStage.initStyle(StageStyle.TRANSPARENT);
      final ChoiceBox<String> choiceBox = new ChoiceBox<>(FXCollections.observableArrayList("Item 1", "Item 2", "Item 3"));
      final Button closeButton = new Button("Close");
      VBox vbox = new VBox(10);
      vbox.setAlignment(Pos.CENTER);
      vbox.getChildren().addAll(choiceBox, closeButton);
      mainContainer.getChildren().add(vbox);
        closeButton.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Platform.exit();
      primaryStage.setScene(new Scene(root,  300, 200, Color.TRANSPARENT));
      primaryStage.show();
      private void enableDragging(final Node n) {
       final ObjectProperty<Point2D> mouseAnchor = new SimpleObjectProperty<>(null);
       n.addEventHandler(MouseEvent.MOUSE_PRESSED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(new Point2D(event.getX(), event.getY()));
       n.addEventHandler(MouseEvent.MOUSE_RELEASED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(null);
       n.addEventHandler(MouseEvent.MOUSE_DRAGGED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            Point2D anchor = mouseAnchor.get();
            Scene scene = n.getScene();
            Window window = null ;
            if (scene != null) {
              window = scene.getWindow();
            if (anchor != null && window != null) {
              double deltaX = event.getX()-anchor.getX();
              double deltaY = event.getY()-anchor.getY();
              window.setX(window.getX()+deltaX);
              window.setY(window.getY()+deltaY);
      public static void main(String[] args) {
      launch(args);

  • How do a float window with swing?

    How do a float window with swing?
    If you have JBuilderX, the float window likes JBuilderX's structure pane.
    Thanks Advance!

    It can't be resize and must be add to the panel that *.getContentPane()

  • How to close open windows with ios7, How to close open windows with ios7

    How to close open windows with ios7, How to close open windows with ios7?

    Guess they thought we needed more exercise so now we have to swip them to close.....miss iOS6. My eyes are blurry now after looking at my phone, and my arms are tired from swipping lol

  • How to close a window with a jbutton?

    hi all!
    im have a login box created with jframe,
    what i want is when i press the submit button and if authentication is success
    i'd like to close the jframe of my login box and open a new window.
    how can i close a jframe window with a jbutton?

    to close the window you can add an anynomous class like this:
    yourButton.addActionListener(
          new ActionListener() {
                  public void actionPerformed( ActionEvnet e ) {
                        System.eixt(0);
    );That's all Buddy, Enjoy

  • How to open new window with required size when clicking on image in a table

    Hi,
    There is an image column in advanced table. i want to open new window with required parameters(size, toolbar, status bar,etc..) and with that transaction context.
    can any one help plzzzzzzzz?
    Thanks
    Raju

    You can also use OAF js function to open modal pop up:
    openWindow(self, '<url>','longTipWin', {width:900, height:400}, true); return false;
    --Mukul                                                                                                                                                                                                                                                                                                                                   

  • How to create popup window with radio buttons and a input field

    Hi Guys,
    Can somebody give some directions to create a stand alone program to create a window popup with 2 radio button and an input field for getting text value. I need to update the text value in a custom table.
    I will call this stand alone program from an user exit. 
    Please give me the guidance how go about it or please give any tutorial you have.
    Thanks,
    Mini

    Hi,
    There are multiple aspects of your requirements. So let's take them one at a time.
    You can achieve it in the report program or you can use a combination of the both along.
    You can create a standalone report program using the ABAP Editor (SE38). In the report program you can call the SAP Module pool program by CALL Screen <screen number>. And then in the module pool program you an create a subscreen and can handle the window popup with 2 radio button and an input field for getting the text.
    For help - Module Pool programs you can search in ABAP Editor with DEMODYNPRO* and you will ge the entire demo code for all dialog related code.
    For Report and other Module pool help you can have a look at the following:
    http://help.sap.com/saphelp_nw70/helpdata/en/47/a1ff9b8d0c0986e10000000a42189c/frameset.htm
    Hope this helps. Let me know if you need any more details.
    Thanks,
    Samantak.

  • How to set up Windows with Reader and certificate for all users

    Good afternoon (GMT),
    we're dealing with a Win XP (SP3) system that is set up by an Administrator. One task is to set up the system in a way that all users (w/o admin rights) become able to read a certified-protected PDF. Currently we know a way to install the "public key" for this certificate only for one known user. But how to proceed when not all users are known? The users shall later on never be asked to confirm the certification installation/registration.
    If it helps, here is the software version:
    Acrobat 8.12 to encrypt the PDF via certification. In near future I will switch to Acrobat 9.x
    Reader 7.x and/or 8.x on customer PCs.
    Thank you for ideas and hints.
    BTW: Next time we want to provide a solution for Win7 systems, too.
    Carsten

    Check
    Time Zone Specification from http://docs.oracle.com/cd/E12844_01/doc/bip.1013/e12187/T421739T481157.htm#4535403
    just in case https://blogs.oracle.com/xmlpublisher/entry/how_to_keep_your_dates_from_go

  • I have the Ai trial and i cannot seem to figure out how to do a gradient with colour... is it just not possible with the trial version or what?

    Topic.

    Hi there!
    If you want to do a gradient with colors other than the standard BW, you just have to go into the gradient window and double click on one of the markers on the color slider. A color menu should pop up; click on the tiny button in the top right of that menu and change your color mode to RGB. Then you can select your color from there.
    Hope this helps!

  • How to resize a window with out a mouse

    Hello
    There are times that I rather not use a mouse, my question is How do I resize a window or drag it to make it larger not using a mouse but using the touch-pad and keyboard.
    I usually put the mouse pointer in the bottom right hand conner of the window where the little white box and I hold down the left mouse button and drag it to the size I want.
    Thanks
    David
    Powermac G5 1.8SP 3 gig ram: ibook g4 1.2 gig ram   Mac OS X (10.4.4)  

    Make it extend Frame or JFrame and you get all that for nothing.

  • How to re-install Windows with no original CD

    Hi all
    Sorry if this is a silly question but when I've bought a new laptop in the past with Windows installed on it, it came with a Windows installation disk which I used to re-install Windows if I needed to. My new Yoga 2 Pro didn't come with a Windows 8.1 disk. What would I do if I needed to re-install Windows please?
    Many thanks

    Since this is more related to the OEM hardware setup I'd ask them here.
    http://forums.toshiba.com/
    For general windows related issues you can ask here.
    http://answers.microsoft.com/en-us/windows
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • How to close browser window with AS2

    I'm currently working with a flash movie that opens up an IE browser to an external link.
    Since I'm working with a presentation that plays automatically after a few seconds and keeps loading new IE browsers with different links, I was wondering if there was a way with AS2, i can have flash close the IE window it opened?

    I need to close the IE window WITHOUT the use of a button. I need
    to have flash close the IE window it opens after a couple of frames. thanks in advance

  • How do I install Windows with my OEM disc?

    So I bought the Windows 8.1 64-bit OEM installation disc, and was using BCA (Boot Camp Assistant) to install it on my Late 2012 Mac mini.
    I did as I was prompted: plugged in an 8GB USB drive, inserted my disc into my external reader, opened BCA, checked the the all the boxes as per recommended than clicked Continue.
    I was than brought to the part where I had to 'choose the ISO file'. I thought it would have automatically detected my disc, but since that wasn't the case, I proceeded to browse my disc to search for the ISO file. And there was none.
    I even thought that using the OEM disc to install Windows using BCA was wrong, but it is actually recommended over the Retail one.
    Can anyone help me in this?
    PS: Please forgive my bad English.

    You will need to convert the DVD to an ISO using Disk Utility. Please see Disk Utility 12.x: Create a disk image and Section Create a disk image from a disk or folder
    From Boot Camp: System requirements for Microsoft Windows operating systems
    An authentic Microsoft Windows full install disc or ISO file
    You may not be able to use an OEM disk.

  • XSI: how to customise parcel tracking with dynamic URL

    Hello,
    is there anybody having a clue on how to implement the parcel tracking functionality in 4.6C ? actually it seems like there is no proper documentation available so I'm thankful for every hint!
    In detail I would like to open a subscreen in -- delivery / header / parcel tracking -- showing me the tracking status of a delivery (should be button Internet parcel tracking).
    thanks in advance,
    greets
    andy

    Hi Andy, Roberto,
    Could you please share any documentation available to implement Parcel Tracking at the item level and how VTRKP table can be updated.
    Thanks,
    Nisha K

Maybe you are looking for

  • Need Help with external display...

    First, let me explain what is happening. I'm using an external 19" Gateway LCD display with my Powerbook G4 1.25Ghz. Via DVI-D input. Everthing from connection to correct resolution is working fine. But the moment I change the refresh rate from 75Hz

  • Failed to register Planning with Shared Services

    Hi, I am trying to configure Hyperion Planning and it says "failed" for all the components. It doesn't want to reconfigure Shared Sevices either. I am using EPM 11.1.1.3. Can someone help? Thank you!

  • Read Only Conditions - Master Detail

    I have a page with a master detail i created an read only condition and the master passed to read only but the detail not... Why? Is not possible to put the detail component "read onyl" ?

  • Double Click / Single click problem

    Recently i have been noticing when i single click, using either my magic mouse or trackpad i end up getting a double click, even when my double click is set to as slow as possible. Is there anything that can be done to stop this, as this makes many o

  • Resizing Pictures

    Can some one tell me how to resize a picture using iPhoto or another application? ( I am trying to make the pictures bigger for a slide show )