mouseButton

マウスボタンの情報を得る。
bMouse も使用可だがお勧めできない。

書式:
variable = mouseButton

1 = 左ボタン
2 = 中央ボタン
3 = 右ボタン

例:
autoback(25)
while not key(k_esc)
    locate(35,15)
    prints( mouseButton )
    waitVBL
wend