I have found a workaround for now, by replacing fe.plugin_command with fe.plugin_command_bg in UltraStik360.nut
It's not ideal, as when you return to AM the UltraStik is still being reprogrammed in the background, which seems to cause a couple of phantom joystick movements.
Meaning that you don't end up with the same list entry being selected within AM.
switch ( ttype )
{
case Transition.ToGame:
fe.plugin_command_bg( config["command"],
"\"" + maps_dir
+ fe.game_info( maps_info )
+ config["maps_ext"] + "\"" );
break;
case Transition.FromGame:
fe.plugin_command_bg( config["command"],
"\"" + maps_dir
+ config["default_map"]
+ config["maps_ext"] + "\"" );
break;
}