Advertisement
Guest User

Untitled

a guest
Jul 8th, 2015
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.40 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <vbox id="main" width="100%">
  3.    
  4.     <script>
  5.         function enlargeButton() {
  6.             buttonTest.width = 200;
  7.             buttonTest.height = 100;
  8.         }
  9.        
  10.         buttonTest.onClick = function(e) {
  11.             trace("TEST BUTTON CLICKED");
  12.         }
  13.     </script>
  14.    
  15.     <bind source="text1.text" target="text2.text" />
  16.     <bind source="text2.text" target="text3.text" transform="prefix ${value} suffix" />
  17.    
  18.     <button id="b1" text="Button" width="100" />
  19.    
  20.     <hbox id="buttonHBox">
  21.         <button id="test" text="Enlarge Test Button" onclick="enlargeButton()" />
  22.         <button id="test2" text="Shrink Test Button" onclick="buttonTest.width = 100;buttonTest.height = 50;" />
  23.         <button id="test3" text="Button 1" onclick="trace('clicked!!! - ' + test2);buttonTest.width=400;" />
  24.         <textfield id="testfield" text="right margin: 100px" width="100%" style="margin-right: 100px" />
  25.     </hbox>
  26.    
  27.     <hbox>
  28.         <textfield id="text1" text="bob" />
  29.         <textfield id="text2" />
  30.         <textfield id="text3" />
  31.     </hbox>
  32.    
  33.     <vbox width="100%" id="testVBox">
  34.         <hbox width="100%" id="testHBox">
  35.             <button text="100% x auto" width="100%" />
  36.             <button text="140px x 100%" id="percentXX" styleNames="emphasized" width="140" height="100%" />
  37.             <button id="buttonTest" text="Test Buttion" style="___margin:20" />
  38.         </hbox>
  39.     </vbox>
  40.  
  41.     <hbox width="100%" height="100%">
  42.         <button text="100% x 100%" width="100%" height="100%" />
  43.     </hbox>
  44. </vbox>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement