Search the Community
Showing results for tags 'api'.
-
Hi, I'm currently experiencing an issue with launchbox emumovies Integration... I'm able to log into emumovies via website but not through launchbox. It was working earlier today but now it isn't. I even tried changing my password via emumovies and still no go. I don't think it's just me.
-
I am trying to create a DOFLinx plugin for BigBox. I aim to show LEDs animation, change marquee (game and platform) on DMDs, based on events from BigBox. To do that, I need to react to platform change, game selection change, and also Up/Down/Right/Left/Enter events (to display animations for those). I see 2 possibilities : - Use IBigBoxThemeElementPlugin interface - Use ISystemEventsPlugin interface ISystemEventsPlugin interface works : when I launch launchbox or bigbox, with the plugin in Launchbox/plugins folder, I can attach the debugger and add breakpoints in my methods and see what is happening. I can use OnEventRaised, then fetch current platform (GetSelectedPlatform()) and game (GetAllSelectedGames()). But I'm halfway where I want to be : I cannot react to up/down and other events. Unfortunately, I cannot seem to be able to implement IBigBoxThemeElementPlugin interface. I mean, when I attach the debugger and add breakpoints to OnSelectionChanged or OnUp/OnDown, I never reach the code. What am I doing wrong? Do I have to modify the theme also? Thanks! // Reference documentation : https://pluginapi.launchbox-app.com/html/4cf923f7-940c-5735-83de-04107a6ae0e6.htm namespace DOFConnect { using Unbroken.LaunchBox.Plugins; using Unbroken.LaunchBox.Plugins.Data; public abstract class BigBoxThemeElement : IBigBoxThemeElementPlugin { public void OnSelectionChanged(FilterType filterType, string filterValue, IPlatform platform, IPlatformCategory category, IPlaylist playlist, IGame game) { // This is never reached string gameName = game.Title; string platformName = platform.Name; string gamePlatform = game.Platform; } public bool OnDown(bool held) { // This is never reached bool isHeld = held; return isHeld; } public abstract bool OnEnter(); public abstract bool OnEscape(); public abstract bool OnLeft(bool held); public abstract bool OnPageDown(); public abstract bool OnPageUp(); public abstract bool OnRight(bool held); public abstract bool OnUp(bool held); } }
-
Hi, a couple of days ago i tried optimizing my snes rom-library and noticed that retroachievements where not displayed on the details pages of the games (despite the badge for achievements clearly showing). After checking if i could retrieve my profile achievement page (in the main menu on launchbox not bbx) it tried to fetch but ended in "Failed to grab achievement information". Just as background information: I run on a windows 10 machine, on launchbox 13.5 but i also tried the current beta branch with no success. This is what i tried: - Reinstall launchbox - Install current beta - Reset the Retroachievements Data (as well as re-setting my api key there and saving the new one here) -> btw. clicking the test button results in a conformation for the connection - Checked RA for possible updates on the api or for possible server down - changed themes multiple times - Checked for bigbox reaction Sadly all of them without success. Last time i know it worked was on 13.4 (i think). I updated a couple of days ago to 13.5 not recognizing, that this broke in the process. I am at a debugging point where i either believe that the code is broken or i have to set some things on my windows machine, that are nowhere mentioned (for example opening the system on specific ports or something like this). Can someone give advice on how to fix this? Best regards, Kidd
- 11 replies
-
- retroachivements
- api
-
(and 1 more)
Tagged with:
-
So I am trying to connect Steam To LaunchBox. I do have the correct Profile name, just the name without the / also I have made everything Public. I still get "Your Account Could Not Be Accessed" The only thing I can assume is my Steam API Key is not correct/valid. I have no Domain name to enter, so after a Google search I found on the Steam Community Forum that you can use 127.0.0.1 so I used this to generate my Steam API Key? also if this has been discussed, my bad. I did search these Forums before posting this.
-
I've been trying to import my steam games in launchbox but I keep on getting this error message: " Your account could not be accessed " . I've done it many times on other pcs and never got this problem... I've tried it 10 minutes ago on my laptop and it worked fine i imported all my games. The problem occurs only on one of my pcs. I need help please.
-
Hi everyone! Just as a brief context: I'm currently in a let's-learn-new-things type of project and the main goal is to build an Arcade + an App. Using the app, the player will choose a game and will get a QR-Code. The arcade will read this code and launch the game. Is there anyway to create some kind of integration with LaunchBox so that i can start a game systematically? thanks in advance! Best regards, Breno.