Hi, just highlighting this. Fba doesn't respond
very well when an incoming call is received on
PDA phones. I've attached a screen capture (sorry
it's very small), but you can basically see what
happens. The title bar is there, as well as the keyboard
icon, the phone incoming dialog box appears for a
second and disappears. Is it possible for Fba to
tackle this more gracefully?
Also the general template used in the code examples
seem to be processor intensive, eg:
Code:
function onmainloop()
clear(0,0,0)
*drawimage*
end
Is there any pitfalls to only draw if there is changes? eg
Code:
local boDraw = true
function onmainloop()
if boDraw == true then
*drawimage*
boDraw = false
end
if keypressed then
*calculate*
boDraw = true
end
end
One problem with this is once the fbacreator fade in/out ad is gone, it'll leave behind a black box where it used to be. To solve this I'd like to propose that a special event is fired after the ad is gone so we can do a screen refresh call.