Widget.newTabBar

Good day developers 

Mi pregunta es la siguien  te como puedo poner un fondo a un “Widget.newTabBar” 

try with the characteristic “backgroundFile” but didn’t work.

– create the actual tabBar widget

                tabBar = widget.newTabBar{

                    top = display.contentHeight - 100,   – 50 is default height for tabBar widget

                    backgroundFile = “tabBarBack.png”, — It did not work

                    buttons = tabButtons

                }

                tabBar:setSelected( false  )

Talent wins games, but teamwork and intelligence WINS Championships.-Michael Jordan

Look in your console log. Are there any errors or warnings?

I share you the error.

  ERROR: Runtime error

  ERROR: widget.newTabBar: tabSelectedLeftFile expected, got nil

  stack traceback:

 [C]: ?

  [C]: in function ‘error’

If you want to specify a background, you also have to specify the left, center, and right of the foreground of the button as well.

local tabBarBackgroundFile = "images/tabBarBg7.png" local tabBarLeft = "images/tabBar\_tabSelectedLeft7.png" local tabBarMiddle = "images/tabBar\_tabSelectedMiddle7.png" local tabBarRight = "images/tabBar\_tabSelectedRight7.png" local tabBar = widget.newTabBar{     top =  display.contentHeight - 50,     left = 0,     width = display.contentWidth,     backgroundFile = tabBarBackgroundFile,     tabSelectedLeftFile = tabBarLeft,      -- New     tabSelectedRightFile = tabBarRight,    -- New     tabSelectedMiddleFile = tabBarMiddle,      -- New     tabSelectedFrameWidth = 20,                                         -- New     tabSelectedFrameHeight = 50,                                        -- New         buttons = tabButtons,     height = 50, }

Rob

Look in your console log. Are there any errors or warnings?

I share you the error.

  ERROR: Runtime error

  ERROR: widget.newTabBar: tabSelectedLeftFile expected, got nil

  stack traceback:

 [C]: ?

  [C]: in function ‘error’

If you want to specify a background, you also have to specify the left, center, and right of the foreground of the button as well.

local tabBarBackgroundFile = "images/tabBarBg7.png" local tabBarLeft = "images/tabBar\_tabSelectedLeft7.png" local tabBarMiddle = "images/tabBar\_tabSelectedMiddle7.png" local tabBarRight = "images/tabBar\_tabSelectedRight7.png" local tabBar = widget.newTabBar{     top =  display.contentHeight - 50,     left = 0,     width = display.contentWidth,     backgroundFile = tabBarBackgroundFile,     tabSelectedLeftFile = tabBarLeft,      -- New     tabSelectedRightFile = tabBarRight,    -- New     tabSelectedMiddleFile = tabBarMiddle,      -- New     tabSelectedFrameWidth = 20,                                         -- New     tabSelectedFrameHeight = 50,                                        -- New         buttons = tabButtons,     height = 50, }

Rob