Are you sure ‘hpc’ is null? I would expect that ‘gp’ is null. Where is ‘gp’ defined?
There definitely can be differences in the timing of when things are created in Royale compared to Flex. Could still be a bug in the generated code. Or could be a restriction that Royale wants to dynamically create more things and so some variables won’t be ready when the array is constructed. HTH, -Alex From: MARK HARTNETT <[email protected]> Reply-To: "[email protected]" <[email protected]> Date: Thursday, May 2, 2024 at 9:45 AM To: "[email protected]" <[email protected]> Subject: JS questions EXTERNAL: Use caution when clicking on links or opening attachments. Hi all, All of my errors right now are null references. In this code gp.hpc crashes because hpc is null at this point. In Flex, I didn't care about that because once init() was done it was no longer null. <ns7:CustomButtonBar id="topCBB" btnA="['Home','Statistics','Network','MCA Grid']" btnBoxA="{[gp.hpc, gp.statisticsCtrl, gp.siteNetworkCtrl, gp.dgBOX]}" itemH="36" fntSz="16"/> With JS the null hpc throws an error. Moving those variables to creationComplete solves the problem. What is the difference with JS binding and Flex in terms of timing and object creation? Is there a a bead that allows nulls? Thanks
