Remove this Banner Ad

App Building

🥰 Love BigFooty? Join now for free.

Joined
Apr 2, 2013
Posts
13,088
Reaction score
21,163
AFL Club
Collingwood
Does anybody know of any simple programs to design a basic app for a computer hack?

As in just upload some audio and maybe link to an image. Have tried a few but they seem hopelessly complicated and I'm well out of my depth with this stuff.
 
What is a "basic app for a computer hack"? You want someone to click on a program and it does shows a picture and plays some music?
 
Something linked to a timer with audio attached. Already other threads on this and besides doubt I have the skill.
Javascript mate....it runs in the browser...you have a buttton onclick event handler...a music file mp3....all inside a html file...easy
Well not that easy...complicated actually...but it can be done...i have done many times.....

Just give me a bit of time i am slowly going to upload a code example for you...inbetween other things...
 
Last edited:

Log in to remove this Banner Ad

Javascript mate....it runs in the browser...you have a buttton onclick event handler...a music file mp3....all inside a html file...easy
Well not that easy...complicated actually...but it can be done...i have done many times.....

Just give me a bit of time i am slowly going to upload a code example for you...inbetween other things...

<!DOCTYPE html>
<html>
<head>
<style>
button {
background-color: green;
position: relative;
left: 170px;
}
</style>
<script>
var Sound = new Audio();
Sound.src = "applause2_x.wav";

var Picture = new Image();
Picture.src = "Picture1.jpg";

function PlaySound() {
document.getElementById("image").style.display = "";
Sound.play();

}
</script>
</head>
<body>
<audio id="Sound"></audio>
<button onclick="PlaySound()">Click To Play</button>
<img id="image" src="Picture1.jpg" style="display: none;" />


</body>
</html>
 
Something linked to a timer with audio attached. Already other threads on this and besides doubt I have the skill.
<!DOCTYPE html>
<html>
<head>
<style>
button {
background-color: green;
position: relative;
left: 170px;
}
</style>
<script>
var Sound = new Audio();
Sound.src = "applause2_x.wav";

var Picture = new Image();
Picture.src = "Picture1.jpg";

function PlaySound() {
document.getElementById("image").style.display = "";
Sound.play();

}
</script>
</head>
<body>
<audio id="Sound"></audio>
<button onclick="PlaySound()">Click To Play</button>
<img id="image" src="Picture1.jpg" style="display: none;" />


</body>
</html>
 

Remove this Banner Ad

Remove this Banner Ad

🥰 Love BigFooty? Join now for free.

Back
Top Bottom