So this is some example code…
[lua]local widget = require “widget”
local scrollView = widget.newScrollView{
width = 256,
height = 320,
hideBackground = true,
scrollWidth = 768,
scrollHeight = 1024,
maskFile=“mask.png”,
listener = scrollViewListener
}
local myObject = display.newImage(“desperate-dan.jpg” )
scrollView:insert( myObject )
–ITS THE BELOW BIT THAT CAUSES THE ERROR
local instructionsGroup = display.newGroup()
instructionsGroup:insert( scrollView )[/lua]
When I run this script I get the below error. any ideas how to correct it?
[lua]‘insert’ [/lua]
[import]uid: 102413 topic_id: 26688 reply_id: 326688[/import]