Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.
Is this a limitation, or my src is wrong?
Can this be added to the extension so I can add from my file?
Thanks.
With standardtexter, I can add audio with...
src="http://www.islandnet.com/~bitron/Sounds/laughter.wav"
but it will not add from a file...
src="file://D:\$Laughs\Laughing Gopher\laughter.wav"
Is this a limitation, or my src is wrong?
Can this be added to the extension so I can add from my file?
Thanks.
Nope... didn't work...
Tbird will include gifs and wavs from a url but not a file.
It works okay in a browser.
Here's the full code...
<audio controls autoplay>
</audio>
Nope... didn't work...
Tbird will include gifs and wavs from a url but not a file.
It works okay in a browser.
Here's the full code...
<!-- Gopher 2-->
<HTML>
<BODY bgColor=#ffffff>
<img src="http://www.islandnet.com/~bitron/Gifs/gopher.gif" alt="Gopher" /><br>
<!-- this audio control allows gopher to work in web browsers and thunderbird-->
<audio controls autoplay>
<source id="laugh" src="file://D:\$Laughs\Laughing Gopher\laughter.wav"
type="audio/wav">
<!-- this works in Tbird
<source id="laugh" src="http://www.islandnet.com/~bitron/Sounds/laughter.wav"
-->
<HR>
</BODY></HTML>
The gopher gif appears in the notification message. To post code in this forum, try surrounding it with < pre > and < / pre > tags (omit the spaces).
Try with no spaces in the file path:
https://forums.mozillazine.org/viewtopic.php?p=14774450#p14774450
The gopher gif appears in the notification message. To post code in this forum, try surrounding it with < pre > and < / pre > tags (omit the spaces).
Okay, I'll try PRE... thanks... it works!
Here's all the code.
Okay, I'll try PRE... thanks... it works!
Here's all the code.
<pre
<!-- Gopher 2-->
<HTML>
<BODY bgColor=#ffffff>
<img src="http://www.islandnet.com/~bitron/Gifs/gopher.gif" alt="Gopher" /><br>
<!-- this audio control allows gopher to work in web browsers and thunderbird-->
<audio controls autoplay>
<source id="laugh" src="file://D:\$Laughs\Laughing Gopher\laughter.mp3"
type="audio/wav">
<!-- this works <source id="laugh" src="http://www.islandnet.com/~bitron/Sounds/laughter.wav"
</audio>
<HR>
</BODY></HTML>
>
</PRE>