I’m trying to make a text box, but no matter what I change their is always a background blur and blue glowing box around the text, is there a way to get rid of these?
local function fieldHandler( textField ) return function( event ) if ( "began" == event.phase ) then elseif ( "ended" == event.phase ) then elseif ( "editing" == event.phase ) then elseif ( "submitted" == event.phase ) then native.setKeyboardFocus( nil ) end end end SearchTxt = native.newTextField( display.contentCenterX + 190, 313, 140, 35 ) SearchTxt.align = "center" SearchTxt.hasBackground = false SearchTxt:setTextColor(.7,.4,.2) native.setKeyboardFocus( nil ) SearchTxt:addEventListener( "userInput", fieldHandler( function() return SearchTxt end ) )