I’ve searched forums, google and stackoverflow for this solution. No luck, so here it goes:
Scene A : (creating public object)
someLine = display.newLine( 0,100, screenW,100 ) someLine:setStrokeColor( 0, 0, 0 )
Scene B : (changing public object)
someLine:setStrokeColor( 1, 1, 1 )
Changing object from scene A in scene B like in example above, does not work. Any idea how to get to that object without some weird workarounds?
Thank you so much!