hmm, if Im correct I guess that if you made four variables (width and height of the bitmaps) and then four more variables (x,y position of the bitmaps). you then put these in the main loop and check if they are colliding. here is some code if you dont understand what I mean:
(this is dbc code so you might convert it if it does not work.. I dont have dbpro)
Dim Image(4)
Image(1) = get bitmap width( nr1 )
Image(2) = get bitmap height( nr1 )
Image(3) = get bitmap width( nr2 )
Image(4) = get bitmap height( nr2 )
Dim ImageP( 2 , 2)
ImageP( 1, 1 ) = 100 :` bitmap 1 X position
ImageP( 1, 2 ) = 100 :` bitmap 1 Y position
ImageP( 2, 1 ) = 300
ImageP( 2, 2 ) = 300
true = 1
false = 0
` now you check if they collide
do
if ImageP( 1, 1 ) > ImageP( 2, 1 )
if (ImageP( 1, 1 ) + Image(1)) < (ImageP( 2, 1 ) + Image(3))
if ImageP( 1, 2 ) > ImageP( 2, 1 )
if (ImageP( 1, 2 ) + Image(2)) < (ImageP( 2, 2 ) + Image(4))
they_collide = true
endif
endif
endif
endif
sync:loop