Jump to content
LaunchBox Community Forums

JAKAMY

Members
  • Posts

    29
  • Joined

  • Last visited

Everything posted by JAKAMY

  1. Till it is added as a feature to set Default Clear logos to Autogenerated or repeating playlists, I use this PowerShell script to update them. You can use it to make your own auto update ones when you add a new playlist in the future and avoid the redundant copy paste This script find all folders in images/playlists containing a word like Canada and overwrite in the subfolder the source image: just open powershell ISE in windows and paste your adapted code since running .ps1 files is disabled by default: (you can use notepad++ to replace all source folder paths) ex: $sourceFile = "C:\LaunchBox\Images\Playlists\Canada.png" # Specify the path to your source file Get-ChildItem -Recurse -Directory -Filter "*Canada" | ForEach-Object { $clearLogoPath = Join-Path -Path $_.FullName -ChildPath "Clear Logo" if (Test-Path -Path $clearLogoPath) { Copy-Item -Path $sourceFile -Destination $clearLogoPath -Force } } Write-Output "Done." For all the regions clear logo in platform categories ex: $sourceFile = "C:\LaunchBox\Images\Platform Categories\Regions.png" # Specify the path to your source file Get-ChildItem -Recurse -Directory -Filter "*Regions" | ForEach-Object { $clearLogoPath = Join-Path -Path $_.FullName -ChildPath "Clear Logo" if (Test-Path -Path $clearLogoPath) { Copy-Item -Path $sourceFile -Destination $clearLogoPath -Force } } Write-Output "Done." Files attached as txt for copy paste and .ps1 for those who enabled running scripts Countries.ps1Countries.txtregions.ps1regions.txt Cheers NB: Autogenerated playlists don't create corresponding images folders till you select each generated country in Launchbox I use the great regions logos from RetroHumanoid and Yorrick36
  2. I converted all exodos magazines to flipbook thanks to your post. KUDOS!!! 🤗 I put the .exe in the same folder as their pdf and edited the xml to replace all .pdf to .exe my take on How to exit the generated Fullscreen flipbook since the generated .exe in Fullscreen using ctrl w: My template Launchbox.flbxmt In batch I choose the in folder and out, fhd, auto page cut, jpg, exe, full screen, no hyperlink, searchable, new engine, import toc 1st create a bogus emu entry running a batch file. (for esc key watch to run alt f4) (Normally it takes 2 seconds to start the flipbook but I am running 4 VM instance of the flipbook app converting batch folders as it doesn't used much of the cpu each) cleaned1729122593_launchbox-flipbook---made-with-clipchamp.mp4 runFlipbook.bat with hide and other command line and assign the associated platforms names: Bogus.bat content: @echo off echo starting flipbook program. start /B /wait %1 %2 echo flipbook programs is executed successfully cmd /k Add running script to watch for esc press: content (script Fixed! screenshot version kept autohk watching for esc key after flip was closed): #IfWinActive Esc:: Send, ^w ExitApp return now in big box all manuals/magazine are beautiful 😉 Cheers
×
×
  • Create New...