• 1
  • 236
  • 237
  • 238(current)
  • 239
  • 240
  • 453
[CLOSED] Advanced Launcher - Applications Launcher Addon for XBMC
(2012-06-16, 04:50)Angelscry Wrote: Version 1.8.9 : This new version of Advanced Launcher fix errors occurring during scraping due to Internet connection or files access problems (timed out errors). Thank to [email protected] for report and patches.

Changelog :

Where can I get the new version? The version I see in program add-ons is 1.7.6
(2012-06-19, 05:39)JoeBlow42069 Wrote:
(2012-06-16, 04:50)Angelscry Wrote: Version 1.8.9 : This new version of Advanced Launcher fix errors occurring during scraping due to Internet connection or files access problems (timed out errors). Thank to [email protected] for report and patches.

Changelog :

Where can I get the new version? The version I see in program add-ons is 1.7.6
You need to install my repository to have the last version. Read the first post of this thread and the user guide to learn how to proceed.

I do not have any control on what is hosted on the XBMC official repo.
Hi - first of all thanks for this great addon.

I have one quick question - is there any way to make Advance Launcher keep focus on XBMC throughought?

I want to use Advanced Launcher to launch a shortcut that runs a bat file in a hidden window. However it seems that even using hstart and running the shortcut minimised, XBMC will lose focus for a moment, go windowed, and then return to the foreground. Is there any way to prevent this behaviour?

Thanks Smile
(2012-06-22, 08:04)Daniel333 Wrote: Not yet. But it is planned for the next versions.

Was this in reply to my post? Or is it unrelated ? thanks Smile
(2012-06-22, 07:24)kiboy6 Wrote: Hi - first of all thanks for this great addon.

I have one quick question - is there any way to make Advance Launcher keep focus on XBMC throughought?

I want to use Advanced Launcher to launch a shortcut that runs a bat file in a hidden window. However it seems that even using hstart and running the shortcut minimised, XBMC will lose focus for a moment, go windowed, and then return to the foreground. Is there any way to prevent this behaviour?

Thanks Smile
I will try to take a look this week-end, but I'm not sure it will possible.

(2012-06-22, 14:31)Angelscry Wrote:
(2012-06-22, 07:24)kiboy6 Wrote: Hi - first of all thanks for this great addon.

I have one quick question - is there any way to make Advance Launcher keep focus on XBMC throughought?

I want to use Advanced Launcher to launch a shortcut that runs a bat file in a hidden window. However it seems that even using hstart and running the shortcut minimised, XBMC will lose focus for a moment, go windowed, and then return to the foreground. Is there any way to prevent this behaviour?

Thanks Smile
I will try to take a look this week-end, but I'm not sure it will possible.

Many thanks - if there's anything you could do to keep XBMC seamlessly on top and the launched program behind it that would be amazing!
If you are interested into clouding gaming, here is a small tutorial to start and play Gaikai games from Advanced Launcher using Chrome browser. This tutorial works on Windows, Linux and surely on OSX operating systems.

First create a File launcher :

Application (for windows) : C:\Users\USER\AppData\Local\Google\Chrome\Application\chrome.exe
Application (for linux) : /usr/bin/chromium

Platform : IBM PC Compatible

Arguments : -kiosk "%rom%"
Items Extension : html

Then into the same folder create small html file like these ones :

Code:
<html><head>
<meta http-equiv="REFRESH" content="0;url=http://www.gaikai.com/games/alan-wake">
</head></html>

or

Code:
<html><head>
<meta http-equiv="REFRESH" content="0;url=http://www.gaikai.com/games/darksiders">
</head></html>

pointing to the games information pages on Gaikai website.
(2012-06-22, 15:04)kiboy6 Wrote:
(2012-06-22, 14:31)Angelscry Wrote:
(2012-06-22, 07:24)kiboy6 Wrote: Hi - first of all thanks for this great addon.

I have one quick question - is there any way to make Advance Launcher keep focus on XBMC throughought?

I want to use Advanced Launcher to launch a shortcut that runs a bat file in a hidden window. However it seems that even using hstart and running the shortcut minimised, XBMC will lose focus for a moment, go windowed, and then return to the foreground. Is there any way to prevent this behaviour?

Thanks Smile
I will try to take a look this week-end, but I'm not sure it will possible.

Many thanks - if there's anything you could do to keep XBMC seamlessly on top and the launched program behind it that would be amazing!
Actually it is already possible, with Advanced Launcher, to start a .BAT file hidden and without loosing the focus on XBMC. For this you just need to created a launcher (a standalone or a files launcher) with a .BAT file as application. Once the launcher is created you have to go into "Edit Launcher", "Advanced Modifications" and set the "Toggle XBMC Fullscreen" to "Off". Also take care that the "show batch command window" is not activated into the "Debug" section of Advanced Launcher settings.

Then after, if you do not want XBMC to loose the focus, you must take care to not start application that will take it. And it's here that it becomes more complicated. Because, under Windows, once you start an application with a new windows... it take the focus. I don't think it will be possible to bypass this from Advanced Launcher or XBMC, because it is a Windows related problem.

There is a large discussion about application stealing focus under Windows 7 here : http://answers.microsoft.com/en-us/windo...9cd?page=3
(2012-06-23, 05:05)Angelscry Wrote: Actually it is already possible, with Advanced Launcher, to start a .BAT file hidden and without loosing the focus on XBMC. For this you just need to created a launcher (a standalone or a files launcher) with a .BAT file as application. Once the launcher is created you have to go into "Edit Launcher", "Advanced Modifications" and set the "Toggle XBMC Fullscreen" to "Off". Also take care that the "show batch command window" is not activated into the "Debug" section of Advanced Launcher settings.

Then after, if you do not want XBMC to loose the focus, you must take care to not start application that will take it. And it's here that it becomes more complicated. Because, under Windows, once you start an application with a new windows... it take the focus. I don't think it will be possible to bypass this from Advanced Launcher or XBMC, because it is a Windows related problem.

There is a large discussion about application stealing focus under Windows 7 here : http://answers.microsoft.com/en-us/windo...9cd?page=3

Using an Autoit script is also a good alternative for people who want to start and run applications (executable) into background. For example this script start firefox and force XBMC to keep the focus until firefox is not closed :

Code:
WinActivate("XBMC", "")
Run ("C:\Program Files (x86)\Mozilla Firefox\firefox.exe")
Do
   WinActivate("XBMC", "")
Until Not ProcessExists("firefox.exe")

This script works for both fullscreen window and true fullscreen XBMC modes and could be easily adapted to any kind of applications.

So to resume :

If you want to start command line application into background use .BAT script.
If you want to start windows executable applications into background use Autoit script.
(2012-06-23, 05:05)Angelscry Wrote: Actually it is already possible, with Advanced Launcher, to start a .BAT file hidden and without loosing the focus on XBMC. For this you just need to created a launcher (a standalone or a files launcher) with a .BAT file as application. Once the launcher is created you have to go into "Edit Launcher", "Advanced Modifications" and set the "Toggle XBMC Fullscreen" to "Off". Also take care that the "show batch command window" is not activated into the "Debug" section of Advanced Launcher settings.

Aha. That did the trick perfectly. Thanks very much for the detailed help Smile

(2012-06-07, 12:50)Angelscry Wrote: Yes, the two disc of the game must be located into the same folder to be recognized as multi-disc. The skin from my last screenshots is Cirrus Extended 2.

Okay I modifying the folders, so just to be clear, I make a the main game folder and then a folder for each image or can I just put each image in the game folder?

Syphon Filter 2 ----- Disc 1 ----- Disc 2 or Syphon Filter 2 ----- SCUS 4xxx (cd 1) and SCUS 4xxx (cd 2)
(2012-06-23, 22:48)djfourmoney Wrote:
(2012-06-07, 12:50)Angelscry Wrote: Yes, the two disc of the game must be located into the same folder to be recognized as multi-disc. The skin from my last screenshots is Cirrus Extended 2.

Okay I modifying the folders, so just to be clear, I make a the main game folder and then a folder for each image or can I just put each image in the game folder?

Syphon Filter 2 ----- Disc 1 ----- Disc 2 or Syphon Filter 2 ----- SCUS 4xxx (cd 1) and SCUS 4xxx (cd 2)
All your PSX images into the same folder.

Hey Angelscry, I need a little help.

Before I get into detail, I should tell you that my knowledge of AutoIt scripting (and programming in general) is slim to none. I only know what I've inferred from trial and error and reading scripts you've helped other users with. That said, I've managed fine up until now but I'm really not sure how to proceed with my next task.

Basically what I'm trying to do is make an AutoIt script that can suspend the XBMC process when I launch an executable from Advanced Launcher. The executable will be in the form of an AutoIt script used to launch an application. After the application is launched, I need it to suspend the Xpadder process, otherwise my control config used to navigate the XBMC menus will be used in whatever game I'm playing. When I terminate the executable, it should resume the Xpadder process and resume XBMC. Up until now, I've just been setting AutoIt to start my executables, kill XBMC, ESC to terminate the executable and relaunch XBMC, but that's not really an option anymore since I need Xpadder to navigate the menus with my controller.

If you're wondering, the reason I'm using Xpadder instead of editing the keymap XML for my controller is because, for some reason, my d-pad isn't detected when I use the hat commands, in order to get my d-pad to be recognized I have to use the axis command, which makes scrolling through menus and such too sensitive to be used.

Hope this makes sense, it's a bit difficult to explain exactly how I want it and I'm not even sure if what I'm asking is possible, but any help is appreciated.
(2012-06-26, 18:55)chris295 Wrote: Hey Angelscry, I need a little help.

Before I get into detail, I should tell you that my knowledge of AutoIt scripting (and programming in general) is slim to none. I only know what I've inferred from trial and error and reading scripts you've helped other users with. That said, I've managed fine up until now but I'm really not sure how to proceed with my next task.

Basically what I'm trying to do is make an AutoIt script that can suspend the XBMC process when I launch an executable from Advanced Launcher. The executable will be in the form of an AutoIt script used to launch an application. After the application is launched, I need it to suspend the Xpadder process, otherwise my control config used to navigate the XBMC menus will be used in whatever game I'm playing. When I terminate the executable, it should resume the Xpadder process and resume XBMC. Up until now, I've just been setting AutoIt to start my executables, kill XBMC, ESC to terminate the executable and relaunch XBMC, but that's not really an option anymore since I need Xpadder to navigate the menus with my controller.

If you're wondering, the reason I'm using Xpadder instead of editing the keymap XML for my controller is because, for some reason, my d-pad isn't detected when I use the hat commands, in order to get my d-pad to be recognized I have to use the axis command, which makes scrolling through menus and such too sensitive to be used.

Hope this makes sense, it's a bit difficult to explain exactly how I want it and I'm not even sure if what I'm asking is possible, but any help is appreciated.
I'm not sure your really need an Autoit script to do this. Using the Psuspend application (http://www.gwenael.org/forum/viewtopic.php?id=5) you maybe able do this using a simple .BAT file :

Code:
pssuspend "XBMC.exe"
pssuspend "Xpadder.exe"
cd "C:\Program Files (x86)\PATH\TO\YOUR\APPLICATION"
YOUR_APPLICATION.exe
pssuspend -r "Xpadder.exe"
pssuspend -r "XBMC.exe"
Wow that was a fast response.

I just installed the PStools package, extracted the zip, put them in C:\Windows and created a text file in notepad and saved it as a .bat with the paths modified to suit my needs, then I redirected the launcher to the .bat. When I try to launch the application using the .bat, XBMC goes small for a split second as if it's going to launch something but then it returns back to full screen and the application has not been launched. Any idea why this might be?
  • 1
  • 236
  • 237
  • 238(current)
  • 239
  • 240
  • 453

Logout Mark Read Team Forum Stats Members Help
[CLOSED] Advanced Launcher - Applications Launcher Addon for XBMC24