Dll orPlugings for FontDialog

Plugins y todo lo relacionado para Autoplay Media Studio.
Whoever has information about the .dll file or extension produces a Dialog box for changing the font and its color

--------------------
Quien tenga información sobre el archivo .dll o la extensión produce un cuadro de diálogo para cambiar la fuente y su color

---------------
Imagen
Prof. Bhab you can use


SysDialog Action Plugin
credit: RizlaUK



local tFlags={}

tFlags.Bold=true
tFlags.Italic=true
tFlags.NoExtended=false
tFlags.StrikeOut=true
tFlags.Underline=true
tFlags.Color=255

local tFont = SysDialog.Font("Arial", 12, tFlags);
if tFont then

    Text="Font="..tFont.Font.."\r\n"
    Text=Text.."Size="..tFont.Size.."\r\n"
    Text=Text.."Bold="..tostring(tFont.Bold).."\r\n"
    Text=Text.."Italic="..tostring(tFont.Italic).."\r\n"
    Text=Text.."StrikeOut="..tostring(tFont.StrikeOut).."\r\n"
    Text=Text.."Underline="..tostring(tFont.Underline).."\r\n"
    Text=Text.."Color="..tFont.Color.."\r\n"
    
    Dialog.Message("Test",Text)
end
thank you
شكرا جزيلا