0 votes
by (2k points)

I'm a noob, and I'm trying to figure where I'm supposed to put this:

A.newTrack('https://solomontwine.yolasite.com/resources/Dark%20Choir%20Music%20%20%28Download%20And%20Royalty%20FREE%29.mp3')

Also, how do I get it to loop and how do I get it to not reset from passage to passage?

I got it here https://twinelab.net/harlowe-audio/#/

I have put both javascrypt code and css code of harlowe audio library where they belong.

1 Answer

0 votes
by (63.1k points)

This is explained in the documentation. For A.newTrack():

  • Setting up your tracks should be done early, and you have a few options: use startup-tagged passage and <script> elements, or write the track definitions in JavaScript (but after the library).

There are code examples of what each option would look like listed in the docs.

As for looping and playing, check the track method list. There's also an example. To start a track looping, you would generally use A.track('track-name').loop(true).play() or A.track('track-name').loop(true).playWhenPossible() based on your needs.

Again, all of this is in the manual. I know it's long, but you can always ctrl-f to find specific things.

by (2k points)
Yeah, I finally got it to play, thank you very much. I have some problems understanding english.
by (63.1k points)
Ah, fair enough then.
by (2k points)
Are you the writer of this code? I wanna say thank you so much, I'm loving it so far.
by (2k points)
And if you are not, also, thank you very much for answering my question.
by (63.1k points)
I did make the library. And you're very welcome.
...