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

#646 wildcard -selectas3class
Author: user bossfong
Date created:
Type: feature
Visibility: Everybody
Assigned to: admin JPEXS
Labels: Commandline
State: new Help

It would be nice to put a wildcard on -selectas3class so that included libraries (that don't need to be decompiled) can be ignored. something like -selectas3class net.* _-* for decompiling only the net namespace and all obfuscated classes.
admin
Hi, this feature already exists. On Windows, there is problem with passing star(*) as commandline parameter to java so you can use plus (+) alternatively. On Linux/Mac, star should work. Wildcard works only at the end of the path after dot. everything in package net: -selectas3class net.+ everything in package com.example: -selectas3class com.example.+ everything in package net and all subpackages: -selectas3class net.++ These will not work: -selectas3class net.+.example Is this enough, can I close this issue?
Assigned:admin JPEXS
user
Oh, I wasn't aware of this. This seems to work for net.++, but not for something like _-+ or _-++ to decompile all obfuscated files. Thanks for letting me know!
developer
-selectas3class parameter was REMOVED. Please use -selectclass instead. See --help for usage.