It was the first video of the tick tac toe game. Just pulled it up again here is the log.
07:33:12.953
07:33:12.953 Corona Simulator 2018.3326 (Jun 25 2018 12:39:46)
07:33:12.953
07:33:19.964
07:33:19.964 Copyright © 2009-2018 C o r o n a L a b s I n c .
07:33:19.964 Version: 3.0.0
07:33:19.964 Build: 2018.3326
07:33:19.964 Platform: iPhone / x64 / 6.1 / Quadro FX 1700/PCIe/SSE2 / 3.3.0 / 2018.3326 / en_US | US | en_US | en
07:33:19.964 Loading project from: C:\Users\BoiseTV\Documents\Corona Projects\tic tac toe
07:33:19.964 Project sandbox folder: C:\Users\BoiseTV\AppData\Local\Corona Labs\Corona Simulator\Sandbox\tic tac toe-46C25ED27892F80D745EBD09C07086B4\Documents
07:33:19.980 ERROR: Syntax error
07:33:19.980 C:\Users\BoiseTV\Documents\Corona Projects\tic tac toe\main.lua:14: unexpected symbol near ‘+’
Here is the code:
–
– main.lua
–
– Your code here I copied it exact from the tutorial. Tried it with the correct spelling of Horizontal but still the same error.
local title= display.newText(“Tick-Tac-Toe”, display.contentCenterX, 25, native.systemFontBold, 20)
local leftVerticalLine = display.newRect( display.contentCenterX -50, display.contentCenterY, 5, 300)
local rightVerticalLine = display.newRect( display.contentCenterX +50, display.contentCenterY, 5, 300)
local topHorzontalLine = display.newRect( display.contentCenterX, display.contentCenterY, - 50, 300,5)
local bottomHorizontalLine = display.newRect( display.contentCenterX, display.contentCenterY, + 50, 300,5)