Skip to content

Frequently Asked Questions For Users

Daniel Chin edited this page Jun 6, 2023 · 66 revisions

What is Ruffle?

Flash Player has been removed from browsers in 2021. As of now, the only ways of using the official player is using desktop players, alternative browsers or obsolete versions of browsers. Ruffle is a project that allows running Flash content in the browser without the official player.

Why did I get a message about unsupported content?

Currently Ruffle only supports games written in ActionScript 1 and 2. This includes all games before 2006 and only some games released later.

Unfortunately, your content was using Actionscript 3, which Ruffle does not yet support.

When will this work?

There is no single release date. Development is in progress, and as it progresses, simple content will start working first, while more complex content will follow later. However, as of right now (April 2023), Ruffle supports several simple and even some slightly more complex AS3 games, but further support is still being developed. See the ActionScript 3 API Implementation page for advanced implementation details of current API support.

If you’re wondering why ActionScript 3 support is taking a long time to develop, see this comment for an in-depth explanation.

What if I really want to play this content?

While you can no longer run Flash Player in modern browsers, you can still run SWF files in the official desktop Flash Player. You can also research other projects like Flashpoint or Lightspark.
To obtain the SWF file from an online Ruffle emulator, right click the emulator and copy debug info, and locate the URL to the hosted SWF file.

Can I install Ruffle on my mobile device?

Ruffle does not have any official mobile apps yet. But if you have an SWF file downloaded to your device, you can play the file in your web browser using the Ruffle Web Demo. Websites that self-host content using Ruffle work on mobile devices too. For example, the Internet Archive has a constantly growing collection of Flash files running via Ruffle in your browser - no download required.

If you have an Android device, you may be able to install the Ruffle Chrome extension using the Kiwi Browser - see Using Ruffle for more details.

The virtual keyboard should appear when you click an editable text field, but if a game has keyboard controls, functionality may be missing. You can work around this by opening the touch keyboard from the taskbar on Windows or by using Hacker's Keyboard on older versions of Android. You must then enable 'use permanent notification' in its settings. It will then show an ongoing notification which you can tap on to invoke the keyboard at any point. But this does not work anymore in Android 12!

How can I use Ruffle with local HTML files?

Ruffle cannot run directly on local HTML files because of browser limitations, so you'll need to access the files via a local web server. If you use Chrome, the easiest option is to install the Web Server for Chrome extension. Or if you have Python, you can run this command from the folder containing your files: python -m http.server.

I'm trying to use ruffle on Microsoft Edge, but it runs extremely slowly or I get a "Something went wrong" error.

A browser setting is likely interfering with WebAssembly, which Ruffle requires to run. To fix this problem, follow the steps below.

  1. Open Microsoft Edge's settings
    image
  2. Click the "Privacy, search and services" tab on the left
    image
  3. Turn off "Enhance your security on the web"
    image

If you don't want to turn off this setting completely, you can add exceptions for specific sites to allow Ruffle to run. See this Microsoft documentation for more information.

How do I uninstall Ruffle?

The Ruffle desktop app is portable; just delete its folder to uninstall it.

The extension can be uninstalled by right-clicking on the extension and selecting the "Remove" option. It can also be uninstalled from chrome://extensions (in Chrome or Chromium-based browsers) or about:addons (in Firefox).

If Ruffle is still running on a website after you uninstalled the extension, that means that the site is self-hosting Ruffle - it’s already part of the website itself. If you don't want to use Ruffle, you'll have to visit a different website.

When browsing the Wayback Machine, I see a box saying "Adobe Flash Player is no longer supported."

In Chrome, Edge and other Chromium-based browsers, the Ruffle extension sometimes cannot load early enough to play Flash content on the page. To fix the issue, simply "hard refresh" the page by holding down the Shift key while clicking the browser's Reload icon.

When I try to view Flash items on the Internet Archive, I always get a "Something went wrong" error.

This can happen when a cached script interferes with Ruffle. To fix the problem, simply "hard refresh" the page by holding down the Shift key while clicking the browser's Reload icon.

How do I make Ruffle start playing content automatically when a page first loads like Flash Player?

Unlike Adobe Flash player, modern browsers don't allow content to begin playing audio without user interaction. If Ruffle automatically began playing the visuals but not the audio of content that was meant to start with audio, the audio could become de-synced when it does begin, so the content pauses altogether until it has been interacted with, and Ruffle shows an orange play button.

Additionally, unlike Flash Player, Ruffle currently does not support streamed loading of content. Because some content could take a long time to load, and also Ruffle itself can take a while to load as it uses a several megabyte large WebAssembly file, a splash screen was added to indicate that progress occurred.

However, all of that is just the default behavior. If your content is not meant to start playing audio before interaction anyway, the play button is unnecessary. Also, the splash screen could look strange on old-Flash based websites, and is not as necessary if the Flash content loads quickly anyway (though Ruffle itself can still take some time to load).

If all of that is the case and you are using the extension: You can click the Ruffle symbol to enable the option "Play automatically without splash screen (then click to unmute)"

If all of that is the case and you are self-hosting Ruffle, you can use these configuration options (see https://github.com/ruffle-rs/ruffle/wiki/Using-Ruffle#configuration-options):

window.RufflePlayer.config = {
     // Start playing the content automatically, without audio if the browser in use does not allow audio to autoplay
    "autoplay": "on",
    // Do not show an overlay to unmute the content while it plays; when the content area receives its first interaction, it will unmute
    "unmuteOverlay": "hidden",
     // Do not show a splash screen before the content loads; the content area will remain blank until Ruffle fully loads the content
    "splashScreen": false,
}

How do I sponsor this project?

You can sponsor us by visiting this page.