irrational
Maybe there is a vector animation tool that is as easy to use as Flash was, but that fact that we rarely see vector animations like we did back in the day makes me think not.

I used to work with a group that created training materials using Flash. We had a bunch of animators that knew nothing about coding, but they could produce all of these amazing animated videos using Flash.

They could also produce interactive animations. One job we did was creating 3d renderings of printers. The printers could be torn down in the flash app to the smallest screw. A technician could choose what they wanted to do to the printer, and the flash movie would show them step by step in full animation what to do. At any time they could rotate the printer in all an axes to view different angles. It was amazing. And it was animators who knew nothing about code that built it all. The things they could do you just don’t see anymore.

I remember another project we worked on that had these mini games you could play in place of being multiple choice quizzes.

All of that is just gone. There was so much animation and interaction and fun that has been replaced with boring, text, images, and videos.

The best part was, it was all vectors, so the file sizes for even long animated movies was incredibly small. Back in those days we had very low bandwidth, but flash worked great. We had retailers in Asia that consumed our content no problem. Now our content is mostly text, images and videos. Those same retailers have higher bandwidth, but really struggle because the files sizes are enormous compared to flash.

skytreader
A lot of answers already boil down to, basically, superior developer experience. But there's an aspect of this that I want to highlight: resource efficiency.

Around the latter half of the 00s, I had a Windows XP machine with 256MB of RAM and a Pentium 4 processor, with a matching spinning metal-disk hard drive. I could make decent Flash animations and games with it. I could view entire websites in Flash with Internet Explorer 8.

Today, my personal machine is a laptop I bought from 2016. Core i7 (4 cores), AMD graphics card, 16GB of RAM. It's not top-of-the-line even when I bought it but I put in ~200 hours of The Witcher 3 in it, finishing the main quest and the two paid DLCs. That said, modern web dev is a PITA in this mostly because I'm too cheap to upgrade to an SSD. Oh, also, the GitHub homepage that showed live commits on the globe makes the fans scream with Chrome unless I enable hardware acceleration. (In fairness that's enabled by default, but it so happened I had to turn it off and forgot to turn it back on.)

I still can't figure out why my personal machine can't provide a decent feedback loop on a React/Angular+Typescript stack (that's not even doing animations!) just because I don't have an SSD. In my very opinionated opinion, only a database server needs an SSD.

A Phaser+Typescript project (my preferred modern web gaming stack) is just a slightly better experience than React. But, again, I wonder why it needs hardware acceleration at all to function well and I've only implemented very "static" boardgames so far. Maybe I'm just a sloppy programmer but I'm definitely better than when I was making stuff in Flash. This shouldn't be eating that much resources, right?

captainmuon
HTML+JS is "turing complete" so in a sense you can make everything in HTML that you could make in Flash.

In practice, I think the authoring experience has been lost. There is still Adobe Animate (which is the renamed Flash application), but I think you can not export to a fully interactive HTML application - only to static videos or simple HTML (like interactive ads). Maybe it is now possible, but I haven't seen much use of it.

The magic of Flash started with a very nice vector editor - it even allowed you to "paint" Vectors with a brush. Then you had very intuitive tools for animations (tweening, onion shells). You could add simple interaction from the GUI. But it was easy to run custom ActionScript (basically JS) code on events, and move objects around on the screen. When you needed more control, you could also completely go to the ActionScript level and create your objects from code.

Nowadays, what do you use to create animations? After Effects seems what a lot of people use but it is overkill. Animate seems to be barely maintained. And if you want to do a game? I think Unity & co. have taken over, but they lack a bit the low barrier to entry that Flash had.

wodenokoto
I'd say you can do anything with java-script and a canvas as flash could, but the number of people who could do it in flash was much higher than the number of people who can do it with "modern" tools.
MengerSponge
People's use of the internet has changed, but the fact that there is not a new Homestar Runner or NewGrounds is telling. How much does a weird high school/college art nerd need to know about the tech stack to get their vision online?

I'm old enough that HSR is still part of my lexicon. Kids just think I'm weird, which is fine.

KaiserPro
Look the same on all platforms.

Allow artists to create simple animation quickly.

run fast.

The key selling point of flash was that it was an author once, run anywhere tool. I could use keyframe animation along with a simple scripting language to make almost anything. Not only that it was fast to build and deploy.

Nothing I've seen recently allows an artist to do the same. I've tried a couple of times over the years to make an animated SVG on the web, and all of them required me to program keyframes using code, which sucked. Not only that its dogshit slow. animating <5 low complexity shapes would eat 50% of CPU, (think squares and circles).

Worse still all of those libraries are deprecated now, so if I want to do it again, I'll need to start again from scratch and select a new animation library.

fxtentacle
Nowadays with WASM and WebGL you can do basically everything in a web browser, but you'll take a 100x performance hit.

Every game using Unity/Unreal + WASM needs to download 10-20 MB of JavaScript before it even starts loading the actual assets. With Flash, that could have been a 10 KB SWF instead.

Similarly, Flash had really fluid animations that were drawn purely on the CPU. Why my 266 MHz P2 could have better vector animations than people nowadays can squeeze out of a 3070 with WebGL is beyond me.

In my opinion, we still DO NOT have any worthwhile replacement for the ease of cross-platform development combined with excellent performance that Flash had.

hlandau
We can't distribute an entire game or animation as a single file which can be downloaded or embedded on a website. Think about things like Newgrounds.

I mean I guess you could do something awful with base64 encoding assets into a giant HTML file, but that sounds horrible.

Flash was also a platform for hosting bandwidth-efficient animation and people have just gone to using video now. That sacrifices incidental, easter egg-type interactivity and drives people to centralised services like YouTube.

trilbyglens
ActionScript was a terrible language. More complex flash projects were really a hacked together mishmash of things, none of it standard, none of it supported without plugins, and oh, have we all forgotten about the weekly zero-days that flash had?

It might have been more "creative" but that was also due to the fact that it was around at the beginning of the web, when everything was more creative. People had not figured out UI or UX patterns yet at that point, and there was massive wheel reinvention taking place all the time.

Flash was an absolute catastrophe for accessibility at well. A screen reader would just say "Flash movie" as that's all that was actually in the page.

We've had to reinvent a lot of that stuff, true, but we've also gained interoperability, security, and accessibility. I think those are all worthy trade-offs.

noduerme
I'm surprised no one has mentioned vector-based animation, which was a primary tool in Flash. AFAIK there's no SVG solution that comes close in performance or flexibility to keyframe- or programmatically animating complex vector graphics (with user interaction!) the way you could in Flash.
planede
The original N game v1.0, released in 2004 [1] had fluid vector animation without stutter on a modest computer at the time. It's a pretty challenging platformer, and any stutter would have killed the gameplay.

Later flash versions regressed in performance and can't run this game without stutter in my experience. A way to play the original game today is to get an old version of "Adobe flash player projector". If you are paranoid, use some OS level sandbox around it.

I did not see an in-browser game since the original N game that matches its low system requirements and smooth gameplay.

[1] https://www.thewayoftheninja.org/n_history.html

BTW, the successor N v2 is also pretty good, and it's not flash-based, AFAIK.

rendall
I would say no, that modern browsers have the potential to do everything that Flash did, but it's not nearly as easy.

While it is possible in modern browsers to make a) cross-platform, front-end web applications with b) smooth vector and c) bitmap animation incorporating d) multimedia sound and e) video driven by f) a backend API (called dynamic data back then), it is not nearly as prevalent as it was. Animations and multi-media objects were first-class citizens in Flash in a way they are not in browsers.

I do think that's not entirely the browser makers fault. Web aesthetics have changed. Users liked swooping and diving logos with dramatic drop-shadows then, and not so much now.

est
> still can’t do with today’s web

Playing smooth vector animations on a single-core Pentium III computer with 64MB RAM.

fimdomeio
I don't think the problem is the the web, the problem is screen sizes. Things where a lot simpler when all you had to think about was 800 x 600 or 1024 x 768. As soon as you got mobile and all kinds of resolutions it became a lot more technically complex which hinderes creativity.
jhoelzel
It was not flash that we were fighting. it was adobe and their proriarity and thought process in keeping flash to themselfs.

If adobe would have not been the way they were, they would now dominate the animation scene too.

Instead, inadvertetly because of patents, we dont have anything cool to show for.

All this minimalism everywhere is disgusting. And they never get it right anyway because you have to put hightower ads everywhere you can.

While it still was macromedia calling the shots, people had trust in flash

ciroduran
I read somewhere that if a tool allows a massive amount of people to churn out mediocre stuff, your tool is an absolute success. I think that Flash was that success.

Even if web standards have caught up with what Adobe Flash used to do a full decade ago, writing games for the browser became a lot more difficult to do.

Barring Adobe killing Flash by disappearing it from the internet, I can run anything I wrote in 2004 on Flash Player in 2022. This level of compatibility is only surpassed by Windows programs. In today's web, I not only need to be careful of supporting 3 major browser vendors, but also support any breaking changes that any of these make, which means I might need to recompile my project long after I have archived it.

The closest thing that has allowed me to make stuff easily for a web browser is PICO-8. A fantasy console, with very limited resolution and capabilities, but all its dev tools integrated, that allows you to quickly export to HTML5 and optionally upload it to its BBS (the website). PICO-8 has made amateur gamedev fun for me again.

yawnxyz
AS3 was very powerful in terms of prototyping games and sound design. A long time ago I worked on lots of "music games" that combined game mechanics (like top down space shooters or "flappy bird" style stuff) with synthesizer code that made music.

I have no idea how to go about recreating my projects today in JS at all...

thom
Given broad support for the Web Audio API these days I can’t think of anything that’s not been standardised, unless you wanted some form of preloading baked into the spec. ActionScript had actual integer types, if I remember correctly.

As others have said, it’s mostly tooling and workflow. As much as I’d like to sneer at Flash in general, my experience with it on projects was positive. The IDEs and tools were good, you could approach everything code first with unit tests. The process of cutting up PhotoShop PSDs from a designer and building UIs in FlashBuilder, while orchestrating everything in code in an MVC style was very pleasant.

ajsnigrutin
I miss flash games... and there were A LOT of good flash games.

I know that they can be remade with other technologies, but except for some clones remade to be a pay-to-win mobile apps, a lot of those games are just gone now.

onion2k
It's definitely harder to break out of the browser sandbox and attack the underlying system without it.
rcarmo
I keep hoping that we’ll be able to package Flash-grade animations as WASM and send them out as a single file (or as two files, one for a Haxe-like runtime and another for the game or animation). But since there is no real standard authoring tool (and nobody mentions those, or the ease of use the Flash “IDE” had) I don’t have much hope.

The closest I’ve seen (and actually use) is Hype (https://tumult.com/hype/), but it is Mac only.

halpmeh
Kind of late to the party here, but there is a major thing provided by Flash that's missing from today's web: the ability to get artists and hobbyists into creating interactive digital experiences. The current web sucks at that because it doesn't provide a seamless path to upgrade one's artistic talent the way Flash did for people who were already familiar with digital art tools.
gregjor
We can't make users download a third-party plugin to use a web site anymore. I suppose that's possible but I don't miss those pop-ups.

I still have one customer with a Flash-based web site, even though it doesn't work on any modern browser. They actually have some old version of IE and the Flash plugin available for download just to use their site.

superasn
I don't know if this is the case with HTML5 but one small feature of flash that I really loved is the seamless music loop even when the audio had trailing or padding silence.

The loop just worked and flash trimmed out silence automatically when playing the music. Very useful for games.

DoItToMe81
Most tools today do some part of what Flash did but far better. Godot's scripting language is a ton better than ActionScript, practically all animating and spriting programs are better, too. Except for Vector animation, I have no idea what happened to that.

But not a single one has the same 'all in one' nature that Flash did. Back in the day, people who'd never even think of making a game could be exposed to it and eventually make one, now everything is more specialized and compartmentalized. The smallest webgame engines I see still have 5 MB of bloat, too, whereas a decently big flash game could be 500~ish KB.

Cloudef
There's rive that's very similar to flash https://rive.app/
warpech
One thing that comes to mind: Flash could do rawish TCP socket communication. You could implement various protocols on top of it in user code.

That's not possible with Web APIs. Web APIs are more high-level (complex, purpose-oriented), e.g. WebSockets, WebRTC, WebTransport. The low-level stuff is not exposed to user code and probably never will. One of the reasons is security.

seydor
Lots mainly because it was integrated. Video conference was supported right away with the free red5 streaming server, decades ago. Compare that with webrtc thats so hard to make it work right

Html does most of the stuff now in theory, but its so much more difficult to access that it's not fun

adamredwoods
Compressed frame-by-frame animation.
atonse
Are there editors like flash that allow you to build flash like animations with just output as css?

Probably…

BoppreH
As a refugee from the collapse of Flash myself, about once a year I'll check what's the state of similar tools and be disappointed.

This year the situation is a little better. There's gdevelop, Rive, ct.js, Godot, Construct 3, and Wick Editor. None of them feel as friendly as Flash (except maybe Wick), or as efficient (I just played a small Rive game that made 500+ network requests to load assets). But they come with their upsides, like better game frameworks, better addons, better 3D support, etc.

So I wonder why we're still not seeing small free games. Are the tools not good enough? Packaging is too hard? Lack of good portals, à la Miniclip/Newgrounds/Kongregate? Or has internet culture simply moved away from interactivity to catchy videos?

skyde
sadly a lot.

Show me a tool where a 10 years old can draw and animate stick figure cartoons and publish is in a lightweight vector format (not video)!

tmaly
Adobe Animate seems to pretty much the same with HTML5. You can still script things in ECMAscript like you could with Flash.
bobsmooth
No, but is there anything that has replaced Flash Builder? Also no.
tatersolid
Remote code execution.
1attice
I have an original theory, and it goes like this.

Generalizing, tech progress swings repeatedly and unpredictably between three optimands or poles: Developer-first, User-first, and Machine-first.

Developer-first tech is like Flash -- it's powerful because the developer experience is powerful. The quality and profusion of great products drives the adoption and other network effects. Yet these programs tend to be heavier (non-optimal for machines) and, for lack of a better term, frou-frou-ier; the ease of applying themes and styles promotes 'mystery UI', where the dev reinvents (or more commonly, balderizes) the visual language of the user interface. Flash apps always had ornate, ridiculous scroll bars and buttons and so forth, mostly because the DX made customization so easy, and this imposed a sort of psychological tax on the users, often to the point of compromising the user experience.

By contrast, user-first tech emphasizes the experience of the end user or consumer. For example, HTML5/CSS3 is harder to author than Flash, but, as an open standard, offered the end-user choice of platform and graceful degradation on mobile.

That said, user-first tech can often have terrible developer experience (DX), and that is very true of HTML5/CSS3. It's basically coders-only, for certain lightweight values of the word 'code'.

Finally, there is machine-first tech -- apps that prioritize the machine's experience. This family of tools generally pursues performance at the expense of both the developer and the user. Generally one can think of Moore's Law as describing an asymptotic decline in the importance of what I'll haltingly call 'MX', because as machines get more powerful, it's less important to cater to them.

So you can think of the birth of the web as a move away from optimizing for MX towards optimizing some balance of DX or UX, but which of those two other poles picks up the bounty of Moore's Law is up to fashion, social trends, etc.

Finally, it's common for premature market anticipation of MX-shedding to drive clumsy, non-performant solutions that privileged DX or UX (or both) to such a degree that the machines simply don't like to run it much anymore. In other words, people overshoot in their attempts to optimize DX, UX, or both, and in doing so compromise the machine's experience of that code. When this happens, the market tends to lurch back towards MX. I perceive the move to (say) Rust from higher-level languages (Python, etc) as an example of trading off DX and even UX for MX. Arguably, Wayland does this as well, shedding both UX and DX considerations to improve machine-oriented properties such as security.

Going deeper, one could think of MX as being 'hardware-owner-first', as machines are not the sort of things that can have genuine experiences of their own -- however, animism is a useful form of lossy compression here.

joshxyz
yes, lots of RCE's, we miss that dont we?
lawwantsin17
sr.ht