Sugarcube 2.21, Twine 2.2.1
I'm using Twine for the first time and I'm doing a simple story involving rolling a die. I have 4 options for the first roll and I want to have one sound effect play per outcome.
Here's how I cached the sounds (in StoryInit):
<<cacheaudio "fanfare" "audio\fanfare.mp3">>
<<cacheaudio "sadtrombone" "mp3|https://www.dropbox.com/s/d2k52n7xcfk1a51/notr__sadtrombones.mp3?dl=1">>
and how I'm trying to play them:
<<if $dieState eq 1>>
<<audio "crash" volume 1 play>>
Crap! You tossed it a little too hard and the die goes flying off the side table.
I first tried to use dropbox links but tested local files as well, and neither are working for me. I'm not getting any error messages but clearly something isn't right. The local files were originally in the same folder as the html (Twine2\pub2file), but I put them in a subfolder later and I don't think it changed anything. Thanks for any help!