Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/04/2012, 03:32
eche_033
 
Fecha de Ingreso: abril-2012
Mensajes: 2
Antigüedad: 12 años
Puntos: 0
Respuesta: Problema en la Publicación SWF. ALGUNA IDEA?

Gracias Damovear

ya probé las dos opciones que me diste de copiar los fotogramas en archivo nuevo etc. y sigue sin funcionarme.. y No se ver porque no me funciona.. :((


Es una FLa con 5 fotogramas, en código del primer fotograma es éste:

-------------------------------------------------------------------------

import com.mosesSupposes.fuse.*;
ZigoEngine.simpleSetup(Shortcuts,PennerEasing,Fuse );
//
//
Stage.scaleMode = "noScale";
//
fscommand("fullscreen", "true");
fscommand("allowscale", "false");
//
stop();
lib = 5;
//
// código para encontrar la URL base
var flashVersion:String = substring(getVersion(),0,3);
var swfUrl:String = _root._url;
var lastSlashIndex:Number = swfUrl.lastIndexOf("/");
var pipeIndex:Number = swfUrl.indexOf("|");
var baseUrl:String;
if (pipeIndex >= 0)
{
baseUrl = swfUrl.substring(0, pipeIndex);
baseUrl += ":";
}
else
{
baseUrl = "";
}
baseUrl += swfUrl.substring(pipeIndex + 1, lastSlashIndex + 1);
trace ("path: "+baseUrl);
//
//
base._alpha = 0;
creds._alpha = 0;
this.onEnterFrame = function() {
total = getBytesTotal();
cargado = getBytesLoaded();
loader = Math.round(cargado*100/total);
//
if (Stage.height>700) {
Stage.scaleMode = "noScale";
}
//
if (total != 0) {
if (cargado != 0) {
if (cargado == total) {
nextFrame();
delete this.onEnterFrame;
}
}
}
};