Skip to content

Instantly share code, notes, and snippets.

View joshtynjala's full-sized avatar

Josh Tynjala joshtynjala

View GitHub Profile

These are the last known good official Adobe URLs that allow you to download the Adobe Flash Player 32.0 standalone projector content debugger for Windows, macOS, and Linux. These are executables that allow developers to open .swf files outside of a web browser, and they can connect to a debugger in an IDE, like Adobe Flash Builder, IntelliJ IDEA, or the SWF Debugger for Visual Studio Code.

Note: As of January 2026, these URLs were still active, but it is best to assume that they could be removed by Adobe at any time, without notice. If you anticipate needing a standalone Adobe Flash Player executable in the future, you should download and keep a backup copy somewhere safe. If these URLs are removed, you may need to find a way to run your SWF using Adobe AIR from HARMAN or Ruffle instead.

@joshtynjala
joshtynjala / profiles.json
Created August 8, 2019 15:46
Ayu color schemes for Windows Terminal
{
"schemes" :
[
{
"background" : "#fafafa",
"black" : "#000000",
"blue" : "#3199e1",
"brightBlack" : "#686868",
"brightBlue" : "#399ee6",
"brightCyan" : "#4cbf99",
@joshtynjala
joshtynjala / README.md
Last active February 23, 2026 18:54
Unable to activate Macromedia products

Error: Unable to activate Macromedia products

The following content was officially published on Adobe's website after the activation server for Macromedia branded products was disabled. It is archived here for historical preservation. You may also find a snapshot of the original page on the Internet Archive Wayback Machine: Adobe: Error, "Unable to Activate" in Macromedia legacy products.

Adobe disabled the activation server for several Macromedia branded products:

  • Captivate (version 1.0)
  • Contribute (version 2.0 and 3.0)
  • Flash Paper (version 2.0)
  • FreeHand MX
@joshtynjala
joshtynjala / ArchivedFlashDocs.md
Last active February 19, 2026 19:23
Adobe Flash Documentation Markdown Archive

Adobe Flash Documentation Markdown Archive

Links to archives of official documentation for ActionScript 3.0, Adobe Flash Player, Adobe AIR, and Adobe Flex — converted to Markdown format. Adobe Systems Incorporated released this content under a Creative Commons BY-NC-SA 3.0 license, which makes it possible for this archive to exist.

ActionScript and Flash

@joshtynjala
joshtynjala / Adobe AIR SDK 32.0 Downloads.md
Last active January 27, 2026 17:24
How to download Adobe AIR SDK 32.0

These are the last known good official Adobe URLs that allow you to download Adobe AIR SDK 32.0 for Windows and macOS.

Note: As of January 2026, these URLs were still active, but it is best to assume that they could be removed by Adobe at any time, without notice. If you anticipate needing this older version of the AIR SDK in the future, you should download and keep a backup copy somewhere safe. If these URLs are removed, you may need to switch to Adobe AIR from HARMAN instead.

You can download two versions of the AIR SDK, either with or without a bundled AS3 compiler.

URLs for the AIR SDK that includes the ASC 2.0 compiler:

@joshtynjala
joshtynjala / Adobe Flex SDK Zip Downloads.md
Last active January 27, 2026 17:24
How to download Adobe Flex SDK

These are last known good working URLs on adobe.com to .zip downloads of the Adobe Flex SDK from version 2.0 Hotfix 1, and 3.0.0 to 4.6.0.

Note: As of January 2026, these URLs were still active, but it is best to assume that they could be removed by Adobe at any time, without notice. If you anticipate needing any of these versions of the Adobe Flex SDK in the future, you should download and keep a backup copy somewhere safe. If these URLs are removed, you may be able to use the Apache Flex SDK instead. To download the Apache Flex SDK, visit https://flex.apache.org/download-binaries.html

@joshtynjala
joshtynjala / FeathersUIWrapper.as
Last active November 25, 2025 23:11
FeathersUIWrapper for Apache Flex
/*
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@joshtynjala
joshtynjala / 1) macOS sign Adobe AIR app.sh
Last active October 2, 2025 19:10
Adobe AIR macOS sign and notarize for distribution outside of the App Store
# how to sign an Adobe AIR app with captive runtime on macOS for distribution outside of App Store (Developer ID application)
# you should have already run adt from the AIR SDK
# Entitlements.plist is included below in this Gist
/usr/bin/codesign --force --verify --sign "Developer ID Application: My Company (XXXXXXXXXX)" --deep --options runtime --entitlements Entitlements.plist MyApp.app
# verifies that the code signing of .app file is valid
/usr/sbin/spctl --assess --verbose --type execute MyApp.app
@joshtynjala
joshtynjala / ColorOffsetFilter.hx
Last active April 23, 2025 17:13
The revised ColorOffsetFilter of the tutorial from the Starling Manual for OpenFL; now with fixed PMA handling.
// =================================================================================================
//
// Starling Framework
// Copyright Gamua GmbH. All Rights Reserved.
//
// This program is free software. You can redistribute and/or modify it
// in accordance with the terms of the accompanying license agreement.
//
// =================================================================================================
@joshtynjala
joshtynjala / ColorOffsetStyle.hx
Last active April 23, 2025 17:13
A MeshStyle for Starling 2 that allows to add an offset to each color channel of a mesh, as described in the Starling Manual for OpenFL.
// =================================================================================================
//
// Starling Framework
// Copyright Gamua GmbH. All Rights Reserved.
//
// This program is free software. You can redistribute and/or modify it
// in accordance with the terms of the accompanying license agreement.
//
// =================================================================================================