Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a navbar widget and i want to draw it over my slideview, well the problem is that it seems i keep getting errors for trying insert my slideview into the general group.

function scene:createScene( event )
local bg = display.newRect( 0, 0, display.contentWidth, display.contentHeight )
bg:setFillColor( 255 )  -- white

local group = self.view

  local imageObj = {}
  local start= 210
  for i=1, #XML.image[page] do
     imageObj[i] = XML.image[page][i]
     print("done")
     end



     slideView.new(imageObj,nill,0,60)  

      local function menu(event)
    if event.phase == 'ended' then
    director:changeScene('view1',"moveFromLeft")
    end
    return true
  end




-- all objects must be added to group (e.g. self.view)
group:insert( bg )
group:insert( slideView )

any idea on how todo it?

here is the error i get

   viewphoto.lua:57: bad argument #-2 to 'insert' (Proxy expected, got nil)
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.