|
-
Oct 22nd, 2002, 08:24 AM
#1
Thread Starter
KING BODWAD XXI
-
Oct 22nd, 2002, 08:40 AM
#2
Addicted Member
Use the surface's BltColorFill method:
Code:
Dim r As Rect
surface.BltColorFill(r, RGB(0,0,0))
-
Oct 22nd, 2002, 08:52 AM
#3
Thread Starter
KING BODWAD XXI
-
Oct 22nd, 2002, 09:53 AM
#4
There is no background in DirectDraw. You are alone responsible for what is visible, so you have to draw the movie on your surface.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Oct 22nd, 2002, 10:06 AM
#5
Thread Starter
KING BODWAD XXI
-
Oct 22nd, 2002, 10:11 AM
#6
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Oct 22nd, 2002, 10:25 AM
#7
Thread Starter
KING BODWAD XXI
you run the movie in media player
Run the program i gave you now minimize the windows and start anything like a movie in the background The text scrolls above all windows but i cant actually clear the text from the primary surface so it starts becoming blured (Take Out Line 218 to see this)
-
Oct 22nd, 2002, 11:10 AM
#8
The idea of that app doesn't make sense to me. It is generally a bad idea to mess with other apps.
The way it is you are taking control of the screen and no other app is really allowed to do drawing, windows expects you to hog everything.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Oct 22nd, 2002, 06:31 PM
#9
Addicted Member
Have to agree with CornedBee - what's the point?
-
Oct 23rd, 2002, 01:48 AM
#10
Thread Starter
KING BODWAD XXI
-
Oct 23rd, 2002, 02:57 AM
#11
You could steal that other app's device context and draw on the app. It's not that hard (at least in C++). All you need to do is use Spy++ to find out the window class, use FindWindow to grab the window, take a DC and draw away.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Oct 23rd, 2002, 04:00 AM
#12
Thread Starter
KING BODWAD XXI
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|