One of the only themes on here I could find horizontal wheel scrolling. Thanks for the coding. Hope you didn't mind I changed the layout. Brilliant for consoles..
Added more ToDos to the first post. Add the ESRB Rating LogoFix Emulator logo display code (will wait till I have multiple emulators)Add Placeholder Flyer image when a game does not have a flyerChange the the text "GAME:" to be the name of the active filterAdd a customized menu overlay to match my cabAdd a layout option regarding displaying favorite stars "none", "solid", "outlined"The custom menu overlay will be my next step.. I hate the way the current menus rip you out of the experience.Also I was asked how I implemented the moving rows for the game text. Here a an example that will work with any text object. I took the idea from the history.dat plugin.First you need to setup a text object with text. It does not matter how much text is in the objectCode: [Select]local history =fe.add_text("", 442,188,810,290)history.charsize = 18;history.align = Align.Left;history.word_wrap = true;history.msg = "XXXXXXXXXXX PUT YOUR TEXT HERE XXXXXXXXXX";Next I created a tick callback to scroll the text up or down in the text boxCode: [Select]function historynav( tick_time ){ if (fe.get_input_state("XXXXXXXXXX PUT YOUR UP KEY HERE XXXXXXXXXXXXXX")==true) { history.first_line_hint--; } if (fe.get_input_state("XXXXXXXXXX PUT YOUR DOWN KEY HERE XXXXXXXXXXXXXX")==true) { history.first_line_hint++; }}fe.add_ticks_callback("historynav");
local history =fe.add_text("", 442,188,810,290)history.charsize = 18;history.align = Align.Left;history.word_wrap = true;history.msg = "XXXXXXXXXXX PUT YOUR TEXT HERE XXXXXXXXXX";
function historynav( tick_time ){ if (fe.get_input_state("XXXXXXXXXX PUT YOUR UP KEY HERE XXXXXXXXXXXXXX")==true) { history.first_line_hint--; } if (fe.get_input_state("XXXXXXXXXX PUT YOUR DOWN KEY HERE XXXXXXXXXXXXXX")==true) { history.first_line_hint++; }}fe.add_ticks_callback("historynav");
Working great for me!
Quote from: ArcadeBliss on March 24, 2016, 04:17:29 AMFixed the link to the YouTube video this is very confusing and I dont know where to go to download the theme on your gitHub
Fixed the link to the YouTube video
Quote from: OldGamer on February 02, 2023, 09:15:45 AMQuote from: ArcadeBliss on March 24, 2016, 04:17:29 AMFixed the link to the YouTube video this is very confusing and I dont know where to go to download the theme on your gitHubYou can download it here:https://github.com/ArcadeBliss/AttractMode-ThemesClick on the green "Code" button and then click "Download Zip"