Que tal amigos de Cristalab mi problema es el siguiente tengo este còdigo para el manejo de mi menu para una pagina web y quisiera saber como mantengo los estados de activo y desactivado al subirlo a html pues en flash me corre perfectamente pero al subirlo a dreamweaver no me mantiene las opciones de activo y desactivado cuando voy a otra pagina.He intentado con flashvars pero no me da resultado como puedo hacer que esto funcione
Gracias a todos y espero me puedan ayudar


var currentPage = "btnInicio_mc"
inicial ("btnInicio_mc")



btnInicio_mc.onRollOver = function () {

if (currentPage != "btnInicio_mc"){
btnInicio_mc.gotoAndPlay ("_over")
}
}
btnInicio_mc.onRollOut = function () {

if (currentPage != "btnInicio_mc"){
btnInicio_mc.gotoAndPlay ("_out")
}
}

btnServicios_mc.onRollOver = function () {

if (currentPage != "btnServicios_mc"){
btnServicios_mc.gotoAndPlay ("_over")
}
}
btnServicios_mc.onRollOut = function () {

if (currentPage != "btnServicios_mc"){
btnServicios_mc.gotoAndPlay ("_out")
}
}

btnRepuestos_mc.onRollOver = function () {

if (currentPage != "btnRepuestos_mc"){
btnRepuestos_mc.gotoAndPlay ("_over")
}
}
btnRepuestos_mc.onRollOut = function () {

if (currentPage != "btnRepuestos_mc"){
btnRepuestos_mc.gotoAndPlay ("_out")
}
}

btnContacto_mc.onRollOver = function () {

if (currentPage != "btnContacto_mc"){
btnContacto_mc.gotoAndPlay ("_over")
}
}
btnContacto_mc.onRollOut = function () {

if (currentPage != "btnContacto_mc"){
btnContacto_mc.gotoAndPlay ("_out")
}
}

btnGaleria_mc.onRollOver = function () {

if (currentPage != "btnGaleria_mc"){
btnGaleria_mc.gotoAndPlay ("_over")
}
}
btnGaleria_mc.onRollOut = function () {

if (currentPage != "btnGaleria_mc"){
btnGaleria_mc.gotoAndPlay ("_out")
}
}


btnInicio_mc.onRelease = function () {
btnInicio_mc.getURL("index.html","_self");

if (currentPage != "btnInicio_mc"){
eval(currentPage).gotoAndPlay ("_out")
currentPage = "btnInicio_mc" ;
btnInicio_mc.gotoAndStop ("_down");
}
}

btnServicios_mc.onRelease = function () {
btnServicios_mc.getURL("servicios.html","_self");

if (currentPage != "btnServicios_mc"){
eval(currentPage).gotoAndPlay ("_out")
currentPage = "btnServicios_mc" ;
btnServicios_mc.gotoAndStop ("_down");
}
}

btnRepuestos_mc.onRelease = function () {
btnRepuestos_mc.getURL("repuestos.html","_self");

if (currentPage != "btnRepuestos_mc"){
eval(currentPage).gotoAndPlay ("_out")
currentPage = "btnRepuestos_mc" ;
btnRepuestos_mc.gotoAndStop ("_down");
}
}

btnContacto_mc.onRelease = function () {
btnContacto_mc.getURL("contacto.html","_self");

if (currentPage != "btnContacto_mc"){
eval(currentPage).gotoAndPlay ("_out")
currentPage = "btnContacto_mc" ;
btnContacto_mc.gotoAndStop ("_down");
}
}
btnGaleria_mc.onRelease = function () {
btnGaleria_mc.getURL("galeria.html","_self");

if (currentPage != "btnGaleria_mc"){
eval(currentPage).gotoAndPlay ("_out")
currentPage = "btnGaleria_mc" ;
btnGaleria_mc.gotoAndStop ("_down");
}
}



function inicial (){

if (currentPage == "btnInicio_mc"){

btnInicio_mc.gotoAndStop ("_down")
}

}

agrege este parametro en el html
<param name="FlashVars" value="url=servicios"> y tambien en el src en (embebed) asi
FlashVars="url=servicios" para cada pagina el correspondiente

Luego en flash agrege:


Código ActionScript :
if (url=="productos")
{
_root.gotoAndStop("_down");
}

if (url=="contactos")
{
_root.gotoAndStop(4);
} y los demas a que habia lugar pero no me funciona que erro estare cometiendo

gracias