Hello…
I have a strange error for more than a month… The error says this : Runtime error ?:0: compare number with nil.
I dont know what the hell is that… I am very disapointed because i have the same error from 2013.1008 version and then… I had submit a bug report . After the 1053 build corona said that this is fixed… But when i tested the new version, i had the same problem… Nothing gone well… This error i think is generated when i insert a widget button inside of a scroview element. I am using the windows version of corona.
I have attached the error below.
Help would be apreciated!
HERE is some sample code…
function scene:createScene( event ) local group = self.view bg = display.newImageRect("coffeeBg.png",320,480) bg.x = display.contentWidth/2 bg.y = display.contentHeight/2 group:insert(bg); local scrollView = widget.newScrollView{ top = 5, width = 320, height = 430, scrollWidth = 320, scrollHeight = 430, hideBackground=true, verticalScrollDisabled = true, horizontalScrollDisabled= false, maskFile="mask1.png" } local function handleButton\_hotel( event ) local phase = event.phase local target = event.target if ( "began" == phase ) then print( target.id .. " pressed" ) target:setLabel( "Pressed" ) --set a new label elseif ( "ended" == phase ) then print( target.id .. " released" ) target:setLabel( target.baseLabel ) --reset the label storyboard.gotoScene("scenetemplate1"); end return true end local hotel = widget.newButton { left = 10, top = 195, width = 136, height = 208, defaultFile = "hotel.jpg", overFile = "hotel\_.jpg", id = "button\_1", onEvent = handleButton\_hotel } scrollView:insert(hotel); group:insert(scrollView); end