if your having Flash ask PHP for the button labels in a specifig language, heres how I'd do it 😐
Flash (button/english):
on (release) {
loadVariablesNum("numphp?lang=english", 0, post);
gotoAndPlay("waitforload");
}
PHP (write labels):
<?
if (!IsSet($lang)) { $lang = "english"; }
if ($lang == "english") {
$buttons = Array("button 1", "button 2");
}
for ($i=0; $i<count($buttons; $i++) {
echo "&button1={$buttons[$i]}";
}
?>
and hopefully you can figure the rest out for yourself 😐