Hi Rob,
Thanks for the succinct pointers to possible causes… and the Console access guide. I will give these a trial over the weekend.
It looks like I need to take more careful time to step through these
First.
Fonts. I would liked to have sent you the build.settings file, but, when I looked I did not have one! A LOng story, but in brief Jay’s Outlaw code editor ‘Publish button’, recently deleted all my source folders (it clears out folders and everything below-where my source was) so i have been rebuilding projects from an older backup and somehow the build.settings got left behind…
I have now put a build setting file in the project which at is very simple (see below ), but still no text is showing on the TableView rows! I am therefore not clear on what actually has to be done to ensure the fonts file is included in the App Build for the device (e.g. what file types, ttf ? Some of the font files have no type e.g. ‘Gloucester MT Extra Condensed’ the one I use) . I could use a default font but the size and layout would alter my design now.
Second
CASE Sensitivity A good piece of information, which I have been checking but as yet i have not found the cause of the scene failing. I am suspecting a network link (case?) or some problem related to downloading combined with your pointer, so I will spend time using your suggested Console use. I have already checked scene names and the one file accessed.
a Third additional query has now popped in…
An Interesting point (to me) re- build.settings & Config files.
When I did not have any Config or build settings, I had the app running in the corona simulator extremely well and my 'spread sheet’s scenes re-formatted perfectly on all apple hardware iphone thru ipads. I was really pleased.
When I now use the ‘build and config’ file settings I see double scaling across device types (too large fonts and images), so i have disabled my scaling code. Now the iPad and Iphone 5 ‘spreadsheets’ don’t quite fit the portrait width, with gaps each side. Is this because I now have a config file overriding/causing Corona to adjust scenes displays as it feels appropriate . Can I leave off the Config settings and use my own scaling? Do you foresee problems with this? Is it the height width or scale “letterbox” controlling this?
Thanks agian
Alec
BUILD
settings =
{
orientation =
{
default =“portrait”,
content = “portrait”,
supported =
{
“portrait”
},
},
iphone =
{
plist =
{
UIAppFonts = {“Gloucester MT Extra Condensed”}
},
},
}
CONFIG…
application =
{
content =
{
width = 320,
height = 480,
scale = “letterbox”,
fps = 30,
antialias = false,
xAlign = “center”,
yAlign = “center”
}
}