i already check directx4vb.com they have a link thier for the page but it rings me to something about 16 bitcolor keys
Printable View
i already check directx4vb.com they have a link thier for the page but it rings me to something about 16 bitcolor keys
Uhhh, huh? What is the problem?
You need to set a color key, with a specific color...what is the problem with that...
how do iQuote:
You need to set a color key, with a specific color...what is the problem with that...
You set the color key by doing something like this..
VB Code:
Dim key As DDCOLORKEY 'Makes a colorKey key.high = 0 'Sets the high property to 0 (black) key.low = 0 'Sets the low property to 0 (black) 'Sets a color key to a surface. (black) Surface.SetColorKey DDCKEY_SRCBLT, key
ok that worked thanx