Documentation is work in progress and not completeEditor
Features

FlashScript

FlashScript allows you to add custom logic and interactivity to your animations. Write code that responds to user input, controls animation playback, and creates dynamic experiences.

Basic Concepts

FlashScript is designed to be simple yet powerful. Here are the core concepts:

// Example: Simple button interaction
onPress() {
  this.playAnimation("click");
}

onHover() {
  this.playAnimation("hover");
}