manups4e / ScaleformUI

ScaleformUI is a GTA menu styled API made with custom Scaleforms to be lighter, faster and visually better
Other
139 stars 49 forks source link

[PauseMenu C#] Issue with RightLabel & text visibility issue #168

Closed nicxes closed 12 months ago

nicxes commented 1 year ago

When I use the following code snippet to prompt the user for an email and then set the RightLabel to the entered email, it doesn't display the expected email string. Instead, it shows some random symbols.

emailItem.OnActivate += async (item) =>
{
    email = await Utils.Input.Keyboard("Email:", email, true, 20, null, pauseMenu);
    emailItem.RightLabel = email;
};

There's another intermittent issue concerning the text color and background color of the menu items. Occasionally, when hovering over a menu item, both the text color and background color turn white, making it impossible to read.

image

manups4e commented 1 year ago

random symbols are because of the maybe selected font 🤔 this is the GTAV_LEADERBOARD font

manups4e commented 1 year ago

closed after no further updates.

nicxes commented 1 year ago

random symbols are because of the maybe selected font 🤔 this is the GTAV_LEADERBOARD font

I didn't pick any font on purpose. I'm just using the defaults. And I can't find where to set the font for the RightLabel.

Oh, and sorry for the late reply. Been super busy with work lately.

manups4e commented 1 year ago

super weird 🤔 are you using latest assets and latest script?