Nieuw lid |
|
ehmm sorry voor de heel late reactie, maar er staat nergens in de regels dat het niet mag.
Maargoed, ik heb het net even uitgeprobeerd en ik heb nu dit:
geluid = new Sound();
geluid.loadSound("MIJNMUZIEKJE.mp3", true);
home.onRelease = function() {
getURL('home.php', 'main');
};
portfolio.onRelease = function() {
getURL('portfolio.php', 'main');
};
profiel.onRelease = function() {
getURL('profiel.php', 'main');
};
links.onRelease = function() {
getURL('links.php', 'main');
};
gb.onRelease = function() {
getURL('gb.php', 'main');
};
admin.onRelease = function() {
getURL('admin.php', 'main');
};
music.onRelease = function() {
getURL('http://www.morphcore.com', '_blank');
};
geluid.onSoundComplete = function() {
geluid = new Sound();
geluid.loadSound("MIJNMUZIEKJE.mp3", true);
}
geluid = new Sound(); geluid.loadSound("MIJNMUZIEKJE.mp3", true); home.onRelease = function() { getURL('home.php', 'main'); }; portfolio.onRelease = function() { getURL('portfolio.php', 'main'); }; profiel.onRelease = function() { getURL('profiel.php', 'main'); }; links.onRelease = function() { getURL('links.php', 'main'); }; gb.onRelease = function() { getURL('gb.php', 'main'); }; admin.onRelease = function() { getURL('admin.php', 'main'); }; music.onRelease = function() { getURL('http://www.morphcore.com', '_blank'); }; geluid.onSoundComplete = function() { geluid = new Sound(); geluid.loadSound("MIJNMUZIEKJE.mp3", true); }
De loop gaat nu maar 1 keer, dus hij speelt 2x achter elkaar. Best logisch, maar hoe zorg ik ervoor dat het oneindig/50x achter elkaar door blijft gaan? |