im having this error when i change icon of the button
module(...,package.seeall ) function new( ) local localGroup = display.newGroup( ) -- Require the widget library local widget = require( "widget" ) local background = display.newImageRect("bkg.jpg",480, 800) localGroup :insert( background ) background.x = display.contentCenterX background.y = display.contentCenterY local button1 = widget.newButton { defaultFile = "button\_herittage.png", onPress = buttonPress, } button1.x, button1.y = 248, 180 localGroup :insert( button1) local function buttonPress( event ) if event.phase == "ended" then director:changeScene("tiga","moveFromRight",400) end end button1:addEventListener( "touch", buttonPress ) local button2 = widget.newButton { defaultFile = "button\_food.png", onPress = buttonPress, } button2.x, button2.y = 257, 400 localGroup :insert( button2 ) local function buttonPress( event ) if event.phase == "ended" then director:changeScene("empat","moveFromRight",400) end end button2:addEventListener( "touch", buttonPress ) local button3 = widget.newButton { defaultFile = "button\_accomodation.png", onPress = buttonPress, } button3.x, button3.y = 266, 650 localGroup :insert( button3) local function buttonPress( event ) if event.phase == "ended" then director:changeScene("lima","moveFromRight",400) end end button3:addEventListener( "touch", buttonPress ) local button4 = widget.newButton { defaultFile = "button\_transport.png", onPress = buttonPress, } button4.x, button4.y = 275, 900 localGroup :insert( button4) local function buttonPress( event ) if event.phase == "ended" then director:changeScene("enam","moveFromRight",400) end end button4:addEventListener( "touch", buttonPress ) local button5 = widget.newButton { defaultFile = "button\_maps.png", onPress = buttonPress, } button5.x, button5.y = 275, 900 localGroup :insert( button4) local function buttonPress( event ) if event.phase == "ended" then director:changeScene("tujuh","moveFromRight",400) end end button5:addEventListener( "touch", buttonPress ) return localGroup -- body end