Unable to open the manga in website #37
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I follow the instruction to add ID.However,when I try to click it ,it doesn't open my website ,the relevant page.(https://mangadex.org/title/6348a562-067b-45cb-ab2b-c6f33f0e7ead/blue-archive
I think the soultion is here....however,I can't manage it .
To open the link, you must double-click the cover page. A single click will not suffice.
If you would like to change this behavior, in the file you opened
mangafolder.ini, find theLeftMouseDoubleClickActionline (it should be on Line 641, under the header[LinkHitbox]) and change it toLeftMouseUpAction. So after changes, the line should look like below:Nothing happened after I tried to double click under "LeftMouseDoubleClickAction" module or single clkic under "LeftMouseUpAction" module.I suppose it's not the change in mangafolder.ini.
That is very strange. Please open the
@Resources\user\config.incfile and locate the code below at Lines 26-32:And change it to the following (we are switching to debug mode):
...and refresh the
mangafolder.iniskin (or you can refresh the entire suite, either works). It will render hitboxes where mouse interactions can occur with each skin. If everything is working fine, it should look something like below after you pull up the manga:The key legend is as follows:
A: Mark manga as caught-up
B: Mouse scroll area to navigate between manga entries
C: Double-click to go to manga
D: Open/Close manga list
E: Open File Explorer/Optional Right-Click function
So you should have 5 red boxes (some overlapping) in total. If any of the red boxes are missing, namely
[C], then we can conclude that it is an interaction layer generation issue - possibly something wrong with[EaseAction]and the script methods it is using - and the.inior '.lua` file might be corrupted somehow.Let me know if anything looks out of place. I will think of other possibilities in the mean time.
There isn't any missing box......So what can I do next?
There ARE missing boxes! Notice that there are supposed to be two boxes INSIDE the big one up top (my image shows darker red areas) - one that is overlapping the square box on the top left and another rectangle that covers the cover image. So it is an unhiding issue - I wonder if your file got corrupted somehow.
The common factor of the missing boxes is that they are the sole children of
MangaHitboxGroup. At the very bottom of themangafolder.iniconfig file, please compare your file to the code below:Notably,
[!ShowMeterGroup MangaHitboxGroup]should occur 3 times. I see you have multiple manga entries as well - try going left and right and see if the missing boxes show up then.Also, check around line 634 and compare it to the code below as well to see if everything looks the same:
As a quick test, you can remove the
Container=FileContainer2andHidden=1lines and see if the boxes appear. Try clicking them as well - the smaller box will make a sound and mark the manga as caught-up, and the larger box should open the link.If the boxes refuse to show and everything in the code looks correct, I would like you to give me your
mangafolder.inifile for me to take a look to see if anything got inadvertently changed. If I don't find any breaking changes, I will provide you with a verbose version of the skin that will output logs to further diagnose the issue.Yes,it does work!I can click the box and open the link.
Howerver,I only can read the first manga.It seems that I can't change the manga I want by scrolling
See the picture?I can only read the first link:1f63ea84-6bc6-4312-81bf-b28d5592d802
Alright, that's a step forward to fixing the issue - we're making progress!
I'd like you to follow the guideline below. Leave debug mode on, and do not edit your database with more/less manga entries until you finish the whole procedure. If you'd like to add more entries for testing, do so before you start the process. Your left-click/right-click options will also be changed to their default values - do not modify them until the tests have been completed.
mangafolder.iniin theBlueArchive\SchaleFolderdirectory to something different, likemangafolder_broken.ini. Set this file aside and do not touch it again - I would like you to package it in a.zipfile and send it to me for diagnosing..zipfile of 4 potentially fixed config files for the issue that you can download here: mangafolderconfig.zip.zipfile and move its contents into theBlueArchive\SchaleFolderdirectory.Refresh All(located at the bottom left, besideEdit Settings).mangafolder1.inivariant and try using it. Note down whether it solved the issue or not. If it didn't, note if there was a different behavior (or lack thereof).Let me know which of the variants solved the issue. If none, give me some time to run tests with your
mangafolder_broken.inifile once you send it. I want to try and reproduce your issue on my computer so I can develop a surefire solution. Worst-case scenario, it's an issue local to your machine - and outside of reinstalling a fresh version of the suite in hopes of fixing it, there might not be a proper solution.Good luck - let's hope we've finally got this.
Thanks a lot!Finally I try the third version(mangafolder3.ini)
Here is my broken file.I hope you can find the difference!
mangafolder_broken_version.zip
That's great news! I took a look at your broken version, and I'm sad to say that I couldn't find any egregious differences. So either the problem was in some other file like
manga.luawhich is highly unlikely, or it is a local problem which makes me very frustrated because I don't know what could be different on your computer that makes the skin misbehave on just this one thing.Before I close this thread, can you confirm for me that
mangafolder3.iniwas the ONLY solution that worked? Did you trymangafolder4.ini? I'd like to have a list of all of the solutions that worked between 1 through 4 so that I can compare my solutions to properly implement the working/fixed parts into a future patch.If you want, you can rename the working solution to the default name
mangafolder.ini. If you don't want to, remember to add the variant name to theToggleSwitchdatabase so that the suite remembers your selected variant.Yes,of course only
mangafolder3.ini.I find that The EaseAction plugin's action lists are different.
I hope you can check them!
Thank you for the confirmation.
I also worded my statement poorly - I meant to say that comparing your
brokenversion to the original, non-fixedmangafolder.iniversion had no differences, NOT comparing the broken version to the patchedmangafolder3.ini. I wanted to see if something broke beforehand, but that didn't seem to be the case as it looks to be an existing problem that finally showed itself in your specific case.The best reason I can come up with the 3 variant fixing your issue is that there was a race case of hiding vs. unhiding the
MangaHitboxGroupmeters. It went undetected because the 10-millisecond interval between the revealing after the persistent hiding was working fine for 99.99% of users, but on your computer the two actions manage to occur instantaneously while giving priority to the unhiding - thus re-hiding the about-to-be-revealed hitboxes. Somangafolder3.inifixes it by simply not bothering to hide the clickable elements while transitioning between entries.Thank you for helping me find a working solution to this rare issue - it will be patched in a future update, and until then you can use the working version for your personal use!