JPEXS Free Flash Decompiler Issue Tracker

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 issuesList of issues

#2166 Shape opacity
Author: user modder69
Date created:
Type: question
Visibility: Everybody
Assigned to:
State: opened Help

How do I edit shape opacity when added them to a sprite?
admin
1) You must add it via PlaceObject2 or later. 2) You must enable placeFlagColorTransform flag 3) Then you can edit colorTransform field, enable hasMultTerms inside it 4) set redMultTerm, greenMultTerm, blueMultTerm to 255 (it's multiplier of 1.0) 5) set alphaMultTerm to whatever transparency you like 127 = 0.5, 255 = 1.0
State: new→opened
user
Thank you <3