If you are looking for the decompiler itself, visit https://github.com/jindrapetrik/jpexs-decompiler
NEW : We have got a new blog where we post some interesting SWF internals info.
List of issues#2563 AS3 Class Linkage does not generate the script
Author:
marcussacana
marcussacanaDate created:
Type: bug
Visibility: Everybody
Assigned to:
State: new 

> What steps will reproduce the problem?
- Right Click a image asset
- Click at "Set AS3 Class Linkage"
- Set some Class Name
- Set the "Parent Class Name" to "flash.display.BitmapData"
- Create the Linkage
> What is the expected output? What do you see instead?
- It should generate a script like this
```
package Demo
{
import flash.display.BitmapData;
[Embed(source="/_assets/21_Demo.Example.png")]
public dynamic class Example extends BitmapData
{
public function Example(width:int = 154, height:int = 57)
{
super(width,height);
}
}
}
```
> What version of the product are you using? Is it "nightly build"? Which operating system
do you have?
24.1.0 - Release Build - Windows 11
> Please provide any additional information below. If the problem is related to a SWF
file, attach it here, otherwise we can't help you.
Currently it create the script if base type is an Bitmap, my application is expecting a
BitmapData as type, currently I can do that by manually editing the script but since I
have multiple images to do the same thing the task became a bit exaustive