You would probably have to make 2 queries one for each table with the fulltext index, but you could try doing it anyway and if you get an error then you would know for sure. I guess it would look like
SELECT * FROM tbl1, tbl2 WHERE MATCH(something) AGAINST ('someterm(s)');