Author |
Topic: Going Away (Read 173 times) |
|
narutogamer
Administrator
    
member is offline


Posts: 0
|
 |
Going Away
« Thread started on: Sep 15th, 2007, 9:53pm » |
|
yeah i have another crashed code the code works the sprite shows up but when the game window is minimized the tank sprite disappears some one please help heres the code
Code:nomainwin
WindowWidth=264
WindowHeight=345
open "Space Invaders" for Graphics_nsb as #main
Print #main, "fill black"
print #main, "flush"
loadbmp "bkg","SPRITES\BG1.bmp"
print #main, "background bkg"
loadbmp "tank", "sprites\tank.bmp"
print #main, "addsprite tank tank"
print #main, "spritexy tank 120 290"
print #main, "drawsprites"
print #main, "FLUSH"'Glues the sprites down (FIXED)
print #main, "trapclose [close]"
wait
[close]
close #main
END
|
| « Last Edit: Sep 15th, 2007, 10:01pm by Nicholas » |
Logged
|
|
|
|
Rebels130
Guest
|
 |
Re: Going Away
« Reply #1 on: Sep 16th, 2007, 3:02pm » |
|
you need to use the flush command to hold all the graphics to the window. look up "flush" in the Just BASIC help file
|
|
Logged
|
|
|
|
Nicholas
Guest
|
 |
Re: Going Away
« Reply #2 on: Sep 16th, 2007, 3:28pm » |
|
Try this: Code:
nomainwin
WindowWidth=264
WindowHeight=345
open "Space Invaders" for Graphics_nsb as #main
Print #main, "fill black"
print #main, "flush"
loadbmp "bkg","SPRITES\BG1.bmp"
print #main, "background bkg"
loadbmp "tank", "sprites\tank.bmp"
print #main, "addsprite tank tank"
print #main, "spritexy tank 120 290"
print #main, "drawsprites";
print #main, "FLUSH"'Glues the sprites down (FIXED)
print #main, "trapclose [close]"
wait
[close]
close #main
END
|
|
Logged
|
|
|
|
BPL
Administrator
    
member is offline


Posts: 9
|
 |
Re: Going Away
« Reply #3 on: Sep 17th, 2007, 10:46am » |
|
Nicholas why are you signed in as a guest?
|
|
Logged
|
|
|
|
Nicholas
Administrator
    
member is offline


Gender: 
Posts: 41
|
 |
Re: Going Away
« Reply #4 on: Sep 17th, 2007, 3:21pm » |
|
I don't know... My dial up was going too slow for me to log in so I jsut posed as guest.
|
|
Logged
|
|
|
|
BPL
Administrator
    
member is offline


Posts: 9
|
 |
Re: Going Away
« Reply #5 on: Sep 18th, 2007, 10:58am » |
|
Ah
|
|
Logged
|
|
|
|
|