Update 3: Moved bug # to top and re-ordered post content. 39827
Update 2: Â Â I was right. Â This does not happen in build 2583 and 2585 is the first build that uses the new installer.
Update: I think this is happening with all versions of the engine that use the new Windows installer.  If you regularly install updates, you will have noticed the change some time this month.  I still haven’t found the version where this first started happening, but my guess is that will be the first version with the new installer.
_ Irony Note : It is ironic that I should encounter this issue when under the gun to get work done on a project AND that this post should be my 911th post. 911 it is._
Hi folks.  I’m preparing to file a bug against the recent releases of the Corona SDK Windows simulator, so if you’re seeing the above (post title) Runtime Error, here is the cause:
It seems that the string library (and maybe others) is no longer available when parsing config.lua in the Windows Simulator for releases:
- 2015.2590
- 2015.2589
- 2015.2586
- 2015.2585 <-- First occurs here
- 2015.2583 – SAFE
For those who don’t do know what I mean… Here is a sample config file that currently fails:
local iPad = ( string.find( system.getInfo("architectureInfo"), "iPad" ) ~= nil ) local iPhone4 = ( string.find( system.getInfo("architectureInfo"), "iPhone4" ) ~= nil ) local iPhone5 = ( string.find( system.getInfo("architectureInfo"), "iPhone5" ) ~= nil ) local iPhone5s = ( string.find( system.getInfo("architectureInfo"), "iPhone6" ) ~= nil ) local iPhone6 = ( string.find( system.getInfo("architectureInfo"), "iPhone7,2" ) ~= nil ) local iPhone6Plus = ( string.find( system.getInfo("architectureInfo"), "iPhone7,1" ) ~= nil ) local androidTablet = ( (system.getInfo( "androidDisplayWidthInInches" ) or 0) \> 5 or (system.getInfo( "androidDisplayHeightInInches" ) or 0) \> 5 ) local isTablet = androidTablet or iPad -- or true if( isTablet ) then application = { content = { width = 384, height = 512, scale = "letterbox", fps = 30, }, } else -- Assume it is a phone application = { content = { width = 320, height = 480, scale = "letterbox", fps = 30, }, } end