External FXML file within AnchorPane/BorderPane/Pane

I need to load a FXML file into a panel (AnchorPane, BorderPane, Pane, etc) but I had some problems.
Initially I tried to load my external FXML file within AnchorPane the following manner:
package signa;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.Parent;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
public class Estructura_GeneralController {
    /*ignore this section
    @FXML Button modalidadButton;
    @FXML Button closeButton;
    @FXML Button chatButton;
    @FXML Button helpButton;
    @FXML HBox herramientas;
    @FXML Button latLonBtn;
    @FXML Button utmBtn;
    @FXML AnchorPane paneles;
    @FXML Button agregarUnidadBtn;
    @FXML Button derrotasBtn;
    @FXML Button editarUnidadBtn;
    @FXML Button marcadoresBtn;
    @FXML Button organizacionTareasBtn;
    @FXML Button nuevoPlanBtn;
    @FXML Button patronesBtn;
    @FXML Parent agregarUnidadPanel;
    @FXML Parent derrotasPanel;
    @FXML Parent editarUnidadPanel;
    @FXML Parent marcadoresPanel;
    @FXML Parent organizacionTareasPanel;
    @FXML Parent nuevoPlanPanel;
    @FXML Parent patronesPanel;
    public void switchPane(ActionEvent event) {
          Object eventSource = event.getSource();
          if (eventSource == agregarUnidadBtn) {
//               paneles.setCenter(agregarUnidadPanel);//.addAll(pane1);
                        paneles.setLeftAnchor(agregarUnidadPanel, null);
                        paneles.getChildren().addAll(agregarUnidadPanel);
          } else if (eventSource == derrotasBtn) {
               paneles.setLeftAnchor(derrotasPanel, null);
                        paneles.getChildren().addAll(derrotasPanel);
          } else if (eventSource == editarUnidadBtn) {
               paneles.setLeftAnchor(editarUnidadPanel, null);
                        paneles.getChildren().addAll(editarUnidadPanel);
          } else if (eventSource == marcadoresBtn) {
               paneles.setLeftAnchor(marcadoresPanel, null);
                        paneles.getChildren().addAll(marcadoresPanel);
          }else if (eventSource == organizacionTareasBtn) {
               paneles.setLeftAnchor(organizacionTareasPanel, null);
                        paneles.getChildren().addAll(organizacionTareasPanel);
          }else if (eventSource == nuevoPlanBtn) {
               paneles.setLeftAnchor(nuevoPlanPanel, null);
                        paneles.getChildren().addAll(nuevoPlanPanel);
          }else if (eventSource == patronesBtn) {
               paneles.setLeftAnchor(patronesPanel, null);
                        paneles.getChildren().addAll(patronesPanel);
}Now, in the FXML file:
//All this is within a AnchorPane
                  <AnchorPane fx:id="paneles" minHeight="0.0" minWidth="0.0" styleClass="anchorpane">
                  <prefHeight>
                    <Long fx:value="851" />
                  </prefHeight>
                  <prefWidth>
                    <Long fx:value="426" />
                  </prefWidth>
                  <stylesheets>
                    <URL value="@SIGNA.css" />
                  </stylesheets>
                  <fx:define>
                         <fx:include source="Panel_AgregarUnidades.fxml" fx:id="agregarUnidadPanel"/>
                  </fx:define>
                  <fx:define>
                         <fx:include source="Panel_Derrotas.fxml" fx:id="derrotasPanel"/>
                  </fx:define>
                  <fx:define>
                         <fx:include source="Panel_EditarUnidades.fxml" fx:id="editarUnidadPanel"/>
                  </fx:define>
                  <fx:define>
                         <fx:include source="Panel_Marcadores.fxml" fx:id="marcadoresPanel"/>
                  </fx:define>
                  <fx:define>
                        <fx:include source="Panel_OrganizacionTareas.fxml" fx:id="organizacionTareasPanel"/>
                  </fx:define>
                  <fx:define>
                        <fx:include source="Panel_NuevoPlan.fxml" fx:id="nuevoPlanPanel"/>
                  </fx:define>
                  <fx:define>
                        <fx:include source="Panel_PatronesPanel.fxml" fx:id="patronesPanel"/>
                  </fx:define>
                </AnchorPane>
                //With these buttons try to load the external panels
                <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="160.0" prefWidth="100.0" styleClass="anchorpane, Vbox">
                  <children>
                    <Button fx:id="agregarUnidadBtn" contentDisplay="CENTER" layoutX="5.0" layoutY="12.0" mnemonicParsing="false" onAction="#switchPane" prefWidth="88.0" text="${'Agregar' + '\n' + 'Unidades'}" />
                    <Button id="derrotasPanel" fx:id="derrotasBtn" contentDisplay="CENTER" layoutX="5.0" layoutY="57.0" mnemonicParsing="false" onAction="#switchPane" prefHeight="37.0" prefWidth="88.0" text="Derrotas" />
                    <Button fx:id="editarUnidadBtn" contentDisplay="CENTER" layoutX="5.0" layoutY="102.0" mnemonicParsing="false" onAction="#switchPane" prefWidth="88.0" text="${'Editar' + '\n' + 'Unidades'}" />
                    <Button fx:id="marcadoresBtn" contentDisplay="CENTER" layoutX="5.0" layoutY="147.0" mnemonicParsing="false" onAction="#switchPane" prefHeight="37.0" prefWidth="88.0" text="Marcadores" />
                    <Button fx:id="organizacionTareasBtn" contentDisplay="CENTER" layoutX="5.0" layoutY="192.0" mnemonicParsing="false" onAction="#switchPane" prefWidth="88.0" text="${'Organización' + '\n' + 'de Tareas'}" />
                    <Button fx:id="nuevoPlanBtn" contentDisplay="CENTER" layoutX="5.0" layoutY="237.0" mnemonicParsing="false" onAction="#switchPane" prefWidth="88.0" text="${'Nuevo' + '\n' + 'Plan'}" />
                    <Button fx:id="patronesBtn" contentDisplay="CENTER" layoutX="5.0" layoutY="282.0" mnemonicParsing="false" onAction="#switchPane" prefHeight="37.0" prefWidth="88.0" text="Patrones" />
                  </children>In this way I managed to load the external FXML file but but gives me an exception.
WARNING: com.sun.javafx.css.StyleHelper calculateValue caught:
java.lang.IllegalArgumentException: No enum constant javafx.geometry.Pos.left
furthermore if I press a button pressed previously, I have another problem of exception.
java.lang.RuntimeException: java.lang.reflect.InvocationTargetException*
Caused by: java.lang.reflect.InvocationTargetException
*Caused by: java.lang.IllegalArgumentException: Children: duplicate children added: parent = AnchorPane[id=paneles, styleClass=anchorpane]*
I also tried a slightly changing BordePane controller code:
public void switchPane(ActionEvent event) {
          Object eventSource = event.getSource();
          if (eventSource == agregarUnidadBtn) {
               paneles.setCenter(agregarUnidadPanel);
                        paneles.getChildren().addAll(agregarUnidadPanel);
          } Now obviously the variable "paneles" is a BorderPane.
however the result is the same only without having the problem of the second exception I had with the AnchorPane
I attached a picture to have some idea
Thank you very much any help and I ask an apology for the bad English.
http://img42.imageshack.us/img42/5770/panelssigna.png
http://img17.imageshack.us/img17/117/examplepanelagregarunid.png
Edited by: biochemistry43 on 11/12/2012 12:55 PM

This is the only part in my CSS file where the word left
.table-view .column-header .label{
    -fx-font-size: 11px;
    -fx-font-family: "Calibri";
    -fx-text-fill: white;
    -fx-alignment: left;
}This is the only part in my CSS file where the word left
If I suppress the error goes away which is great and I am happy but ... I do not understand why ... Why does that matter?
If I put the word left (without quotes) returns the error and if I put it back (with quotes), however get the error.
This is all my CSS code:
.theme {
        master-color: gray;
    -fx-border-width: 1px;
/*    -fx-border-color: rgb(30,30,30);*/
    -fx-background-color: rgb(50,50,50);
    -fx-font-size: 11px;
    -fx-font-family: "Calibri";
*.split-pane {
    -fx-padding: 0;
    -fx-border-width: 0;
*.anchorpane {
    -fx-background-color: rgb(50,50,50);
    -fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.4) , 5, 0.0 , 0 , 1 );
    /*-fx-background-insets: 0,1,4,5,6;*/
    -fx-background-radius: 9,8,5,4,3;   
    -fx-padding: 3 11 3 11;
    -fx-font-size: 11px;
    -fx-font-family: "Calibri";
    -fx-border: 1px;
    -fx-border-color: rgb(30,30,30);
.borderpane {
    -fx-background-color: rgb(50,50,50);
    -fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.4) , 5, 0.0 , 0 , 1 );
    /*-fx-background-insets: 0,1,4,5,6;*/
    -fx-background-radius: 9,8,5,4,3;   
    -fx-padding: 3 11 3 11;
    -fx-font-size: 11px;
    -fx-font-family: "Calibri";
    -fx-border: 1px;
    -fx-border-color: rgb(30,30,30);
/*Layouts menores*/
*.Hbox {
-fx-background-color: rgb(80,80,80);
-fx-background-radius: 10px;
-fx-border-width: 2px;
-fx-border-color: rgb(110,110,110);
-fx-border-radius: 10px;
-fx-padding: 5px;
-fx-spacing: 5px;
*.Vbox {
-fx-background-color: rgb(80,80,80);
-fx-background-radius: 10px;
-fx-border-width: 2px;
-fx-border-color: rgb(110,110,110);
-fx-border-radius: 10px;
-fx-padding: 5px;
.frame {
    -fx-background-color: rgb(80, 80, 80);
    -fx-padding: 2px;
    -fx-border-width: 2px;
    -fx-border-color: rgb(110, 110, 110) ;
.display-frame {
    -fx-border-color: rgb(230, 230, 230);
    -fx-border-radius: 10px;
    -fx-border-width: 2px;
    -fx-padding: 2px;
    -fx-background-color: linear-gradient(#505050 5%, #505050 60%, #404040 80%);
/*botones*/
.toggle-button{
    min-width: 25px;
     max-width: 80px;
     min-height: 18px;
     max-height: 19px;
    -fx-border-radius:10px;
    -fx-padding: 5; /*espacio entre los bordes del boton*/
    -fx-background-radius: 10px;
    -fx-background-color:
        #090a0c,
        linear-gradient(#404040 0%, #404040 5%, #303030 60%)
        radial-gradient(center 50% 0%, radius 100%, rgba(114,131,148,0.9), rgba(255,255,255,0));
    -fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 3, 0.0 , 0 , 1);
    -fx-text-fill: white ;
    -fx-font-size: 11px;
    -fx-font-family: "Calibri";
.toggle-button:hover {
    -fx-effect: dropshadow( three-pass-box , #808080  , 5, 0.6 , 0 , 0);
.toggle-button:selected {
    -fx-background-color: rgb(130,130,130);
    -fx-text-fill: white;
    -fx-border-insets: 0;
    -fx-effect: dropshadow( three-pass-box , rgba(0, 225, 255,1) , 5, 0.3 , 0 , 0);
/*.menu-item {
    -fx-background-color: gray;
.button {
     min-width: 25px;
     max-width: 80px;
     min-height: 18px;
     max-height: 19px;
    -fx-border-radius:10px;
    -fx-padding: 5; /*espacio entre los bordes del boton*/
    -fx-background-radius: 10px;
    -fx-background-color:
        #090a0c,
        linear-gradient(#404040 0%, #404040 5%, #303030 60%)
        radial-gradient(center 50% 0%, radius 100%, rgba(114,131,148,0.9), rgba(255,255,255,0));
    -fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 3, 0.0 , 0 , 1);
    -fx-text-fill: white ;
    -fx-font-size: 11px;
    -fx-font-family: "Calibri";
.button:hover {
   -fx-effect: dropshadow( three-pass-box , #808080  , 5, 0.6 , 0 , 0);
.button:pressed {
/*    -fx-border-color:rgb(0, 225, 255);*/
/*    -fx-border-width: 2px;*/
    -fx-background-color: rgb(130,130,130);
    -fx-text-fill: white;
    -fx-border-insets: 0;
    -fx-effect: dropshadow( three-pass-box , rgba(0, 225, 255,1) , 5, 0.3 , 0 , 0);
#nvoPlanBtn:focused, #openPlanBtn:focused, #savePlanBtn:focused, #closePlanBtn:focused,
#addUnitsBtn:focused, #editUnitsBtn:focused, #tareasBtn:focused, #marcadoresBtn:focused, #derrotasBtn:focused,
#patronesBtn:focused, #metOCBtn:focused {
    -fx-background-color: rgb(130,130,130);
    -fx-text-fill: white;
    -fx-border-insets: 0;
    -fx-effect: dropshadow( three-pass-box , rgba(0, 225, 255,1) , 5, 0.3 , 0 , 0);
.etiquetas-botones {
    -fx-text-fill: white;
    -fx-font-style: italic;
#newButton:pressed, #openButton:pressed, #saveButton:pressed, #saveAsButton:pressed, #layersButton:pressed,
#zoomInButton:pressed, #zoomOutButton:pressed, #zoomMexicoButton:pressed, #zoomMundoButton:pressed, #zoomBoxButton:pressed,
#panViewButton:pressed, #selectButton:pressed, #pointButton:pressed, #poliLineButton:pressed{
    -fx-background-color: rgb(130,130,130);
    -fx-text-fill: white;
    -fx-border-insets: 0;
    -fx-effect: dropshadow( three-pass-box , rgba(0, 225, 255,1) , 5, 0.3 , 0 , 0);
.split-pane .split-pane-divider {
    -fx-background-color: rgb(50,50,50);
    -fx-border-color: rgb(50,50,50);
    -fx-minor-tick-visible: false;
#newButton {
/*    -fx-text-fill: null;*/
    -fx-graphic: url("../signa/img/file_new.png");
/*    -fx-background-color: transparent;*/
#openButton {
/*    -fx-text-fill: null;*/
    -fx-graphic: url("../signa/img/abrir.png");
/*    -fx-background-color: transparent;*/
#saveButton {
/*    -fx-text-fill: null;*/
    -fx-graphic: url("../signa/img/guardar.png");
/*    -fx-background-color: transparent;*/
#saveAsButton {
/*    -fx-text-fill: null;*/
    -fx-graphic: url("../signa/img/guardar_como.png");
/*    -fx-background-color: transparent;*/
#layersButton {
/*    -fx-text-fill: null;*/
    -fx-graphic: url("../signa/img/Layers.png");
/*    -fx-background-color: transparent;*/
#zoomInButton {
/*    -fx-text-fill: null;*/
    -fx-graphic: url("../signa/img/Zoom_In.png");
/*    -fx-background-color: transparent;*/
#zoomOutButton {
/*    -fx-text-fill: null;*/
    -fx-graphic: url("../signa/img/Zoom_Out.png");
/*    -fx-background-color: transparent;*/
#zoomMexicoButton {
/*    -fx-text-fill: null;*/
    -fx-graphic: url("../signa/img/mexico.png");
/*    -fx-background-color: transparent;*/
#zoomMundoButton{
/*    -fx-text-fill: null;*/
    -fx-graphic: url("../signa/img/mundo.png");
/*    -fx-background-color: transparent;*/
#zoomBoxButton{
/*    -fx-text-fill: null;*/
    -fx-graphic: url("../signa/img/zoom-box.png");
/*    -fx-background-color: transparent;*/
#panViewButton {
/*    -fx-text-fill: null;*/
    -fx-graphic: url("../signa/img/pan.png");
/*    -fx-background-color: transparent;*/
#selectButton {
/*    -fx-text-fill: null;*/
    -fx-graphic: url("../signa/img/pointer.png");
/*    -fx-background-color: transparent;*/
#pointButton {
/*    -fx-text-fill: null;*/
    -fx-graphic: url("../signa/img/punto.png");
/*    -fx-background-color: transparent;*/
#poliLineButton {
/*    -fx-text-fill: null;*/
    -fx-graphic: url("../signa/img/polilinea.png");
/*    -fx-background-color: transparent;*/
#shapeButton {
/*    -fx-text-fill: null;*/
    -fx-graphic: url("../signa/img/poligono.png");
/*    -fx-background-color: transparent;*/
#closeButton {
    -fx-text-fill: null;
    -fx-graphic: url("../signa/img/close.png");
    -fx-background-color: transparent;
#closeButton:hover{
    -fx-effect: dropshadow( three-pass-box , red  , 5, 0.6 , 0 , 0);
#closeButton:pressed{
    -fx-effect: dropshadow( three-pass-box , aqua  , 5, 0.6 , 0 , 0);
#helpButton {
    -fx-text-fill: null;
    -fx-graphic: url("../signa/img/Help_Icon.png");
    -fx-background-color: transparent;
#chatButton {
    -fx-text-fill: null;
    -fx-graphic: url("../signa/img/chat.png");
    -fx-background-color: transparent;
/*.menu-button {
     min-width: 25px;
     max-width: 80px;
     min-height: 18px;
     max-height: 19px;
    -fx-text-fill:white;
    -fx-border-radius:10px;
    -fx-padding: 5; espacio entre los bordes del boton
    -fx-background-radius: 10px;
    -fx-background-color:
        #090a0c,
        linear-gradient(#404040 0%, #404040 5%, #303030 60%)
        radial-gradient(center 50% 0%, radius 100%, rgba(114,131,148,0.9), rgba(255,255,255,0));
    -fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 3, 0.0 , 0 , 1);
    -fx-text-fill: aliceblue;
.menu-item:hover {
     -fx-blend-mode: darken;
.label{
    -fx-font-weight: bold;
.label.headPaneLabel{
    -fx-font-size:20px;
    -fx-font-family: "Calibri";
    -fx-text-fill: rgb(234,254,254);
    -fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 3, 0.0 , 0 , 1);
.label.contentLabel {
    -fx-font-size:11px;
    -fx-font-family:"Calibri";
    -fx-font-style: normal ;
    -fx-text-fill: rgb(234,254,254);
    -fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 3, 0.0 , 0 , 1);  
.label-name {
    -fx-text-fill: rgb(0, 225, 255);
    -fx-font-size: 36px;
    -fx-font-weight: bold;
.label-unit-station {
    -fx-text-fill: rgb(0, 225, 255);
    -fx-font-size: 17px;
    -fx-font-weight: bold;
.label-date-timeUTC-gps {
    -fx-text-fill: rgb(0, 225, 255);
    -fx-font-size: 14px;
    -fx-font-weight: bold;
.label-cog-sog-hdg {
    -fx-text-fill: rgb(0, 225, 255);
    -fx-font-size: 16px;
    -fx-font-weight: bold;
.label-long-lat {
    -fx-text-fill: rgb(0, 225, 255);
    -fx-font-size: 22px;
    -fx-font-weight: bold;
/*radiobuttons*/
.radio-button {
    -fx-text-fill: rgb(234,254,254);
    -fx-border: transparent;
.radio-button:pressed .dot {
    -fx-background-color: black;
.radio-button:hover .radio {
    -fx-effect: dropshadow( three-pass-box , #00FFFF , 3, 0.0 , 0 , 1);      
.radio-button:focused .radio{
  -fx-effect: dropshadow( three-pass-box , #00FFFF , 3, 0.0 , 0 , 1);
.separator {
    -fx-background-color: rgb(234,254,254);
    -fx-border-style: none;
    -fx-border-width: 0px;
.text-field {
    -fx-border-width: 1px;
    -fx-border-color: rgb(130,130,130);
    -fx-border-radius: 5px;
    -fx-background-radius: 5px;
    -fx-background-color: rgb(50,50,50);
    -fx-text-fill: white;
.choice-box {
    -fx-border-width: 1px;
    -fx-border-color: rgb(130, 130, 130);
    -fx-border-radius: 5px;
    -fx-text-fill: white;
    -fx-background-radius: 5px;
    -fx-background-color: rgb(50,50,50);
.table-view {
    -fx-background-color: rgb(70,70,70);
    -fx-text-fill: white;
    -fx-border-style: solid;
    -fx-border-color: transparent;
/*    -fx-border-insets: 0 1 1 0, 0 0 0 0;*/
    -fx-border-width: 0.083333em, 0.083333em;
.table-view .column-header{
    -fx-border-style: solid;
    -fx-border-color: rgb(130, 130, 130);
    -fx-border-radius: 5px;
    -fx-background-radius: 5px;
    -fx-border-insets: 0 1 1 0, 0 0 0 0;
    -fx-border-width: 0.083333em, 0.083333em;
.table-view .column-header .label{
    -fx-font-size: 11px;
    -fx-font-family: "Calibri";
    -fx-text-fill: white;
/*    -fx-alignment: "left";*/
.table-view .column-header-background {
    -fx-background-radius: 5px;
    -fx-font-family: "Calibri";
    -fx-background-color:  rgb(50,50,50);
.table-view .column-header-background .filler{
    -fx-background-color: rgb(50,50,50);
    -fx-border-color: rgb(50,50,50);
.table-row-cell {
    -fx-background-color: rgb(100,100,100);
    -fx-background-insets: 0, 0 0 1 0;
    -fx-padding: 0.0em;
.table-row-cell:selected {
    -fx-background-color: dimgrey;
    -fx-background-insets: 0, 0 0 1 0;
    -fx-padding: 0.0em;
/*.table-cell {
    -fx-font-style: bold;
    -fx-text-fill: black;
.table view .table-cell:selected{
    -fx-text-fill: white;
/*.table-row-cell:odd {
    -fx-background-color: #414141;
    -fx-background-insets: 0, 0 0 1 0;
    -fx-padding: 0.0em;  0
    -fx-text-fill: white;
.scroll-bar .track{
    -fx-background-color: rgb(130,130,130);
    -fx-border-width: 1px;
    -fx-border-color: gray;
.scroll-bar .track:pressed{
    -fx-background-color: white;
.scroll-bar .thumb{
    -fx-background-color:
        #090a0c,
        linear-gradient(#404040 0%, #404040 5%, #303030 60%)
        radial-gradient(center 50% 0%, radius 100%, rgba(114,131,148,0.9), rgba(255,255,255,0));
    -fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 3, 0.0 , 0 , 1);
.scroll-bar .thumb:hover{
    -fx-effect: dropshadow( three-pass-box , #808080  , 5, 0.6 , 0 , 0);
.scroll-bar .thumb:pressed{
   -fx-background-color: rgb(130,130,130);
   -fx-effect: dropshadow( three-pass-box , rgba(0, 225, 255,1) , 5, 0.3 , 0 , 0);
.scroll-bar .decrement-button{
   -fx-background-color:
        #090a0c,
        linear-gradient(#404040 0%, #404040 5%, #303030 60%)
        radial-gradient(center 50% 0%, radius 100%, rgba(114,131,148,0.9), rgba(255,255,255,0));
    -fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 3, 0.0 , 0 , 1);
.scroll-bar .decrement-button:hover {
      -fx-effect: dropshadow( three-pass-box , #808080  , 5, 0.6 , 0 , 0);
.scroll-bar .decrement-button:pressed{
    -fx-background-color: rgb(130,130,130);
    -fx-effect: dropshadow( three-pass-box , rgba(0, 225, 255,1) , 5, 0.3 , 0 , 0);
.scroll-bar .decrement-button .decrement-arrow{
    -fx-background-color: gray;
    -fx-border-color: transparent;
    -fx-border-width: 0px;
.scroll-bar .decrement-button .decrement-arrow:pressed{
    -fx-background-color: white;   
.scroll-bar .increment-button{
    -fx-background-color:
        #090a0c,
        linear-gradient(#404040 0%, #404040 5%, #303030 60%)
        radial-gradient(center 50% 0%, radius 100%, rgba(114,131,148,0.9), rgba(255,255,255,0));
    -fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 3, 0.0 , 0 , 1);
.scroll-bar .increment-button:hover{
     -fx-effect: dropshadow( three-pass-box , #808080  , 5, 0.6 , 0 , 0);
.scroll-bar .increment-button:pressed{
    -fx-background-color: rgb(130,130,130);
    -fx-effect: dropshadow( three-pass-box , rgba(0, 225, 255,1) , 5, 0.3 , 0 , 0);
.scroll-bar .increment-button .increment-arrow{
    -fx-background-color: gray;
    -fx-border-color: transparent;
    -fx-border-width: 0px;
.scroll-bar .increment-button .increment-arrow:pressed{
    -fx-background-color: white;
.scroll-pane .corner{
    -fx-background-color: transparent;
.tab-pane{
    -fx-tab-max-height: 12pt;
.tab-pane .tab-content-area{
   -fx-background-color: rgb(80, 80, 80);
   -fx-padding: 2px;
   -fx-border-width: 2px;
   -fx-border-color: rgb(110, 110, 110) ;
.tab-pane .tab-header-area .tab{
    -fx-background-color: rgb(60, 60, 60);
    -fx-background-radius: 4px;
    -fx-border-width: 2px;
    -fx-border-color: #707070;
    -fx-border-radius: 4px;
    -fx-padding: 0 0 0 0;
.tab-pane .tab-header-area .tab:hover{
    -fx-border-color:  linear-gradient(#909090 60%, #909090 5%, #909090 0%);
.tab-pane .tab-header-area .tab:selected{
    -fx-border-color:  linear-gradient(#00FFFF 60%, #00FFFF 5%, #00FFFF 0%);
    -fx-background-color: rgb(130,130,130);
    -fx-text-fill: white;
    -fx-border-insets: 0;
.tab-pane .tab-header-area .tab-header-background {
    -fx-background-color:transparent;
.tab-pane .tab-header-area .tab .tab-label{
    -fx-text-fill: white;
     -fx-font-size: 11px;
    -fx-font-family: "Calibri";
    -fx-alignment: center;
}Edited by: biochemistry43 on 13/12/2012 09:06 AM

Similar Messages

  • Using External JAR file within Web Dynpro DC

    Hi,
    I have created a Web Dynpro DC and I need to use an external JAR file.
    I want to use this external JAR file within the same Web Dynpro DC and NOT creating another DC to house the external JAR file as I can see from the blog.
    I have included the external JAR file in the "lib" folder of the Web Dynpro DC.
    When I tried to perform a DC build, it keeps complaining error....
    How should I solve this problem...
    Thanks.
    mike

    Hi Mike,
    Go through the below which might help you.
    Re: Lookup of RFC Destinations
    Re: Import a Java Bean from a different DC
    Web Dynpro References
    Re: j2ee library with webdynpro
    Re: Web Services :HTTP Destination not getting resloved.
    http://help.sap.com/saphelp_nw70/helpdata/en/46/3ce3e4df201d63e10000000a11466f/frameset.htm
    Thanks n Regards,
    Jhansi Miryala

  • Problems in Frame 1 with External HTML files

    I am having an issue with loading two external html files within
    my website.
    I have a case study page with a
    dynamic textbox and a scrollbar attached to it.
    I have another page "news" that
    contains another dynamic textbox with a scrollbar attached to
    it.
    I created two .txt files with my
    information for both pages.
    Working in Flash CS3 with
    Actionscript 2.0 at 30fps.
    My problem is this:
    I can go to my news page and the .txt file will be visible,
    but once I go to the other case study page and reveal that .txt
    file, I go back to the news page and the .txt file is no longer
    visible. Only a nonworking scrollbar is displayed with no text and
    nothing else.
    I believe I need to do something different in Frame 1's
    Actioncode. I just don't know how to get the other .txt file to
    work along with the other. I will be adding more .txt files in
    dynamic textboxes later and I really need to resolve this issue so
    I am able to add them with no problems. Appreciate anyone's help
    immediately if you can.
    Here is the temporary website link so you can test and see my
    problem. Don't forget to go the the news button first in the
    navbar. Then go to the case studies link and find the MAX Cat
    Packaging and view that .txt file, then go back and you will see my
    problem.
    Click Here to
    Visit Site

    well I made a separate layer and placed the symbol with the
    text box and scrollbar attached. That was the only thing on the
    layer as you mentioned to separate it. I don't see how I could
    separate the scrollbar from it as it is needed. So I made some
    keframes, selected the textbox inside the symbol and added the code
    you told me to add:
    caseStudyMC._visible=false; In the other frames where I
    needed it visible I added the code:
    caseStudyMC._visible=true;
    When I tested the movie. I didn't see the text but I saw the
    scroll bar still and the text still failled to appear after viewing
    the MC Case study text.
    Is the code supposed to go in Frame1? What do I do with the
    scroll bar image? I tried to Make it all disappear using the alpha
    at 0, but it still didn't work.
    thanks for all your help. hope you understand what I
    wrote.

  • How do I encrypt my external hard drive and subsequently a specific file within it, using my Mac? I tried creating a disk image but permission was denied.

    Encrypting an external hard drive and specific folders within. Permission denied using disk image.

    VKP90 wrote:
    When I tried to encrypt a single file within the hard drive itself, I got the following: Disk Utility Progress: Unable to create "Name of my file" (Permission Denied).
    When I tried encrypting the entire hard disk itself, I got: A GUID Partition Table (GPT) partitioning scheme is required.
    I have also currently used Time Machine on the external hard drive, along with saving other data. Hence, I am not sure if partitioning is going to delete any of this (a video I watched mentioned that using the + button when creating partitions retains current data). Backing up the external hard drive is out of the option since it is the back up to my Mac.
    You can't encrypt a single file. I'm not sure what you did to try. You can make an encrypted disk image which begins with a folder, if desired. Or, you can just create a blank, encrypted disk image, then move your desired files into that.
    While you could partition off the free space without erasing the disk, you cannot encrypt it because you need a GUID Partition table which requires you to repartition the entire drive, not just the free space.

  • Executing external files within java

    Could someone pls tell me how i can execute external files, i.e. .bat files within java. thanks.

    See java.lang.Runtime and java.lang.Process classes.
    http://java.sun.com/j2se/1.4.1/docs/api/java/lang/Runtime.html
    http://java.sun.com/j2se/1.4.1/docs/api/java/lang/Process.html
    And if you search this site you can probably find a ton of examples.
    Keep in mind that using this can limit portablilty of your Java application.

  • Fx:include and fx:script - when is the included fxml file parsed?

    I'm curious to know when an included (via fx:include tag) fxml document is parsed and if a script defined in the main fxml document can reference elements from the included document. The example below results in the following error message: +"sun.org.mozilla.javascript.internal.EcmaError: ReferenceError: "loadOrdersButton" is not defined. (<Unknown source>#2) in <Unknown source> at line number 2"+
    Example:
    Main.fxml
    The script fails to find the loadOrdersButton defined in HeaderFields.fxml. (Yes the button's fx:id is set to loadOrdersButton)
    <?xml version="1.0" encoding="UTF-8"?>
    <BorderPane prefHeight="800.0" prefWidth="1200.0" xmlns:fx="http://javafx.com/fxml">
        <top>
                <fx:include source="HeaderFields.fxml">
                    <fx:script><![CDATA[
                        loadOrdersButton.setVisible( false );
                    ]]></fx:script>
                </fx:include>
        </top>
        <center>
        </center>
    </BorderPane>
    HeaderFields.fxml
    <?xml version="1.0" encoding="UTF-8"?>
    <AnchorPane xmlns:fx="http://javafx.com/fxml">
      <children>
        <Pane>
          <children>
            <Button fx:id="loadOrdersButton" />
          </children>
        </Pane>
      </children>
    </AnchorPane>

    I'm curious to know when an included (via fx:include tag) fxml document is parsed It is parsed as soon as it is encountered. In other words, the include is fully processed before the next element in the including file is processed.
    and if a script defined in the main fxml document can reference elements from the included document.It cannot. FXML IDs are considered "private" to the document and its associated controller (or any script code directly defined or referenced by that document). It is not possible to "inject" script code into an include as you appear to be attempting to do here.
    However, an include's controller is accessible to the including document. So if the controller for HeaderFields.fxml exposed a "loadOrdersButton" property via a getLoadOrdersButton() method, you could do something like this:
    <fx:include fx:id="headerFields" source="HeaderFields.fxml"/>
    <fx:script><![CDATA[
        headerFieldsController.loadOrdersButton.setVisible(false);
    ]]></fx:script>Of course, another option is to simply include the script in the HeaderFields.fxml file itself:
    <Button fx:id="loadOrdersButton" />
    <fx:script><![CDATA[
        loadOrdersButton.setVisible(false);
    ]]></fx:script>But I'm assuming there's some reason you don't want to do that.

  • FAQ: How do I load an external SWF file into a parent SWF file?

    A ton of Flash users visit Adobe’s we site every month wondering  about how to load an external SWF file from within another SWF.
    Adobe's own TechNote on the subject attempts to answer the basic question, along with some common follow-up questions, including:
    How do I load more than one SWF?
    How do I load a SWF into a specific location in the display list?
    How do I resize the loaded SWF?
    How do I set its X and Y location?
    Here are some additional resources that elaborate on loading content and on working with the display list:
    Sample files for the above TechNote. A set of 3 FLA and 3 corresponding SWF files, including a parent SWF and 2 SWFs that the parent loads.
    Help > AS3 Developer’s Guide > Loading an external SWF file
    Help > AS3 Developer’s Guide > Loading display content dynamically
    Loading multiple external SWFs within a main SWF – CreativeCow.net forums
    Video tutorial: ActionScript 101 – Episode 6: Adding named objects to the Stage. By Doug Winnie. An example of how to add the loaded external asset to the Stage and modify its location or other properties.
    Video tutorial: Preloading in ActionScript 3.0.  By Lee Brimelow. A slightly more complicated example, showing how to  make the parent SWF display information about the progress of loading  the external SWF.
    Tutorial: Loading and unloading SWFs - FlashAndMath.com
    This article provides several examples of how to communicate between a parent SWF file and the loaded SWF:
    SWF to SWF Communcation via ActionScript 3.0 (by kglad)

    quote:
    Originally posted by:
    NedWebs
    You now seem to want to get rid of the swf once it has loaded
    and played itself thru. To do that you would need to have something
    in the swf itself that triggers its removal in its last frame. The
    following might work...
    MovieClip(this.parent).removeChild(this);
    Unfortunately I couldn't get this to work. I placed it on the
    last frame of the SWF to be called - is that right?
    I am not sure I am doing it correctly...

  • Creating a new FXML File (Eclipse IDE) cannot finish

    Following steps on: http://docs.oracle.com/javafx/scenebuilder/1/use_java_ides/sb-with-eclipse.htm#BABBFEBD
    5. In the FXML File dialog box, complete the creation of the new FXML document using the following steps:...
    I get the panel to fill in but no matter what I enter for the Source folder, Package or name. When I click on Finish nothing happens - no error, popup etc.
    The example also shows Root Element (default):
      If not already set, specify the FXML document's root element by clicking Browse and selecting an item from the Find Preloader dialog box. The default value shown is AnchorPane.
    This field is blank and clicking the drop down values are blank - Browse doesn't do anything, similar to Finish, it's enabled but doesn't do anything.
    Any suggestions or fixes for the tutorial?
    The other steps seem to be working up till this point. Thanks.

    richardb wrote:
    Hello forum,
    I have restored an online backup using a third party tool along with the control file. I need to bring this backup into service under a different database name. I already had a database with the new name in place so I am using that pfile.
    When I try to mount the database I get the error ORA-01103: database name 'EDRMS' in controlfile is not 'EDRMSTST'
    However, if I edit the pfile and set the database name to EDRMS I get the following errors in the alert log:
    ORA-09341: scumnt: unable to mount database
    OSD-04400: unable to acquire internal semaphore for process
    O/S-Error: (OS 183) Cannot create a file when that file already exists.
    I think these errors arise because the EDRMS database is running on the server at this time.
    I believe I have to recreate the control file to have the new database name, i.e. EDRMSTST but how can I start that process if the database will not mount?
    - Regards,
    Richardrealize we only know what you post; which is scant to say the least.
    We don't know what you did that threw the posted error.
    We don't even know OS name or version.

  • Can not open FXML files in DataApp example

    Hi,
    I download javafx_samples-2_2_0-windows.zip and unzip, and open DataApp project. I build and run, it's ok.
    but I cannot open many fxml files, for example, it gives me following error messages:
    Error loading file 'C:/work/tianqing/Java/JavaFX/TestProjects/DataApp/DataAppClient/src/com/javafx/experiments/dataapp/client/livetab/live-tab.fxml'.
    C:\work\tianqing\Java\JavaFX\TestProjects\DataApp\DataAppClient\src\com\javafx\experiments\dataapp\client\livetab\live-tab.fxml:0: error:
         java.lang.ClassNotFoundException: com.javafx.experiments.dataapp.client.map.UnitedStatesMapPane
    Could anybody tell me why?
    I'm using Netbeans 7.2 and my java version is "1.7.0_07".
    Thanks very much!
    Terry

    Hi,
    I believe that's caused by one of the bugs mentioned in SceneBuilder 1.0 release notes. When you open an FXML file that contains custom types - such as com.javafx.experiments.dataapp.client.map.UnitedStatesMapPane, SceneBuilder should popup a dialog window - prompting you to enter a classpath from which to resolve these types. Unfortunately, this popup is not displayed when you open an FXML file from NetBeans or by double clicking on the FXML file from the file system.
    Sometimes SceneBuilder will open - but all custom types will be hidden - sometimes you will get a ClassNotFoundException (depending on how the custom type was imported).
    Fortunately there's a work around: start SceneBuilder by double clicking on SceneBuider's icon - instead of double clicking on an FXML file. Then use "File > Open..." from within SceneBuilder to open your file.
    Hope this helps,
    -- daniel

  • SharePoint2013 referencing external JS file in page layout not working

    Hi,
    I have created a custom page layout. In that custom page layout I have many HTML markup and controls like Dropdowns, hyperlinks (hrefs) etc. 
    Clicking on hyperlink hides or shows a div. The HTML markup and controls shows up fine when I create a page from page layout.
    The issue I am having is the JavaScript to hide or show div is in external JS file, which I am referencing in the page layout as below:-
     <SharePoint:ScriptLink name="~sitecollection/Style Library/Scripts/my.js"
     runat="server" />
    But when I click on “hyperlinks (hrefs)” the script in external js file doesn’t fire.
    I also tried using
    <script src="../../mysite/Style%20Library/Scripts/my.js"></script>
    I even tried below:-
    <script type="text/javascript" language="javascript" src="</script">https://sharepoint.com/mysite/Style%20Library/Scripts/mys.js"></script>
    <SharePoint:ScriptLink id="ScriptExternalJs" runat="server" Name="~SiteCollection/Style Library/Scripts/my.js" OnDemand="false" LoadAfterUI="true" Localizable="false" ></SharePoint:ScriptLink>
    But nothing seem to be working, I am able to refer an external CSS file but
    not JS file within the pagelayout under "PlaceHolderAdditionalPageHead" section.
    Any idea what's wrongs?
    Thanks,

    Hi,
    Please try to use the following statement:
    <link id="Link1" href="<% $SPUrl:~SiteCollection/Style Library/Scripts/my.js%>" runat="server" type="text/script" />
    More information is here:
    http://microsoft-techies.blogspot.com/2014/03/how-to-add-styles-and-javascript-files.html
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • How to refer an xml file within a xml file?

    Hi
    I would like to refer a xml file within a xml file from where i would like to extracts some elements & attributes.
    Plz, suggest me hot to do.
    Thank you.

    You mean you want to link the file thru some resource pointer and then make the external file availabe for parsing and other processing operations?

  • Creating external mapping file for C# application

    Hi,
    I'm using Robohelp 7 and producing HTMLHelp files. So far, the programmers have been making internal links in the program to call my help, but I'd like to take this over using an external mapping file.
    Is it possible to use regular map files, using the built-in Map ID functionality, for C# .NET applications? If so, is there something special I have to do? Or do I just create a regular map file?
    Thanks!

    I mean that, in the past, they have hard-coded the link to each help page within the application. But, I'd like to take that over by maintaining a Map file where I specify the link between the topic and the Map ID.
    However, I'm not sure that the map file works for C# .Net applications, and the engineers aren't sure either. I told them I'd go investigate.
    Is there a way to create a Map file, or something that works like a map file, for a C# .Net application? Or do they have to go on hard-coding the links to each topic?

  • Can I embed a PDF file within a Pages document?

    I am working with Pages '09 and would like to embed a rather long PDF document file into my Pages text.  I want the reader to be able to click on the PDF file and have it open so that the reader can gather more information on the subject without making the actual Pages document text any longer.  I don't want the PDF file to be an external link that sends the reader away from the document -- I want to know if I can embed the PDF file WITHIN the pages document and have it open only when clicked.  I don't think I can do this.  Thanks.
    Small Town Gal.

    I found my answer within archived discussions - convert the file to a PDF and then embed the PDF file as an attachment.  Thanks.
    Barbara Smits

  • Load an external gallery  file into a host div via Ajax method?

    I was just wondering if anyone has been able to get a spry
    gallery to work when placed within an external html file and loaded
    into the host div of a page using Ajax method to load. It must work
    remotely (on the Internet).
    I've tried and mutilated enough sample files, that I'm
    continuing my work in Flash and don't have anything un-mutilated to
    post at this moment.
    If you have, great. Let me know. If you have a link somewhere
    it has been done correctly that I can look into and are willing to
    post the link, I'd be glad to see it working.
    thanx.

    I am not calling any scripts from an outside server. All of
    the external htm files I am pulling are located within the site
    root (or in a sub folder of).
    What I am trying to do is have two Spry gallery slideshows
    (very similar to the demo) coded on separate htm pages that are
    brought into divs of the index file (main file).
    I have a spry tabbed panels widget. The content for each of
    the "TabbedPanelsContent" divs are in external htm files. The
    external files that contain basic text, images, and links work
    beautifully. The files that have Spry Gallery slideshows in them do
    not display properly.
    The experimental files I've created are in major disarray
    because I've added other issues to test. When I can return to it
    and prepare a new troubleshooting file, I will post a link if I
    haven't resolved it. -- or the solution if I find it. Mainly I was
    wondering if anyone had created something similar so I could
    inspect the code to compare.
    Thank you for replying Cristian!

  • CSS Image loading problem by dynamically loading from fxml file?

    h1. Introduction
    The application I am developing loads an FXML file from a Controller. The FXML uses CSS and images for buttons are set in the CSS.
    CSS directory structure
    <package>.fxml
    Images
    <package>.fxml.resources.<subdir>
    Example CSS Code
    .buttonImage {
        -fx-background-image: url("resources/subdir/image.png");
    }Example loading fxml from controller code
             URL location = getClass().getResource("/package/fxml/UI.fxml");
             FXMLLoader fxmlLoader = new FXMLLoader(location);
             fxmlLoader.setLocation(location);
             fxmlLoader.setBuilderFactory(new JavaFXBuilderFactory());
             Parent root = (Parent)fxmlLoader.load(location.openStream());
             Controller = (Controller) fxmlLoader.getController();
             newPane.getChildren().add(root);h1. Problem
    The fxml file does not load and causes the following error:
    javafx.fxml.LoadException: Page language not specified.Note, the fxml file loaded correctly before images were added.
    Any ideas of what might be going wrong?
    h1. Attempted
    I have attempted the following: tried changing the url of the image as an absolute path.

    No Problem: Note, this is the actual FXML, my previous examples were simplifications of package names and class names in order to directly illustrate the problem. Note, I am using SceneBuilder to develop the FXML file.
    <?xml version="1.0" encoding="UTF-8"?>
    <?import java.lang.*?>
    <?import java.net.*?>
    <?import java.util.*?>
    <?import javafx.collections.*?>
    <?import javafx.scene.*?>
    <?import javafx.scene.control.*?>
    <?import javafx.scene.layout.*?>
    <?import javafx.scene.text.*?>
    <AnchorPane id="AnchorPane" prefHeight="396.0000999999975" prefWidth="350.0" styleClass="mainFxmlClass" xmlns:fx="http://javafx.com/fxml" fx:controller="com.monkygames.kbmaster.controller.ProfileUIController">
      <children>
        <Label layoutX="14.0" layoutY="14.0" text="Profiles">
          <font>
            <Font size="18.0" />
          </font>
        </Label>
        <GridPane layoutX="15.0" layoutY="44.0" prefHeight="99.0" prefWidth="335.0">
          <children>
            <Label text="Type: " GridPane.columnIndex="0" GridPane.rowIndex="0" />
            <ComboBox fx:id="typeCB" prefWidth="249.0" GridPane.columnIndex="1" GridPane.rowIndex="0">
              <items>
                <FXCollections fx:factory="observableArrayList">
                  <String fx:value="Item 1" />
                  <String fx:value="Item 2" />
                  <String fx:value="Item 3" />
                </FXCollections>
              </items>
            </ComboBox>
            <Label text="Program: " GridPane.columnIndex="0" GridPane.rowIndex="1" />
            <ComboBox fx:id="programCB" prefWidth="249.0" GridPane.columnIndex="1" GridPane.rowIndex="1">
              <items>
                <FXCollections fx:factory="observableArrayList">
                  <String fx:value="Item 1" />
                  <String fx:value="Item 2" />
                  <String fx:value="Item 3" />
                </FXCollections>
              </items>
            </ComboBox>
            <Label text="Profile: " GridPane.columnIndex="0" GridPane.rowIndex="2" />
            <ComboBox prefWidth="249.0" GridPane.columnIndex="1" GridPane.rowIndex="2">
              <items>
                <FXCollections fx:factory="observableArrayList">
                  <String fx:value="Item 1" />
                  <String fx:value="Item 2" />
                  <String fx:value="Item 3" />
                </FXCollections>
              </items>
            </ComboBox>
          </children>
          <columnConstraints>
            <ColumnConstraints fillWidth="false" halignment="RIGHT" hgrow="NEVER" maxWidth="-Infinity" minWidth="10.0" prefWidth="80.0" />
            <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
          </columnConstraints>
          <rowConstraints>
            <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
            <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
            <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
          </rowConstraints>
        </GridPane>
        <HBox layoutX="14.0" layoutY="150.0" prefHeight="159.0" prefWidth="335.0">
          <children>
            <Label text="Description: " />
            <TextArea prefHeight="172.0" prefWidth="247.0" wrapText="true" />
          </children>
        </HBox>
        <HBox alignment="CENTER" layoutX="11.0" layoutY="334.0" prefHeight="48.0" prefWidth="329.0">
          <children>
            <Button fx:id="newProfileB" contentDisplay="GRAPHIC_ONLY" minHeight="48.0" minWidth="48.0" mnemonicParsing="false" onAction="profileEventFired" prefHeight="48.0" prefWidth="48.0" styleClass="newProfile" text="New Profile" />
            <Button id="newProfileB" fx:id="cloneProfileB" contentDisplay="GRAPHIC_ONLY" minHeight="48.0" minWidth="48.0" mnemonicParsing="false" onAction="profileEventFired" prefHeight="48.0" prefWidth="48.0" styleClass="cloneProfile" text="Clone Profile" />
            <Button id="newProfileB" fx:id="importProfileB" contentDisplay="GRAPHIC_ONLY" minHeight="48.0" minWidth="48.0" mnemonicParsing="false" onAction="profileEventFired" prefHeight="48.0" prefWidth="48.0" styleClass="importProfile" text="Import Profile" />
            <Button id="newProfileB" fx:id="exportProfileB" contentDisplay="GRAPHIC_ONLY" minHeight="48.0" minWidth="48.0" mnemonicParsing="false" onAction="profileEventFired" prefHeight="48.0" prefWidth="48.0" styleClass="exportProfile" text="Export Profile" />
            <Button id="newProfileB" fx:id="printPDFB" contentDisplay="GRAPHIC_ONLY" minHeight="48.0" minWidth="48.0" mnemonicParsing="false" onAction="profileEventFired" prefHeight="48.0" prefWidth="48.0" styleClass="pdfProfile" text="Print to PDF" />
            <Button id="newProfileB" fx:id="deleteProfileB" contentDisplay="GRAPHIC_ONLY" minHeight="48.0" minWidth="48.0" mnemonicParsing="false" onAction="profileEventFired" prefHeight="48.0" prefWidth="48.0" styleClass="deleteProfile" text="Delete Profile" />
          </children>
        </HBox>
      </children>
      <stylesheets>
        <URL value="@master.css" />
        <URL value="@profile.css" />
      </stylesheets>
    </AnchorPane>Edited by: 960799 on Jan 4, 2013 8:58 PM
    Edited by: 960799 on Jan 4, 2013 8:59 PM

Maybe you are looking for

  • How to convert Date format in Apex?

    Hi All, I have created a Date picker item in Apex as "dd-mm-yyyy", Now when they select this date picker it has to convert into "Day,Month DD, YYYY". I have trired like this but it is not wroking, can any one help me to get this to be done. Under the

  • ITunes Store will not load in iTunes 11.0.1

    I have tried all the suggested tips but the store will NOT load with 11.0.1 any ideas are most welcome.  iTunes works fine in all other aspects.  I am using Mac OS X 10.7.5.

  • ECCS - Integration of an operative FS version  with a FS Item Hierarchy

    Dear collegues, I'm trying to create a FS Item Hierarchy on ECCS as a copy from the FS Version (T011) but I'm not able to get the GL accounts as a position, but only the previous node of the tree, I mean, no gl account is populated as a position. I h

  • I downloaded a trial version and it deleted ALL of my Adobe software. Help!!

    I downloaded a trial version of the new CS because my (purchased) CS6 wouldn't open some files from a friend. It WIPED OUT ALL of my Adobe software - EVEN on my Time Machine backups that go back 3 years. The application icon is greyed out and has a c

  • How to maintain a table in BSP

    Hi All, We have a requirement where we want to maintain entries in a table, ZHAL, in web instead of GUI(SM30). Essentially, we have to create a BSP application, through which the table can be maintained. Any thoughts on this? Thanks in advance. - Sha