F4MiniMenu (AHK): F4Menu w. Drag&Drop, filelist, cmdline (XYPlorer, Everything, Explorer, Double Commander)
Moderators: Hacker, petermad, Stefan2, white
Yes, XML for the configuration file.
You would like to use INI so you can manually edit it easier?
You would like to use INI so you can manually edit it easier?
F4MiniMenu (Forum) - Open selected file(s) from TC in defined editor(s) - A (minimalistic) clone of F4Menu
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
If you really want to use INI you can download an experimental version here, haven't really tested it but as I focused on loading/saving the object from and to ini only it should probably work - download the zip here and unpack:
https://github.com/hi5/F4MiniMenu/issues/5
Update Feb 15th: If you've downloaded the INI zip file from GitHub I recommend you download it again to fix two issues with reading/writing the INI (parameters and startdir were missing)
https://github.com/hi5/F4MiniMenu/issues/5
Update Feb 15th: If you've downloaded the INI zip file from GitHub I recommend you download it again to fix two issues with reading/writing the INI (parameters and startdir were missing)
F4MiniMenu (Forum) - Open selected file(s) from TC in defined editor(s) - A (minimalistic) clone of F4Menu
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
2hi5
Can't compile to exe under Windows 7 x64 SP1 - I get error:
Under Win7 x32 SP1 all ok. I use the latest version of ahk and you tool. Any suggestions will be appreciated.
PS. I have tried both versions of F4MiniMenu XMl and INI - still no luck
Can't compile to exe under Windows 7 x64 SP1 - I get error:
Code: Select all
Error: Call to nonexistent function.
Specifically: XA_Load("F4MiniMenu.xmr')
Line#
— > 036: XA_Load(,'F4MiniMenu.xmГ,)
The program will exit.
PS. I have tried both versions of F4MiniMenu XMl and INI - still no luck
It's impossible to lead us astray for we don't care even to choose the way.
#259941, TC 11.01 x64, Windows 7 SP1 x64
#259941, TC 11.01 x64, Windows 7 SP1 x64
By the looks of it it seems that the file (F4MiniMenu.ahk) is not correct.
The code should be and you can see in the error it says
so not "F4MiniMenu.xml" but another character at the end.
OR it doesn't include XA.ahk but that would be odd.
Could be an encoding issue of the script file, should be utf-8 with BOM, do you know which version of AutoHotkey you are running?
If you have Notepad++ you can easily change the encoding to say ANSI or remote BOM and see if that helps.
The code should be
Code: Select all
XA_Load("F4MiniMenu.xml")
Code: Select all
XA_Load("F4MiniMenu.xmr')
XA_Load(,'F4MiniMenu.xmГ,)
OR it doesn't include XA.ahk but that would be odd.
Could be an encoding issue of the script file, should be utf-8 with BOM, do you know which version of AutoHotkey you are running?
If you have Notepad++ you can easily change the encoding to say ANSI or remote BOM and see if that helps.
2hi5
Now it working.
I have added a lines into the file F4MiniMenu.ahk and it seems that compiled version works fine.
Now it working.
I have added a lines into the file F4MiniMenu.ahk and it seems that compiled version works fine.
Code: Select all
#include %A_ScriptDir%\lib\class_lv_rows.ahk
#include %A_ScriptDir%\lib\DropFiles.ahk
#include %A_ScriptDir%\lib\GetPos.ahk
#include %A_ScriptDir%\lib\iob.ahk
It's impossible to lead us astray for we don't care even to choose the way.
#259941, TC 11.01 x64, Windows 7 SP1 x64
#259941, TC 11.01 x64, Windows 7 SP1 x64
2Ovg
thanks for reporting the missing XA from the INI version, updated that download here https://github.com/hi5/F4MiniMenu/issues/5
(can't believe I missed that
)
Glad to hear it works now
thanks for reporting the missing XA from the INI version, updated that download here https://github.com/hi5/F4MiniMenu/issues/5
(can't believe I missed that

Glad to hear it works now

F4MiniMenu (Forum) - Open selected file(s) from TC in defined editor(s) - A (minimalistic) clone of F4Menu
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
2hi5
Sorry, it seems you didn't understand me:
Until I added these lines to the file F4MiniMenu.ahk, compiled version did not work. The presence or absence of the file XA.ahk in the distribution of INI version did not change anything. I have compiled without XA.ahk.
Sorry, it seems you didn't understand me:
Until I added these lines to the file F4MiniMenu.ahk, compiled version did not work. The presence or absence of the file XA.ahk in the distribution of INI version did not change anything. I have compiled without XA.ahk.
It's impossible to lead us astray for we don't care even to choose the way.
#259941, TC 11.01 x64, Windows 7 SP1 x64
#259941, TC 11.01 x64, Windows 7 SP1 x64
2Ovg
That is peculiar, how do you compile? Right click on F4MiniMenu.ahk and then compile or do you use another method.
I just tried the following on win 8.1, 64bit
- I download from here https://github.com/hi5/F4MiniMenu/archive/master.zip (you get that via the "clone or download" button)
- unpacked it to a folder
- Right click on F4MiniMenu.ahk, compile
It compiles with no errors and it works as well.
In principle AHK should automatically see the files in the LIB folder and automatically "include" them - https://autohotkey.com/docs/Functions.htm#lib
Then again adding them specifically can't hurt so I will do so just to avoid future problems. Thanks for reporting it.
That is peculiar, how do you compile? Right click on F4MiniMenu.ahk and then compile or do you use another method.
I just tried the following on win 8.1, 64bit
- I download from here https://github.com/hi5/F4MiniMenu/archive/master.zip (you get that via the "clone or download" button)
- unpacked it to a folder
- Right click on F4MiniMenu.ahk, compile
It compiles with no errors and it works as well.
In principle AHK should automatically see the files in the LIB folder and automatically "include" them - https://autohotkey.com/docs/Functions.htm#lib
Then again adding them specifically can't hurt so I will do so just to avoid future problems. Thanks for reporting it.
F4MiniMenu (Forum) - Open selected file(s) from TC in defined editor(s) - A (minimalistic) clone of F4Menu
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
Thank a lot for information!
I use portable version of AHK, and I compile via AHK2EXE ...
https://yadi.sk/i/lMrIOtrYsYpRC
I use portable version of AHK, and I compile via AHK2EXE ...
https://yadi.sk/i/lMrIOtrYsYpRC
It's impossible to lead us astray for we don't care even to choose the way.
#259941, TC 11.01 x64, Windows 7 SP1 x64
#259941, TC 11.01 x64, Windows 7 SP1 x64
That might explain it, thanks.
Edit: v0.83 and the INI zip file version now have the #include lines for the lib files as posted by Ovg above.
Edit: v0.83 and the INI zip file version now have the #include lines for the lib files as posted by Ovg above.
F4MiniMenu (Forum) - Open selected file(s) from TC in defined editor(s) - A (minimalistic) clone of F4Menu
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
I think that should be possible, you can download a test version here - as I only had to amend the main script it is just one file - you just copy it to your F4MiniMenu folder and start it (be sure to close F4MiniMenu if you have it running first) - info & test download here:
https://github.com/hi5/F4MiniMenu/issues/6
https://github.com/hi5/F4MiniMenu/issues/6