RAT_ROWR() Returns mouse row at the last right button press Returns <nRow> => mouse row at last right button press Syntax RAT_ROWR() Description Returns mouse row at the last right button press (as recorded by a call to rat_rightb() ) Examples if rat_rightb() ?"While you were out:" ?"Right button was depressed at" ??rat_rowr(),rat_colr() endif Notes: This is different from RAT_ROW() in that RAT_ROW() tells the mouse row NOW wherease RAT_ROWR() tells where the mouse was at the last recorded right button press (as recorded by a call to rat_rightb() ) Source: S_MOUSE.ASM
Tag Archives: RAT_ROW()
SP_RAT_ROWL
RAT_ROWL() Returns mouse row at the last left button press Returns <nRow> => mouse row at last left button press Syntax RAT_ROWL() Description Returns mouse row at the last left button press (as recorded by a call to rat_leftb() ) Examples if rat_leftb() ?"While you were out:" ?"Left button was depressed at" ??rat_rowl(),rat_coll() endif Notes: This is different from RAT_ROW() in that RAT_ROW() tells the mouse row NOW wherease RAT_ROWL() tells where the mouse was at the last recorded left button press (as recorded by a call to rat_leftb() ) Source: S_MOUSE.ASM
SP_RAT_ROW
RAT_ROW() Current mouse row Returns <nRow> => mouse row right now Syntax RAT_ROW() Description This gives the CURRENT mouse row Examples ?"Mouse is at row :",rat_row() Notes: This is different from RAT_ROWL() or RAT_ROWR() in that these two functions return the recorded row when the mouse button was last pressed, RAT_ROWL() for left or RAT_ROWR() for right. This function tells where the mouse is right now. Source: S_MOUSE.ASM
SP_RAT_RIGHTB
RAT_RIGHTB() Determines if the right mouse button has been pressed Returns <lHasBeenPressed> => right mouse button has been pressed Syntax RAT_RIGHTB() Description This returns .t. if the right button has been pressed since last call to this function. Row and column are recorded for reference by rat_rowr() and rat_colr(). Examples if rat_rightb() ?"While you were out:" ?"Left button was depressed at" ??rat_rowr(),rat_colr() endif Notes: This is different from RAT_RBHD() in that RAT_RBHD() is a 'right now' function - determining if the button IS depressed, whereas this function determines if the button HAS been depressed. Source: S_MOUSE.ASM
SP_RAT_LEFTB
RAT_LEFTB() Determines if the left mouse button has been
pressed Returns <lHasBeenPressed> => left mouse button has been pressed Syntax RAT_LEFTB() Description This returns .t. if the left button has been pressed since last call to this function. Row and column are recorded for reference by rat_rowl() and rat_coll(). Examples if rat_leftb() ?"While you were out:" ?"Left button was depressed at" ??rat_rowl(),rat_coll() endif Notes: This is different from RAT_LBHD() in that RAT_LBHD() is a 'right now' function - determining if the button IS depressed, whereas this function determines if the button HAS been depressed. Source: S_MOUSE.ASM