scrollField
Has anyone ever used the scrollField command?
Trying to figure it out with the docs, with limited success. It seems to ignore my width and height settings so I cannot view the whole list. Here is my simple testing script.
string $A = "Item_A\n";
string $B = "Item_B\n";
string $C = "Item_C\n";
string $D = "Item_D\n";
string $list;
$list += $A;
$list += $B;
$list += $C;
$list += $D;
if (`window -q -exists qwe`) deleteUI qwe;
window -menuBar true -mxb true -mnb true -title Title -w 260 -h 200 qwe;
rowColumnLayout -numberOfRows 4 ;
text -label "Title" -align "center" -fn boldLabelFont;
text -label "-----------------------------------------------------------------------------------" -align "center";
rowColumnLayout -numberOfRows 1 -rh 1 200;
scrollField -w 500 -h 200 -wordWrap false -nl 15 -text $list -editable false shdrLists;
showWindow qwe;
All help is appreciated.
Thanks,
-dann
Last edited by Dann; 17-01-2007 at 10:11 AM.