Thanks for the fast response Rob. Here ya go.
Font file name = pixeljoe.ttf
fonts internal name = “04b 30”
Build Settings
[lua]–
settings =
{
plugins = {
--[[remove this line to implement google game services
[“CoronaProvider.gameNetwork.google”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { android = true },
},
]] --remove this line to implement google game services
[“plugin.google.play.services”] =
{
publisherId = “com.coronalabs”
},
--[[remove this line to implement iAds
[“CoronaProvider.ads.iads”] =
{
– required
publisherId = “com.coronalabs”,
},
]] --remove this line to implement iAds
[“facebook”] =
{
– required
publisherId = “com.coronalabs”,
supportedPlatforms = { iphone = true },
},
},
orientation =
{
default = “portrait”,
supported = { “portrait” }
},
android =
{
googlePlayGamesAppId = “XXXXXXXX”, --app id number for google game services
usesPermissions =
{
“android.permission.INTERNET”,
“android.permission.ACCESS_NETWORK_STATE”,
“android.permission.READ_PHONE_STATE”
},
},
iphone =
{
plist =
{
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles =
{
“Icon.png”,
“Icon@2x.png”,
“Icon-60.png”,
“Icon-60@2x.png”,
“Icon-72.png”,
“Icon-72@2x.png”,
“Icon-76.png”,
“Icon-76@2x.png”,
“Icon-Small.png”,
“Icon-Small@2x.png”,
“Icon-Small-40.png”,
“Icon-Small-40@2x.png”,
“Icon-Small-50.png”,
“Icon-Small-50@2x.png”,
},
UIAppFonts =
{
“pixeljoe.ttf”,
},
UIApplicationExitsOnSuspend = false, – must be false for single sign-on to work
FacebookAppID = “XXXXXXXXX”, --facebook appId
CFBundleURLTypes =
{
{
CFBundleURLSchemes =
{
“fbXXXXXXXXX”, – facebook appId
}
}
}
}
}
}
[/lua]
Using the font in many places but it all looks the same as this line.
[lua]–local scoreText = display.newEmbossedText(group, 0, 0, 0, “04b 30”, 30); [/lua]
Ive also tried this not sure if it makes a difference. Didn’t in the simulator or build for me.
[lua]–local scoreText = display.newEmbossedText(group, “04b 30”, 0, 0, “04b 30”, 30); [/lua]
Running the basic version of Corona sdk v2014.2393
Also should be noted that xcode has given me the same error but with both names of the font. For instance today it gave me this
Oct 26 11:56:46 Nates-iPhone LastTryAgain[3740] <Warning>: WARNING: The font (pixeljoe) could not be found. Using system font instead.
Where as yesterday it was saying the font 04b 30 could not be found.
Thanks