Custom Fonts for native.showalert

Hi all,

I’m developing an app that need some custom fonts for languages like Twi.

I can use for native.text and other objects like text

https://docs.coronalabs.com/guide/system/customFont/index.html

But, I can’t use custom font for native.showalert. Any one knows if it is possible to use custom fonts for native show alert?

Accorging to the documentation,

– Standard text object

local displayText = display.newText( “Hello World”, 150, 80, “CoolCustomFont.ttf”, 24 )

– Font for native text input field
local inputText = native.newFont( “CoolCustomFont.ttf”, 16 )
local textField = native.newTextField( 150, 150, 180, 30 )
textField.font = inputText

But, for native.showalert, appear to not be the ability to configure the font. I have tested and an error message.

Any one know and can give me a hand?

Thanks again,

There is no method for Corona to modify the text inside of a native alert.

Ummm… Thanks so very much.

I will use another way to show alerts.

Thanks a lot for your quick answer.

There is no method for Corona to modify the text inside of a native alert.

Ummm… Thanks so very much.

I will use another way to show alerts.

Thanks a lot for your quick answer.