J'ai une fonction :
Code :
1 2 3 4 5
|
if (!flash.external.ExternalInterface.available && this.getRootProperty(undefined, "playnext") == "1")
{
this.getURL("javascript:gotoNext();");
} // end if |
Je sais que la condition "
!flash.external.ExternalInterface.available" est respecté mais ce que je ne comprend pas c'est comment faire pour que
this.getRootProperty(undefined, "playnext") soit egal à 1 . Voici la fonction dont la condition fait apel :
Code :
1 2 3 4 5 6 7
|
_reg1.getRootProperty = function (mc, property)
{
var _reg4 = mc || _root;
var _reg5 = _loc4[property].length ? _loc4[property] : "";
return _reg5;
}; |
L'ActionScript ne fait pas apel a la fonction JS
gotoNext(); même avec une flashVar "&playnext=1" pourtant si playnext=1 alors la fonction devrait être appellé ??? Si vous pouviez m'aider ,Merci D'avance

!