I continue my questions in this thread (think there will be a few as Im new to this)
Im trying to simpify this problem to the first sample of Irrlicht.
When I compile the first example it works great but if I build my own type with the mesh and the meshnode I get.. nothing. The mesh loads and the texture loads but it doesnt show anything. Example given (without the samplecomments) I only added a type and used an object of that type to show the mesh.
Am I totally way out??? Dont laugh 
Strict
Framework BRL.Blitz
Import gg.IrrBMAX
' The new type containing just an AnimatedMesh and The AMSN.
Type Unit
Field mesh:T_irrIAnimatedMesh
Field node:T_irrIAnimatedMeshSceneNode
End Type
' And heres that object.
Local Test:Unit
Local device:T_irrIrrlichtDevice=T_irrIrrlichtDevice.create(EDT_SOFTWARE,T_irrDimension2d_s32.create(640,480),16,False,False,False,Null)
device.setWindowCaption("Hello World! - Irrlicht Engine Demo")
Local driver:T_irrIVideoDriver=device.getVideoDriver()
Local smgr:T_irrISceneManager=device.getSceneManager()
Local guienv:T_irrIGUIEnvironment=device.getGUIEnvironment()
guienv.addStaticText("Hello World! This is the Irrlicht Software renderer!",T_irrRect_s32.createFromVals(10,10,200,22),True)
Test.mesh=smgr.getMesh("../media/sydney.md2")
Test.node=smgr.addAnimatedMeshSceneNode(Test.mesh)
If Test.node.handle<>0
Test.node.setMaterialFlag(EMF_LIGHTING,False)
Test.node.setFrameLoop(0,310)
Test.node.setMaterialTexture(0,driver.getTexture("../media/sydney.bmp"))
EndIf
Local camera:T_irrICameraSceneNode=smgr.addCameraSceneNode(Null,T_irrVector3df.createFromVals(0,30,-40),T_irrVector3df.createFromVals(0,5,0))
While (device.run())
inScene(True,True,T_irrSColor.createFromVals(255,100,101,140))
smgr.drawAll()
guienv.drawAll()
driver.endScene()
Wend
device.drop()