命令/関数辞書
- 概要
- abs
- acos
- asc
- asin
- assert
- atan
- atan2
- background
- beep
- bgmadd
- bgmplay
- bgmstate
- bgmstop
- bind$
- binding
- box
- call
- chr$
- circle
- cls
- connect$
- connected@
- connecting
- cos
- crash
- data
- datetime@
- def animation
- def background
- def pic
- direction
- disconnect
- distance
- do
- elemtype
- else
- else if
- end
- end function
- end if
- end procedure
- exit do
- exit for
- exit procedure
- fetch@
- for
- function
- hear$
- hide
- if
- include
- inkey$
- input
- left$
- len
- let
- line
- listen
- listening
- locate
- loop
- main
- mainvar
- mainvar$
- mainvar@
- max
- mid$
- min
- move
- moving
- next
- oval
- paint
- pause
- pi
- play
- point
- pow
- procedure
- pset
- put
- random
- read
- receive@
- render
- return
- right$
- roll
- round
- scr$
- send
- sgn
- show
- sin
- speak
- speed
- sprite
- sqr
- stay
- stop
- str$
- tan
- tap
- time
- touch
- truncate
- turn
- unbind
- val
- visible
- write
- xpos
- ypos
bgmstop
働き
バックグラウンドでの演奏を停止します。
文法
bgmstop
説明
bgmstop は、bgmplay にて開始されたバックグラウンドでの演奏を停止します。bgmstop を実行した時に演奏されていた mml が最後まで演奏された後に、演奏が停止され、次の行が実行されます。
サンプルプログラム
rem bgm
cls 3
bgmadd "T90@1O4Q4L4V4"
bgmadd "CDEFEDCR"
bgmadd "EFGAGFER"
bgmadd "CRCRCRCR"
bgmadd "C8C8D8D8E8E8F8F8"
bgmadd "EDCR"
bgmplay 1
do
s$=inkey$()
if s$=" " then
if bgmstate() then
bgmstop
else
bgmplay 1
end if
end if
loop