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#2049 Cut to tag clipboard issue
Author:
noobsaibot
noobsaibotDate created:
Type: bug
Visibility: Everybody
Assigned to:
State: new 

> What steps will reproduce the problem?
I had some buttons (placeObject2) on a DefineSprite(town_room) tag, but I wanted to move
them to other DefineSprite(cheat_table). So I cut them and moved to the new DefineSprite,
but those buttons stopped working despite I rewriting the code.
_root.attachMovie("town_room","town_room",804);
_root.attachMovie("cheat_table","cheat_table",151505);
---------------------------------------------------------------
Before:
_root.town_room.button_champ_up.onRelease = function()
{
code
};
--------------------------------------------------------
After:
_root.cheat_table.button_champ_up.onRelease = function()
{
code
};
--------------------------------------------------------
These buttons are named, for example(button_champ_up). But I managed to fix it by
unchecking the "placeFlagHasName", saving, checking it again and writing the button name
again.
I am not sure if this happens because I cut to tag clipboard "without dependencies".
I didnt tested it by copying.
> What version of the product are you using? Is it "nightly build"? Which operating system
do you have?
Stable 18.5.0
> Please provide any additional information below. If the problem is related to a SWF
file, attach it here, otherwise we can't help you.
Here this print so you can see that my buttons moved from town_room to cheat_table.
Thanks a lot for your efforts, cheers.
Sem título.png (269 KiB)I did not manage to reproduce that problem on my sample SWF file.
If the problem still occurs,
please attach the SWF file you have problem with.
