What steps will reproduce the problem?
1.
var debug: DebugConfiguration = new DebugConfiguration();
debug.minimizedOnStart = true;
tracker = new GATracker( app, googleAnalyticsId, "AS3", true, null, debug );
What is the expected output? What do you see instead?
Expected: visual debug console should display in minimized state.
Actual: Errors generated in GATracker._factory();
What version of the product are you using? On what operating system?
N/A trunk source code from SVN
Please provide any additional information below.
FIX: change GATacker constructor to:
this.debug = ( debug ) ? debug : new DebugConfiguration();
this.config = ( config ) ? config : new Configuration( debug );
Original issue reported on code.google.com by keanepa...@gmail.com on 9 Mar 2011 at 11:24
Original issue reported on code.google.com by
keanepa...@gmail.com
on 9 Mar 2011 at 11:24