Bug with tabbar pressButton on build 724?

It seems that when when calling pressButton(), the app enters an infinite loop, and repeatedly calls the associated event handler, even if i set the flag to ‘false’.

this is the line that I isolated as causing the trouble in my code:

tabs:pressButton( 2,false );  

EDIT:
I wrote a test code that only tests the tabbar, the loop problem dissapeared, so it may be a problem with my own code. However the event handler flag still seems not to work (it always behaves as if it is set to ‘true’).
[import]uid: 33608 topic_id: 20280 reply_id: 320280[/import]

I found this too (723) [import]uid: 93610 topic_id: 20280 reply_id: 79268[/import]

Hello,

Thanks for bringing this to our attention. The bug has been fixed and will appear in the next daily build (after 2012.724).

The default value of invokeListener is true. [import]uid: 52430 topic_id: 20280 reply_id: 79296[/import]

The fix is in (as well as some other important changes): http://developer.anscamobile.com/release/2012/725 [import]uid: 52430 topic_id: 20280 reply_id: 79309[/import]

Nice fix, I didn’t see the tabBar issue with custom Bg in the list but I see you fixed it when I ran my app.

Thanks Jon/Ansca, Amazing. [import]uid: 13560 topic_id: 20280 reply_id: 79312[/import]

Thanks for the quick reply. However, I’m still getting the same problem with D.B. 725.

local widget = require "widget"  
 local function onBtnPress( event )  
 print( "You pressed tab button: " .. event.target.id )  
 end  
local tabButtons = {  
 {  
 label="First Tab",  
 up="Icon1.png",  
 down="Icon1-down.png",  
 width=32, height=32,  
 onPress=onBtnPress,  
 selected=true  
 },  
 {  
 label="Second Tab",  
 up="Icon2.png",  
 down="Icon2-down.png",  
 width=32, height=32,  
 onPress=onBtnPress  
 },  
 }  
  
  
   
  
local tabs = widget.newTabBar{  
 top=430,  
 buttons=tabButtons  
}  
tabs:pressButton(2,false)  

The test code above results in the second tab selected (as expected), but with the event handler still firing (the console prints “You pressed tab button: 2”, which it shouldn’t since the flag was set to false) [import]uid: 33608 topic_id: 20280 reply_id: 79477[/import]

EDIT
It works fine now with 726.
Thanks Jon.

Sorry for the double post… [import]uid: 33608 topic_id: 20280 reply_id: 79478[/import]