Sergei,
Try something like
( Smalltalk at:aClassName asSymbol ) new.
The important part is the #asSymbol, because the system dictionary
(Smalltalk is a global variable pointing to it) uses symbols for keys.
Some general precautions: use care in manipulating the system dictionary,
and/or keep very good backups :) Using it to look up classes by name should
be safe enough though, as long as you don't do anything bad to the classes
that you find. Note that some classes are singletons, and might complain;
even worse, they might not complain when they should.
Have a good one,
Bill
--
Wilhelm K. Schwab, Ph.D.
[hidden email]