Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
about QM3 Some suggestions
#91
Normal.
#92
#32 When pasting code, using lines are not cleaned up
https://i.ibb.co/mRHHtgg/LA.gif
#93
#33
After setting the font, clicking the apply button resulted in the following error. The error did not occur again after reattempting.
https://i.ibb.co/QXc2GFF/Err.png
#94
Fixed. It happens if Recipe panel still not created (was never visible) when changing font.
#95
https://www.libreautomate.com/forum/show...1#pid37571

If it could be condensed into one line of code, it would seem more convenient

    dialog.options.timeoutTextFormat = "倒计时 {0} 秒后对话框将关闭";
    dialog.show(r, secondsTimeout: 6);
TO:
    dialog.show(r, secondsTimeout: 6, timeoutText: "倒计时 {0} 秒后对话框将关闭");
#96
#34
If the HTTP server is running, when I click the compile button again, the generated files will be as shown in the image below.
https://i.ibb.co/Yb5qsC1/AAA.png

I need to stop it first and then click the compile button again. It would be better if the stop operation could be executed automatically.
#97
I guess the dll'1 etc are the old files. The compiler renames them (because can't replace while they are used), and later deletes when/if possible.
#98
There are some related issues... so I strongly suggest:
when clicking the compile button, if any scripts related to compilation are running, automatically stop these scripts, then compile, and finally restart the previously stopped scripts.
#99
Many times, after I enter a code snippet abbreviation and press the tab key, nothing happens. I need to enter the abbreviation again.

The built-in abbreviations in LA also have the same issue, such as: pi, pc...
Can a separate option be added as shown in the figure below?  
I don't want to hide it when starting LA, but I need the LA icon to appear in the bottom right corner when closing the LA window.
https://i.ibb.co/MBs79JS/A.png
Let it be checked, and start LA like
Au.Editor.exe /v
Quote:Au.Editor.exe /v
For this, I had to create a bat file, which is not convenient.
Quote:For this, I had to create a bat file

Why not .lnk shortcut?
Another way. In a startup script:

Code:
Copy      Help
    ScriptEditor.ShowMainWindow(true);
Next LA will have this option.
thank you!
Two minor issues:
1. The newly installed LA does not have a dll folder in the Main directory.
2. After renaming the script file, the folder where the exe is generated still has the original name and does not update accordingly.
There is an issue with the search functionality in the cookbook panel.
When I search for the keyword "consoleProcess," no results are returned, even though it does exist. Additionally, the keyword is not highlighted in the articles, such as by adding a light yellow background color.
https://i.ibb.co/6rrfFnH/A.gif
When typing, searches only in names. Click the button to search in text.
thank you!

the keyword is not highlighted in the articles, such as by adding a light yellow background color.
Not necessary. Articles are short.
When I type "this", the default selected menu item is not the first one. Is this normal?
https://i.ibb.co/2nhpXVC/A.gif
Because it is lowercase 't'.
I made the name lowercase to distinguish properties that return FolderPath from other (few) properties.
#35 
Can the project folder be displayed in a specific color? This would improve its visibility.
#36
The adjustment symbol cannot be displayed when the `splittes` size is set to 1.
https://i.ibb.co/8NfW1Hm/A.gif
No double-arrow cursor? Look in Control Panel > Mouse > Pointer Options. Check "Enhance pointer precision". If it does not work, try another mouse device.
https://i.ibb.co/JcKpJtd/A.gif

The middle separator:   1 -> NO   2 -> OK
The upper separator: 1 + 2 -> OK
I can reproduce it only with extremal mouse settings: max speed and no enhance precision.

When need to move cursor with precision, I use hotkey triggers:

Code:
Copy      Help
        hk["Ctrl+Left", TKFlags.ExtendedYes] = o => mouse.moveBy(-1, 0, false);
        hk["Ctrl+Right", TKFlags.ExtendedYes] = o => mouse.moveBy(1, 0, false);
        hk["Ctrl+Up", TKFlags.ExtendedYes] = o => mouse.moveBy(0, -1, false);
        hk["Ctrl+Down", TKFlags.ExtendedYes] = o => mouse.moveBy(0, 1, false);
I can't move the mouse pointer to the 1-pixel border in the middle, but the 1-pixel borders in other areas are fine.  I also can't change the size of the middle border to 2.
What is the screen DPI? (Settings > System > Display > Scale).


Forum Jump:


Users browsing this thread: 3 Guest(s)