Earlier quoted context omitted.
Flash was a great technology for so many reasons. I really wish Adobe had open sourced it at the end. I suspect it would have paid dividends somehow. Flash died because Adobe couldn't get a version running on iOS that wasn't garbage. I was working with Adobe when the iPhone came out and they did have dev versions where it was running, but it was awful. Visibly laggy, nearly unusable. No real thought into UI mapping f…
adobe was the death of flash. Macromedia had a better handle on it, and when adobe bought it, then ran it into the floor and gave up early, leaving it to rot. I don't think they could even open source it, with all the other companies' copyright work they shoved into it, like dolby
Internet Archive expands Flash support
81–90 of 231 posts
Re: Internet Archive expands Flash support
#82working on a game right now. the second to last attempt was in godot 4. it reminded me a lot of flash, especially in 2d mode. to anyone missing flash go checkout godot!
Re: Internet Archive expands Flash support
#83Earlier quoted context omitted.
adobe was the death of flash. Macromedia had a better handle on it, and when adobe bought it, then ran it into the floor and gave up early, leaving it to rot. I don't think they could even open source it, with all the other companies' copyright work they shoved into it, like dolby
The problem was that Flash Player needed significant rewrites and Adobe didn't want to pay for them. Or at least, not without finding a way to get more money out of game developers for the privilege. The story starts with Adobe. They proudly announce AS4, along with an "FP Next" intended to run it. Then they also mention new revshare rules mandated on anyone cross-compiling 3D game engines to Flash Player. This is sp…
Re: Internet Archive expands Flash support
#84Re: Internet Archive expands Flash support
#85Re: Internet Archive expands Flash support
#86https://archive.org/details/flash_flow
In fact, the motion of the little bit that it does feels much less smooth than I remember from last time I checked.
Re: Internet Archive expands Flash support
#87Earlier quoted context omitted.
Yeah, but there was a reason that we "didn't have much else in the way of video on the internet" at the time — bitmapped videos were far too bandwidth-intensive for most people to download in realtime . (You could still download them, and people sometimes did; but a 3-minute, 240p MPEG1/RealPlayer clip was something you'd need to dedicate a half-hour to fetching, either using a download manager or Limewire. It was no…
Hanna Barbera is another famous aethetic driven from logistical considerations. Every HB character wears a tie or a necklace because it provides a seam to separate the head from the body. You can have a bunch of Wilma or Yogi heads that reuse a single body. Lets you animate dialog without having to redraw literally everything.
Re: Internet Archive expands Flash support
#88I was just watching a YouTube video about Home Star Runner yesterday: https://www.youtube.com/watch?v=Wbh9-mNmviE I never watched the series myself but I do remember hearing about it. In the video essay he talks about how flash videos like Home Star Runner were a unique medium. Not quite passive like a video but not quite interactive like a video game. The videos could be watched passively but also could incorporate…
Flash was a great technology for so many reasons. I really wish Adobe had open sourced it at the end. I suspect it would have paid dividends somehow. Flash died because Adobe couldn't get a version running on iOS that wasn't garbage. I was working with Adobe when the iPhone came out and they did have dev versions where it was running, but it was awful. Visibly laggy, nearly unusable. No real thought into UI mapping f…
I was working as Flash dev for a large company and we used to send support tickets to Adobe, some included weird compiler bugs that could be dodged by exchanging two lines of Actionscript. Adobe didn't respond a single ticket. My theory is that Macromedia's code base was just way too complex to be fixed or ported, and so they started working from scratch on the successor of Flash: Adobe AIR, but took some wrong decisions and never got as popular.
Re: Internet Archive expands Flash support
#89I was just watching a YouTube video about Home Star Runner yesterday: https://www.youtube.com/watch?v=Wbh9-mNmviE I never watched the series myself but I do remember hearing about it. In the video essay he talks about how flash videos like Home Star Runner were a unique medium. Not quite passive like a video but not quite interactive like a video game. The videos could be watched passively but also could incorporate…
Flash really was something special. We created all kinds of training content in it (all of which was completely replaced with static text and images after all of our customers adopted iPads for doing associate training - Which where it still is today, extremely boring). We all these animated characters, with their own backstories and personalities, that each had their own professional voice talent. Associates in Asia…
Re: Internet Archive expands Flash support
#90Earlier quoted context omitted.
The problem was that Flash Player needed significant rewrites and Adobe didn't want to pay for them. Or at least, not without finding a way to get more money out of game developers for the privilege. The story starts with Adobe. They proudly announce AS4, along with an "FP Next" intended to run it. Then they also mention new revshare rules mandated on anyone cross-compiling 3D game engines to Flash Player. This is sp…
I don't quite get why the Flash plugins were do slow on mobile. On Windows desktop, Flash was much faster than other NPAPI plugins. Most other plugins froze the whole browser for a second or so (Java even longer), while Flash didn't do that. And at the time, early native "HTML5 replacements" for Flash ads/games were actually slower than Flash.
And vector rendering on GPUs is a pain to do, even more so with Flash Player's rendering quirks. Adobe's official solution to hardware rendering on Flash was Starling Framework, which rendered all your assets to bitmap textures and then gave you a DisplayObject-compatible API that triggered Stage3D renders under the hood.
In Ruffle we use a tesselation library to render on GPU. This preserves vector scalability but it has other issues. Most movies work fine with it, but we have to waste time tessellating[0] assets, and in certain contrived cases we tesselate things wrong and movies look polygonal.
[0] Which we hid behind existing Flash preloaders. We don't even support progressive download yet! But the alternative was Homestuck hanging your browser for minutes on end.