Hi Folks,
I have the following function. I want to setup the function bubbletvOff as a local function instead of the global function. Currently when i set the bubbletvOff function as local, the function is never called from the function bubbletvOn. I am forced to use global or the function does not get called. Any ideas?
[code]
local function bubbletvOn()
tvBubbleGroup.isVisible = true
transition.from(tvBubbleGroup, {time = 4200, x = 250, y = 5, transition = easingx.easeOutElastic})
timer.performWithDelay( 5000, bubbletvOff )
end
function bubbletvOff()
tvBubbleGroup.isVisible = false
end
[/code] [import]uid: 131058 topic_id: 24340 reply_id: 324340[/import]