Kodi Community Forum
[CLOSED] Advanced Launcher - Applications Launcher Addon for XBMC - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Game Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=291)
+---- Thread: [CLOSED] Advanced Launcher - Applications Launcher Addon for XBMC (/showthread.php?tid=85724)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453


- Angelscry - 2011-02-19

KiSUAN Wrote:Spanish Translation Update r382 srtings.xml
Thank you for the translation. It will be added on next version. Cool


Version 1.2.4 - Angelscry - 2011-02-19

I was finally able to found a way to cleanly close XBMC process from external scripts or application under Windows systems by slightly modifying the subprocess python library. The only small problem actually is when you want to restart XBMC it does it minimized. So you will have to slightly modify your scripts to force it to restart maximized like this using the start command line :
Code:
[b]pskill -t XBMC.exe[/b]
cd "C:\Windows\ehome"
ehshell.exe
cd "C:\Program Files (x86)\XBMC\"
[b]start /max XBMC.exe[/b]
We finally have now a full functionnal command line support for windows systems.
Windows users feedbacks on this new version are welcome. Wink
Changelog
  • Allows XBMC closing from external started applications (Windows).
  • Update polish translation (thanks to Robert de Clair).
  • Update spanish translation (thanks to KiSUAN).
  • Update french translation.



- john.doe - 2011-02-20

Hello Angelscry, thank you added a second latency between the break
and the resumption of a media, this helped me understand why the Pause/Resume does not work for me.

I had not grasped the importance of adding the commands "pssuspend XBMC.exe" and "pssuspend -r XBMC.exe".Rolleyes
After this addition the Pause / Resume work perfectly.

If you do not mind, could you for a future version of Advanced Launcher remove 1 sec of temporisation when pause/resume playing Media.Huh

I love this program !


- gszx1337 - 2011-02-20

fr500 Wrote:You need to highlight your emulator, press C and select add roms

Thank you. I'm a bit embarrassed that the solution was that simple. Blush


- barbapappa_86 - 2011-02-20

How do i select a launcher if i use a mac. It seems to treat .app like a folder.


- Angelscry - 2011-02-20

barbapappa_86 Wrote:How do i select a launcher if i use a mac. It seems to treat .app like a folder.
Ok... first I do not have mac, but this is what I have found using Google search:

.APP files ARE NOT real exectuable files, but kind of GUI applications packages. So that's why when you select it under XBMC it open the .APP package file and show it as a directory. Also there is no way to directly start .APP files using command line. So you will be not able to directly start an .APP file by selecting it using Advanced Launcher.

But the thing you have to do is to select, using XBMC, the binary file inside the .APP package file which start your application. And normally it will works.


- barbapappa_86 - 2011-02-20

Angelscry Wrote:Ok... first I do not have mac, but this is what I have found using Google search:

.APP files ARE NOT real exectuable files, but kind of GUI applications packages. So that's why when you select it under XBMC it open the .APP package file and show it as a directory. Also there is no way to directly start .APP files using command line. So you will be not able to directly start an .APP file by selecting it using Advanced Launcher.

But the thing you have to do is to select, using XBMC, the binary file inside the .APP package file which start your application. And normally it will works.

Thanks fot the reply. Then i'll just need to know what binary file to choose Rolleyes


- butchabay - 2011-02-21

@Angelscry
Yo mate, i've updated to the latest version, but i still have the old fanart image, is it cached somewhere ? If i go to the plugin folder itself, there is the new one, but for some reasons it shows always the older one ...

Addon Info in cirrus extended is already done ... so ready for next update! Smile


- Angelscry - 2011-02-21

butchabay Wrote:@Angelscry
Yo mate, i've updated to the latest version, but i still have the old fanart image, is it cached somewhere ? If i go to the plugin folder itself, there is the new one, but for some reasons it shows always the older one ...
Image caching is managed by XBMC... and I do not know clearly how it works outside add-ons (frequency of cache update). You just have to wait 1 day, and the fanart image will be updated.

butchabay Wrote:Addon Info in cirrus extended is already done ... so ready for next update! Smile
Thank you very much. I have recently switch from Alaska.Revisited to Cirrus Extended. So you will receive some feedback from me. Thank you for your great skin... Cool


- mbbransc - 2011-02-22

john.doe Wrote:Hello Mbbransc have you tried this:

Create shortcuts to your web page and put them in a single folder.

Create a new launcher
Choose File launcher (e.g. game emulator)
Select the application ..... C:\Program Files\Internet Explorer\iexplore.exe
Argument = "%rom%"
Select the directory where the shortcuts are.
Extensions= url
Choose the name of thy pitcher
Select the system platform, choose any system.
Select your Thumbnails folder.
Select your directory Fanart.
then run the scan Add Items.


I tried this without success. My ESPN3 Launcher opens an empty folder; it doesn't see the ESPN3 shortcut I created.


- Angelscry - 2011-02-22

mbbransc Wrote:I tried this without success. My ESPN3 Launcher opens an empty folder; it doesn't see the ESPN3 shortcut I created.
Instead of using url files you can also create your proper html files like this :
Code:
<html><head>
<meta http-equiv="REFRESH" content="0;url=http://espn.go.com/espn3/">
</head></html>
and use these html files instead of url files. If you still have problems, post you launchers.xml file here.


- mbbransc - 2011-02-22

I'm sure I should know, and I'm certain it's covered somewhere, but what is the default location of that .xml file? I can't seem to locate it in my XBMC program folder.


- Angelscry - 2011-02-22

mbbransc Wrote:I'm sure I should know, and I'm certain it's covered somewhere, but what is the default location of that .xml file? I can't seem to locate it in my XBMC program folder.
It depend of your system. For Windows 7 the launchers.xml file is located here : \windows\Users\your_username\AppData\Roaming\XBMC\userdata\addon_data\plugin.program.advanced.launcher


- fr500 - 2011-02-22

I use epsxe for my Playstation games, I use epsxecutor to handle custom configs per game. Then I create a desktop shortcut (lnk) for each game

So I created a batch file to open this lnk file, So i need to disable internal lnk support.

The launchers work fine but the scraped images are saved as image.lnk instead of image.jpg or image.png and ALA is not showing them.


- Angelscry - 2011-02-22

fr500 Wrote:I use epsxe for my Playstation games, I use epsxecutor to handle custom configs per game. Then I create a desktop shortcut (lnk) for each game

So I created a batch file to open this lnk file, So i need to disable internal lnk support.

The launchers work fine but the scraped images are saved as image.lnk instead of image.jpg or image.png and ALA is not showing them.
Ho... strange... I will take a look at this... Confused Could you please post here your launchers.xml file I need to recreate the error, and so, need to same path and launcher configuration. Thank you...