Advertisement
Guest User

Untitled

a guest
May 25th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. string $window = `window -sizeable false -title "Text Field UI" "txtFieldUI"`;
  2. window -width 222;
  3.  
  4. rowColumnLayout -numberOfRows 1;
  5. radioCollection;
  6. radioButton -label "Prefix";
  7. radioButton -label "Suffix";
  8.  
  9.  
  10.  
  11. //create text fied
  12.  
  13. columnLayout -columnAttach "both" 5 -rowSpacing 10 -columnWidth 250;
  14. string $text = `textField`;
  15. setParent..;
  16.  
  17. showWindow $window
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement