File: My_Happy_Place.swf-(1.53 MB, 493x387, Other)
[_] Request Inside Anonymous 11/28/22(Mon)00:07:02 No.3490000
Does anyone know how to edit stored flash files to skip or shorten the minimum loading time in
the preloader? I've tried just deleting the first frame in JPEXS but that breaks the file
usually. Since its on my hard drive the preloader should be instantaneous.
>> [_] Anonymous 11/28/22(Mon)00:28:32 No.3490001
>>3490000
you just extract the filesize that's in the first frame
var numbertoLoad:int = loaderInfo.bytesTotal;
var numberLoaded:int = loaderInfo.bytesLoaded;
Math.floor((numberLoaded - 1222429)/(numbertoLoad - 1222429) * 100);
so now it doesn't start from let's say 20%
>> [_] Anonymous 11/28/22(Mon)10:39:29 No.3490011
>>3490001
and by extract I mean substract
english is not my first language
>> [_] Anonymous 11/28/22(Mon)14:30:58 No.3490017
>>3490000
No real other way to get in there and alter the code with new code.
Most preloaders only check >>3490001, so on HDD it will load (nearly) instantly.
Others have some code or animation playing that takes a minimum time to execute. There's no easy
way to change that I presume. Maybe check the funtion that executes when the flash is loaded and
execute it in the first frame instead, but that will skip preloading and might fuck up all kinds
of things.
>> [_] Anonymous 11/29/22(Tue)01:33:17 No.3490025
>>3490017
This worked, I just removed a stop() and it skips directly through. thanks