I programmed a textbox (or anything done from JavaScript used to draw on the screen) but nothing appears; What's going on?

When you draw something to the screen in Sphere, what you're really doing is drawing it to a chunk of memory allocated for drawing functions, called the back-buffer. In order to make what's on the back-buffer appear on the screen, you have to "flip" it, using FlipScreen(). Make sure that at the end of any bit of drawing code that you want on screen, to include a FlipScreen().

It should be noted that the contents of the back-buffer are undefined after a FlipScreen(), so you should never rely on the contents. You'll have to redraw everything each time. (Seems like a pain in the ass, but it actually forces you to write more dynamic code, which can lead to less problems overall.

More.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions