GetScreenXpos
Xpos = GetScreenXpos()
 
Parameters: NONE
Returns:

    Xpos = The current X coordinate of the PB screen in windowed mode.
 

      GetScreenXpos() returns the current X position of the screen upon the desk top.



FACTS:


      * Only useful when your program is running in windowed mode. See OpenScreen




Mini Tutorial:


      Read and display the current screen type.

  
; Start a Loop
  Repeat
   ; Clear the Screen to black  (rgb(0,0,0))
     Cls RGB(0,0,0)
     
   ; Display a message to the user
     Print "Move the Window using your move.. Press ESC to exit "
     
   ; Display the Current X and Y positions of the Sreen..
     Print "Screen Is a X position :"+Str$(GetScreenXpos())
     Print "Screen Is a Y position :"+Str$(GetScreenYpos())
     
   ; Display the Screen
     Sync
     
   ; check if the ESC key was pressed, if not loop back
   ; to the repeat statement above to continue.
  Until EscKey()=true
  
  



 
Related Info: CenterScreen | GetScreenYpos | PositionScreen :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com