Below is a sample of what I mean by relocating the origin coordinates (0,0) to the center of the screen. Sorry, I nearly forgot to let you know that in order to do it you must activate WINDOW function...see below<br><br><b>'<br>'Title: Simple Number Plane<br>'Creator: MiggyD<br>'<br>SCREEN 12 'Select Screen Mode<br>CLS 'Clear entire screen of garbage<br>VIEW 'Turn Entire Screen to Graphics Mode<br>CLS 1 'Clear entire Graphics from screen (opt'l)<br><font color=red>WINDOW (-319, 239)-(319, -239) 'Redefine 0,0 cordinates to center of scrn</font><br><br>LOCATE 30, 1<br>PRINT "Coordinates 0,0 is now in center of screen";<br>LINE (0, 0)-(0, 0), 15<br>SLEEP 4<br><br>LINE (0, 0)-(319, 239), 2 'green line from 0 to +x,+y (top right)<br>LOCATE 30, 1<br>PRINT "Coordinates 0,0 to 319,239 in GREEN ";<br>SLEEP 4<br><br>LINE (0, 0)-(319, -239), 3 'cyan line from 0 to +x,-y (bottom right)<br>LOCATE 30, 1<br>PRINT "Coordinates 0,0 to 319,-239 in CYAN (lite blue-ish)";<br>SLEEP 4<br><br>LINE (0, 0)-(-319, 239), 4 'red line from 0 to -x,+y (top left)<br>LOCATE 30, 1<br>PRINT "Coordinates 0,0 to -319,239 in RED ";<br>SLEEP 4<br><br>LINE (0, 0)-(-319, -239), 5 'magenta line from 0 to -x,-y(bottom left)<br>LOCATE 30, 1<br>PRINT "Coordinates 0,0 to -319,-239 in MAGENTA (purple-ish)";<br>LINE (0, 0)-(-319, -239), 5 'This redraw line ON TOP OF TEXT<br>SLEEP 4<br><br>ClearKbBuf:<br>FOR x = 1 TO 100<br> Dump$ = INKEY$<br>NEXT x<br><br>InputX:<br>LOCATE 30, 1<br>PRINT STRING$(79, 32);<br>LOCATE 30, 1<br>PRINT "Enter the 'X' coordinate [left to right] (range -319 to 319):";<br>INPUT ; x<br>IF x > 319 OR x < -319 THEN GOTO InputX<br><br>InputY:<br>LOCATE 30, 1<br>PRINT STRING$(79, 32);<br>LOCATE 30, 1<br>PRINT "Enter the 'Y' coordinate [top to bottom] (range 239 to -239):";<br>INPUT ; y<br>IF y > 239 OR y < -239 THEN GOTO InputY<br><br>DispInputs:<br>LOCATE 30, 1<br>PRINT STRING$(79, 32);<br>LOCATE 30, 1<br>PRINT "Your input will be displayed in WHITE from 0 to "; STR$(x); ","; STR$

;<br>LINE (0, 0)-(x, y), 15, , &HFCF0<br>SLEEP 7<br><br>END</b><br><br>Hope this helps you decide which way to go. Good Luck <p> <br><a href=mailto: > </a><br><a href= > </a><br>Why do gas stations have signs saying No Smoking, yet they sell cigaretes?