Yeah... I'm failing miserably at trying to get this to work... considering I know next to nothing about coding, it's no surprise, but I've tried a few things with no success.
The current WORKING code that I hacked from another front end that makes the "click" sound when you move from ROM to ROM is:
//game select sound
function select_sound( ttype, var, ttime ) {
switch ( ttype ) {
case Transition.ToNewSelection:
local sound = fe.add_sound("game.mp3");
sound.playing=true;
break;
}
return false;
}
fe.add_transition_callback( "select_sound" );
I tried using that code and hacking in what I THOUGHT was possibly going to work... it didn't...
function button_sound( ttype, var, ttime ) {
if ((signal_str=="custom1"))
{ local sound = fe.add_sound("game.mp3");
sound.playing=true;
break;
}
return false;
}
fe.add_transition_callback( "button_sound" );
But again, being that I really have no idea what I am doing, it's no surprise it didn't work... but I figured I could at least TRY.

NOW... anyone care to tell me what kind of a dummy I am and show me where I went wrong?
