Hi!
hab da ein Problem mit der Variablenübergabe von PHP nach Flash.
Will via einer PHP eine URL ausgeben, die dann im Flashplayer
gespielt wird aber ohne GET.
Hier der Code vom Flash (as):
Code von werte.php:
weiss vielleicht jemand wo ich den Fehler gemacht habe ?!
lg tom
hab da ein Problem mit der Variablenübergabe von PHP nach Flash.
Will via einer PHP eine URL ausgeben, die dann im Flashplayer
gespielt wird aber ohne GET.
Hier der Code vom Flash (as):
PHP-Code:
var LoadVarObject = new LoadVars ();
LoadVarObject.onLoad = function (loadSuccess)
{
if (loadSuccess == true)
{
_root.file = this.file_url;
}
};
LoadVarObject.load ("werte.php");
file = _root.file;
if(_root.autostart == 'true' || _root.autoStart == 'true') { autoStart = true; }
else { autoStart = false; }
if(autoStart == true) { clicktext = "Buffering.."; }
else if (!_root.clicktext) { clicktext = 'Click to play'; }
else { clicktext = _root.clicktext; }
......
Code von werte.php:
PHP-Code:
<?
$file = "http://87.118.98.125/acidcore/67584.flv";
echo "file_url=$file";
?>
lg tom
Kommentar