new on clemon: clemon0008-9 (naked tramp and GX)
Moderator: xome
- ablablablablabla
- Posts: 1991
- Joined: Tue Nov 28, 2006 1:03 am
- Location: Noise
- Contact:
Re: new on clemon: clemon0008-9 (naked tramp and GX)
“Lesser artists borrow; great artists steal.”
Igor Stravinsky
Igor Stravinsky
- ablablablablabla
- Posts: 1991
- Joined: Tue Nov 28, 2006 1:03 am
- Location: Noise
- Contact:
Re: new on clemon: clemon0008-9 (naked tramp and GX)
The immature poet imitates; the mature poet plagiarizes.
—T. S. Eliot
—T. S. Eliot
- ablablablablabla
- Posts: 1991
- Joined: Tue Nov 28, 2006 1:03 am
- Location: Noise
- Contact:
Re: new on clemon: clemon0008-9 (naked tramp and GX)
“Good artists copy. Great artists steal.”
Pablo Picasso
Pablo Picasso
- ablablablablabla
- Posts: 1991
- Joined: Tue Nov 28, 2006 1:03 am
- Location: Noise
- Contact:
Re: new on clemon: clemon0008-9 (naked tramp and GX)
La propriété, c'est le vol!
- Pierre-Joseph Proudhon
- Pierre-Joseph Proudhon
- ablablablablabla
- Posts: 1991
- Joined: Tue Nov 28, 2006 1:03 am
- Location: Noise
- Contact:
Re: new on clemon: clemon0008-9 (naked tramp and GX)
As long as you r happy, im happy.


- ablablablablabla
- Posts: 1991
- Joined: Tue Nov 28, 2006 1:03 am
- Location: Noise
- Contact:
Re: new on clemon: clemon0008-9 (naked tramp and GX)
i didn't "make" wordpress either
Re: new on clemon: clemon0008-9 (naked tramp and GX)
WHERE ARE MY SUBMISSIONS?
WW, fletcher, anyone else...
WW, fletcher, anyone else...

Re: new on clemon: clemon0008-9 (naked tramp and GX)
A good person, stop trying to find someone I know you're joking...
- WhiteWarlock
- Posts: 2765
- Joined: Tue Apr 10, 2018 7:58 am
Re: new on clemon: clemon0008-9 (naked tramp and GX)
coding something new in HTML5 seems like way better method for my purposes...jliat wrote: ↑Mon Jul 29, 2019 3:38 amWhy not simply use the play in html?
You don't get the problems associated with flash- and it works on smart phones etc...
https://www.w3schools.com/jsref/met_audio_play.asp
https://www.w3schools.com/html/html5_audio.asp
<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
flash has some problem on IOS...
rather not exclude mobile devices from mp3 "jukebox" players
thanks for the input
Re: new on clemon: clemon0008-9 (naked tramp and GX)
Playing from javascript functions - audio needs to be in same place as code - or give full url...
<head>
<TITLE>Playing audio example </TITLE>
<script type="text/javascript">
function play()
{
var audio = new Audio('phatt02.mp3');
audio.play();
}
function play2()
{
var audio = new Audio('phatt01.mp3');
audio.play();
}
</script>
</head>
<body>
<script type="text/javascript">
// play on load
play()
</script>
<!-- play on click -->
<input type="button" value="PLAY" onclick="play2()">
</body>
</html>
<head>
<TITLE>Playing audio example </TITLE>
<script type="text/javascript">
function play()
{
var audio = new Audio('phatt02.mp3');
audio.play();
}
function play2()
{
var audio = new Audio('phatt01.mp3');
audio.play();
}
</script>
</head>
<body>
<script type="text/javascript">
// play on load
play()
</script>
<!-- play on click -->
<input type="button" value="PLAY" onclick="play2()">
</body>
</html>
https://soundcloud.com/jliat/sets/jliat ... variations
https://soundcloud.com/jliat/sets/jliat ... tions-from
"The most irrational thing to do is to make something worthless, with no political emotional or entertaining purpose."
https://soundcloud.com/jliat/sets/jliat ... tions-from
"The most irrational thing to do is to make something worthless, with no political emotional or entertaining purpose."
Re: new on clemon: clemon0008-9 (naked tramp and GX)
well, i'm glad that people like the site that much...

Re: new on clemon: clemon0008-9 (naked tramp and GX)
jliat wrote: ↑Fri Aug 02, 2019 7:57 amPlaying from javascript functions - audio needs to be in same place as code - or give full url...
(obviously its better to have one play function and pass it the name of the mp3 to play!!!)
<head>
<TITLE>Playing audio example </TITLE>
<script type="text/javascript">
function play()
{
var audio = new Audio('phatt02.mp3');
audio.play();
}
function play2()
{
var audio = new Audio('phatt01.mp3');
audio.play();
}
</script>
</head>
<body>
<script type="text/javascript">
// play on load
play()
</script>
<!-- play on click -->
<input type="button" value="PLAY" onclick="play2()">
</body>
</html>
https://soundcloud.com/jliat/sets/jliat ... variations
https://soundcloud.com/jliat/sets/jliat ... tions-from
"The most irrational thing to do is to make something worthless, with no political emotional or entertaining purpose."
https://soundcloud.com/jliat/sets/jliat ... tions-from
"The most irrational thing to do is to make something worthless, with no political emotional or entertaining purpose."
Re: new on clemon: clemon0008-9 (naked tramp and GX)
Sent you a link just now.
Who is online
Users browsing this forum: No registered users and 3 guests