Hey guys,
I have a problem regarding the use of the function widget.newTabBar, when i put in my options for the customization part of the tab bar. i get this error.

-- Menu bar functioner og navn i array local tabButtons = { { label = "Forside", onPress = function() composer.gotoScene("forside"); end, selected = true, size = 13, width = 20, height = 20, defaultFile = t\_tBarImages['home'][1], overFile = t\_tBarImages['home'][2], labelColor = {default = t\_tBarColors.default, over = t\_tBarColors.over} }, { label = "Klubber", onPress = function() composer.gotoScene("steder"); end, size = 13, width = 20, height = 20, defaultFile = t\_tBarImages['klub'][1], overFile = t\_tBarImages['klub'][2], labelColor = {default = t\_tBarColors.default, over = t\_tBarColors.over} }, { label = "Tæt På", onPress = function() composer.gotoScene("close"); end, size = 13, width = 20, height = 20, defaultFile = t\_tBarImages['closeby'][1], overFile = t\_tBarImages['closeby'][2], labelColor = {default = t\_tBarColors.default, over = t\_tBarColors.over} }, { label = "Automater", onPress = function() composer.gotoScene("money"); end, size = 13, width = 20, height = 20, defaultFile = t\_tBarImages.automat[1], overFile = t\_tBarImages.automat[2], labelColor = {default = t\_tBarColors.default, over = t\_tBarColors.over} } } -- Lav tabbar i bunden af skærmen local tabBar = widget.newTabBar { top = display.contentHeight, width = display.contentWidth, backgroundFile = "img/tab\_bg.png", tabSelectedLeftFile = t\_tBarImages.tab\_fill, tabSelectedMiddleFile = t\_tBarImages.tab\_fill, tabSelectedRightFile = t\_tBarImages.tab\_fill, backgroundFrameWidth = 120, backgroundFrameHeight = 60, buttons = tabButtons } tabBar.x = halfW tabBar.y = display.contentHeight - (tabBar.height/2) + oy
Sorry if not the right code blocks