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.

#1526 MOUSE SCROLLING IT'S TOO SLOW
Author:
Timetraveler_1

Date created:
Type: bug
Visibility: Everybody
Assigned to:
Labels: GUI
State: closed 

> What steps will reproduce the problem?
Just scrolling with the mouse wheel
> What is the expected output? What do you see instead?
when i scroll with the mouse wheel, the page scroll too much slow.. also when i hold on on
the arrow for the scrolling bar, it has the same speed of the mouse scrolling wheel..
> What version of the product are you using? Is it "nightly build"? Which operating system
do you have?
11.2.0 on windows 10 64bit, it isn't nightly build.
> Please provide any additional information below. If the problem is related to a SWF
file, attach it here, otherwise we can't help you.
on my pc is set 3 points of scrolling and it work fine in windows and other ambiences, but
on JPEXS something doesn't work maybe it consider 3 points to be 0.3. ATTACKED IS THE
SCREENSHOT

since i don't use java so i just made a jar hack to fix this
https://drive.google.com/file/d/1Rg14v3t2FE_a79UoF-zwQ8LtuALHHj8r/view?usp=sharing
file i modified:
/flash/gui/MainPanel
private JPanel createFolderPreviewCard() {
JPanel folderPreviewCard = new JPanel(new BorderLayout());
this.folderPreviewPanel = new FolderPreviewPanel(this, new
ArrayList<TreeItem>());
JScrollPane jScrollPane = new JScrollPane(this.folderPreviewPanel);
JScrollBar jScrollBar = jScrollPane.getVerticalScrollBar();
jScrollBar.setUnitIncrement(32);
folderPreviewCard.add((Component)jScrollPane, "Center");
return folderPreviewCard;
}

Thank you.
I implemented this few versions ago.
State: new→closed