Tu problema no es el que mencionás. Tu problema es de ámbito. Voy a simplificar tu ejemplo para verlo mejor:
Vos tenés esto:
Código PHP:
<script type="text/javascript">
function ManagementFrames (algo){
this.ID = algo; // Primera cadena array, contiene los string con las id de CSS los divs
this.ActiveE = function ActiveE(a){
Desactive=setTimeout(function(){alert(this.ID);},500);
}
}
var ObjectManagementFrames = new ManagementFrames ('pp');
ObjectManagementFrames.ActiveE(1);
</script>
Y no funciona porque this dentro del setTimeout no refiere al objeto dentro de cuyo método está inserto sino al objeto window, como se aprecia aquí:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<script type="text/javascript">
function ManagementFrames (algo){
this.ID = algo; // Primera cadena array, contiene los string con las id de CSS los divs
this.ActiveE = function ActiveE(a){
Desactive=setTimeout(function(){alert(this.location.href);},500);
}
}
var ObjectManagementFrames = new ManagementFrames ('pp');
ObjectManagementFrames.ActiveE(1);
</script>
</head>
<body>
</body>
</html>
Una de las cosas que suelen hacerse para solucionarlo es esta:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<script type="text/javascript">
function ManagementFrames (algo){
this.ID = algo; // Primera cadena array, contiene los string con las id de CSS los divs
this.ActiveE = function ActiveE(a){
var _this=this;
Desactive=setTimeout(function(){alert(_this.ID);},500);
}
}
var ObjectManagementFrames = new ManagementFrames ('pp');
ObjectManagementFrames.ActiveE(1);
</script>
</head>
<body>
</body>
</html>