Hi,
I don't know what the reason is for following error message:
Error: Illegal Access (Out of Bounds)
Details: Failed invoking <symbol>
Stack:
- initialize() at C:\Users\Bernd\eclipse-workspace\Colors\source\colors.mc:89 0x100004c8
- initialize() at C:\Users\Bernd\eclipse-workspace\Colors\source\ColorsApp.mc:16 0x100000ce
I have defined in the main app a class called color:
function initialize() { AppBase.initialize(); cColor = new color(); }
I tagged the class color with (:glance)
I initialized the values in the class color:
(:glance) class color { hidden var colors = new [64]; function initialize() { colors[0] = {:name => Rez.Strings.Black , :oldName => Rez.Strings.Black , :code => 0 , :myColor => true , :bright => false}; .... } }
I have zero problems with the very same watch in the simulator, if I deselct glance view causing to start with the initial view. Bus as soon as I tick glance in the simulator and recompile the error message is thrown. Can someone explain what's going on?