Page 1 of 1

Newbie music question

Posted: Tue Jan 22, 2019 6:00 pm
by Tffsnyder
Hi, Usually I can figure out my mis-steps on something simple and have posted just 1 question since 2017 but...

I'm trying to play a short audio file which is in the top level directory: Personk.WAV
The entirety of my program is:

MUSIC M$ LOAD "Personk.WAV"
MUSIC M$ PLAY

I get this error:

ERROR LOADING MUSIC
MUSIC M$ LOAD "Personk.WAV"

Re: Newbie music question

Posted: Tue Jan 22, 2019 6:11 pm
by rbytes
You have to assign a name to M$. By default it is a null string, "".
So just add a line such as M$="tune" (or a name you prefer) before your existing code and your program will work.

Best to put questions such as this in Other Topics. But I encourage you to post programs here. They don't have to be fancy. I still learn a lot from simple ones, because new users have a fresh viewpoint. 8-)

Re: Newbie music question

Posted: Tue Jan 22, 2019 6:52 pm
by Tffsnyder
Thx!
I will continue this in Other Topics