Notifications
Clear all

[Closed] openBitmap bug?

Ok a bit of a funky issue with the openBitmap function in maxscript(using 2009)
Does anyone know why the first one doesnt work, but the second one does?


 filename = "c:\	est.tga"
 t = openbitmap filename
 display t -- displays black
 

filename = "c:\	est.tga"
t = openbitmap filename
f = copy t
close t
display f -- works fine