The FLA is likely corrupted.
This happens. Data files get corrupted for a number of reasons that are not
necessarily a bug in the software creating the file. For example your memory
could have gotten corrupted and the software is malfunctioning as a result.
A possible problem for you is that the drive or folder that the FLA was in
not longer was available while you were using the file such as on a USB
drive or a network drive.
Reason why to have backups on a regular basis and build applications in
small swfs. As a policy I always save before using Control->Test Movie in
case my AS is buggy causing Flash or the PC to lockup and thus nastly
program terminations.
--
Lon Hosford
www.lonhosford.com May many happy bits flow your way!
[quoted text, click to view] "WaveF" <webforumsuser@macromedia.com> wrote in message
news:dp1ik1$8kc$1@forums.macromedia.com...
Few days a ago, I use Flash 8.0 professional edition to made a "seekbar"
into
my flash movie ,I found a problem :
Everytime when I have save my document, I can not open it again ! I guess
that's a system error caurse all of these,
so I spend three hours to finish my little animate.,then this situation
happen
again !! what the ~..... I copy my seekbar's
code here.
Finally I copy this file to my friend and open it with flash8 , the same
thing
has happened, so I save as flashmx edition .
bad.
Flash 8 alarm me this : when programme running , found JavaScript error
below:
Exception thrown in native funtion.
When I try to reopen again , flash8 have been terminaled by itself.
somethimes
I'am luckly to open this file , but I can not
see anything in my worksapce, and I reopen again , I get a alarm : You have
opened this file in another window !
I have never meet these when I use Flash MX or Flash MX 2004 , if prossible
I
hope I can upload that file in this forum,
because I don't think it's that ActionScript error ....(I'm a chinese , so
my
english is no t good ,hope you can understand)^_^
onClipEvent (load)
{
drag = new Boolean();
drag = false;
cang = 345 / _root._totalframes;
}
onClipEvent (mouseDown)
{
drag = true;
if (this.hitTest(_root._xmouse, _root._ymouse))
{
startDrag(this, false, 0, 0, 345, 0);
} // end if
}
onClipEvent (mouseUp)
{
drag = false;
stopDrag();
}
onClipEvent (enterFrame)
{
_root.all.allframe = _root._totalframes;
_root.all.nf = _root._currentframe;
if (drag == true && this.hitTest(_root._xmouse, _root._ymouse))
{
_root.all.kz.stop();
xvernier = getProperty(this, _x);
_root.gotoandstop(int(xvernier / cang));
}
else if (_root._currentframe == 1)
{
setProperty(this, _x, 0);
}
else
{
setProperty(this, _x, _root._currentframe * cang);
} // end if
}