Hi,
The reason for your problems is that you are using qw// which does not interpolate.
So basically qw/$var/ is a list of one element, that element being the string '$var'.
To fix it, you can do this:
my $tbMain2 = $winMain->ToolBar(-side => 'top',
-in => $tbMain,
);
One more thing: you misspelled 'movable' :)
--Ala