Mainly what I want is like 3 rows of 4 boxes, with tabs at the top for categories/favorites. It would need to have pages to scroll though. the boxes would show either a snap shot or video of the game. Touch the box and it launches the game.
hmm? which game gave it problems? It can not been fixed using some autohotkey script to get the game started correctly to fullscreen?
hi squirrellydw ,
I will make a layout template for you tonight if i can. or before the end of the week if i find no time.
Did you try to run the game using bat file, and make sure it on the path, before launching the exe?
In MultiFE, I thinking it should only search for LNK, BAT and AHK Files, but never launch exe files directly (I have not write that part yet, but might just expand Explorere Library to checking these files as well). MultiFE do not use exclusive fullscreen anymore, but using a fullscreen borderless window instead (but still use OpenGL).
But I do prefer BAT files, and make sure to CD the path correctly.
In MultiFE, I thinking it should only search for LNK, BAT and AHK FilesHow about adding .au3 to the list (Autoit).
Did you try to run the game using bat file, and make sure it on the path, before launching the exe?
In MultiFE, I thinking it should only search for LNK, BAT and AHK Files, but never launch exe files directly (I have not write that part yet, but might just expand Explorere Library to checking these files as well). MultiFE do not use exclusive fullscreen anymore, but using a fullscreen borderless window instead (but still use OpenGL).
But I do prefer BAT files, and make sure to CD the path correctly.
Path was fine and i see the app try to launch. Sometimes it does launch and other times it doesn't i have an idea after thinking about it some more today so maybe i will be able to fix it maybe not. The reason i am calling the EXE directly rather than using a bat file is i need to know when that application has ended so i can make sure the FE appears correctly on the screen. Some apps you call change the resolution which will mean your boarderless window will need to set the resolution back or it will not be fullscreen. It is issues like these that you only find out once you start work on a FE. It's a totally different set of challanges compared to coding a jukebox.
Ah.... I couldn't get the games to launch from atomic either. Although config wasn't quite as straight forward as i thought i think i had it down and it would not launch the app, i had the same problems as i had launching it from my front end. Squirrel, this may have to be thought out again.
ProcessRunning:TProcess=TProcess.Create(command$, 0)
While TLibrary.ProcessRunning.Status()=1
Local LineN$ = TLibrary.ProcessRunning.pipe.ReadLine().Trim()
Local lineerro$ = TLibrary.ProcessRunning.err.ReadLine().Trim()
; some other code for the jukebox section used (checking queue etc), like
delay 10
EndWhile
; The application have been ended, when status() is 0.