when i used this code for 1 storyboard…
yeah its functioning but my concern is…
why this ‘function’ work 2 all storyboard… i want only 1 storyboard to worked only,
any suggestion ?
tnx advance,
local function onKeyEvent( event )
if (event.keyName == “back”) and (system.getInfo(“platformName”) == “Android”) then
clickednext()
return true
end
return false
end
Runtime:addEventListener( “key”, onKeyEvent );