V valetudo Newbie Joined Oct 16, 2008 Messages 27 Reaction score 7 Nov 16, 2012 #1 Anyone know the best way for me to sync audio with text for a popup window? Doesn't have to be anything fancy, just start and stop at the same time. It's about 5 paragraphs of text with an MP3 that reads the text.
Anyone know the best way for me to sync audio with text for a popup window? Doesn't have to be anything fancy, just start and stop at the same time. It's about 5 paragraphs of text with an MP3 that reads the text.
WizGizmo Mod-On-Hiatus Mod-On-Hiatus Joined Mar 28, 2008 Messages 4,476 Reaction score 57,707 Nov 17, 2012 #2 Since your question is not a Graphic Design question, I have moved your thread to the Web Design section. "Wiz"
Since your question is not a Graphic Design question, I have moved your thread to the Web Design section. "Wiz"
istart Junior Member Joined Oct 10, 2011 Messages 116 Reaction score 26 Nov 17, 2012 #3 If U don't mind excluding some older browsers, you can use html5: Code: <audio controls="controls">* <source src="audio.mp3" type="audio/mpeg"> Your browser does not support the audio element. </audio> Sent from my GT-I9100M using Tapatalk 2
If U don't mind excluding some older browsers, you can use html5: Code: <audio controls="controls">* <source src="audio.mp3" type="audio/mpeg"> Your browser does not support the audio element. </audio> Sent from my GT-I9100M using Tapatalk 2
V valetudo Newbie Joined Oct 16, 2008 Messages 27 Reaction score 7 Nov 17, 2012 Thread Starter Thread Starter #4 Thanks Wiz. I meant to post it here. istart, thanks. I will look more into that.