That is correct, MyISAM is the only engine that supports fulltext. Then again, for any serious use of FULLTEXT I recommend using Sphinx (
http://sphinxsearch.com).
It is magnitudes faster with a very low footprint both on CPU and memory side. It is insanely easy to set up (took me 4 hours the other day, and that was my first time using it/setting it up after having heard many many stories about it), and opens the door to all kinds of trickery the simple fulltext solution of MyISAM does not have (soundex, synonyms, etc).
If you use the OurDelta builds of MySQL, the SphinxSE storage engine is included. That makes it even easier to convert your application to work with sphinx, usually then just requiring a simple rewrite of queries.