Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Vaz

Pages: [1]
1
Scripting / Disable plugin in certain layout.
« on: September 04, 2023, 12:35:35 PM »
Hi!
I don't know what time this message will be read, but I still wish you all a good day, good afternoon or good night!

If anyone can help me, I would like to disable the UtilityMenu plugin in a layout I developed called ATARI.

In this layout I used a script that disables the button to display the Filters listing. Below ...

Code: [Select]

function on_signal( sig )
{
switch ( sig )
{
case "filters_menu":
fe.signal( "" );
return true;

}
return false;
}
fe.add_signal_handler(this, "on_signal");



Is there something that does the same to disable the UtilityMenu plugin in this layout I created?

Thanks for everyone's goodwill.

2
General / Uppercase Letter (Developer of attract-mode)
« on: July 04, 2023, 07:48:19 AM »
When I'm developing a theme, I come across a problem, which some already know, which is displaying "only uppercase letters". Those who develop themes know what I'm talking about. You have to use subterfuges, especially when the font has lowercase and uppercase and you want it to display only uppercase.

In my case, when the font has lowercase and uppercase and I want the attract-mode to display only uppercase, I have to make a change inside the font, through editors and delete "all lowercase". So that way I get the display of all texts in uppercase.

Another way would be to choose a font that doesn't have lower case inside it.

I found a solution suggested by keilmillerjr in this link
http://forum.attractmode.org/index.php?topic=1911.0

But it is a partial solution.
For example: If you want the word "Capcom" to be displayed in uppercase letters in Manufacurer, it will be displayed as it is written inside your romlist.

To the developer of attract-mode.
In the text properties we have the option "style" with:

Style.Regular (default)
Style.Bold
Style.Italic
Style.Underlined
Style.Uppercase <------------ SUGGESTION

Isn't there a possibility to create a Style.Uppercase function to display only "uppercase letters"?

Sorry about my English

3
General / Filter "2.5D" [solved]
« on: July 30, 2020, 05:01:38 PM »
Hi!

I would like to create a filter to list games in the "2.5D" genre. But all my attempts were useless and I didn't find it on the forum either, can anybody help me?

Pages: [1]