Hi, Are you trying to use 'is' to test a Class definition OR class instance?
You can't use is with a class definition.
I for get the right way to do this but for a test, you could instantiate
the;
var test:Object = new assetClass()
if (test is BitmapData) {
...
Mike
--
Teoti Graphix, LLC
http://www.teotigraphix.com
Teoti Graphix Blog
http://www.blog.teotigraphix.com
You can find more by solving the problem then by 'asking the question'.

