andre
Experienced
Posts: 35
|
Post by andre on Jun 17, 2023 7:10:43 GMT
Dear All, we want to present some text while sounds are demonstrated in a practice block. However, the text is not removed from the screen, it just overwrites itself becoming unreadable.
Example:
block practice_a2
message i8
#-- sound
text "Low sound" 0 0
sound ll
delay 1500
text "High sound" 0 0
sound hh
delay 1500
#-- sound
text "Low sound" 0 0
sound ll
delay 1500
text "High sound" 0 0
sound hh
delay 1500
#----- End Sounds ----
message i9
set &blocktype -1
tasklist
Aud_ST2 30
end
How can I remove e.g. "Low sound" from the screen again? Maybe just present a black bitmap on top?
Kind Regards,
Andre
|
|
andre
Experienced
Posts: 35
|
Post by andre on Jun 17, 2023 7:14:32 GMT
Ok, it works with overwriting with a bitmap which just shows a big black square, in this example named 'i16' (if your background is black...):
#-- sound text "Low sound" 0 0 sound ll delay 1500 bitmap i16 text "High sound" 0 0 sound hh delay 1500 bitmap i16
|
|