Here we are! Could you please follow those steps to run the test ?:
1. Place the attached 'Application shortcut [Script].au3' fle inside mGalaxy > Data > Scripts folder
2. With a text editor, open mGalaxy > Data > UserSystems > UserSystems.xml file
Locate this block of code:
Code: Select all
<Emu selected="Application shortcut">
<Cmd hidden="false" name="Application shortcut" value="/C "%path\%file%ext"" extensions=".lnk" />
</Emu>
and edit it this way (actually, just adding a space and [Script]" to the names):
Code: Select all
<Emu selected="Application shortcut [Script]">
<Cmd hidden="false" name="Application shortcut [Script]" value="/C "%path\%file%ext"" extensions=".lnk" />
</Emu>
think to save!
3. Run mGalaxy! Is it working as it should now?
If yes, you're done!
If not, with a text editor, open mGalaxy > Data > Scripts > Application shortcut [Script].au3 file
Locate this block of code:
Code: Select all
;Make it foreground
WinActivate($hWnd)
WinSetState($hWnd, "", @SW_MAXIMIZE)
;WinSetOnTop($hWnd, "", 1)
...and remove the semicolon in front of WinSetState($hWnd, "", @SW_MAXIMIZE)
you should end up with a block like this:
Code: Select all
;Make it foreground
WinActivate($hWnd)
WinSetState($hWnd, "", @SW_MAXIMIZE)
WinSetOnTop($hWnd, "", 1)
think to save
Run mGalaxy!
I'm waiting for your report