Get your own customer support community
 

Live Application is not automatically updating, to see a property change I have to refresh it manually from the menu.

I'm using:

MonsterDebugger 2.0.4 Application & Client
AIR 1.5.2.8870
Windows XP SP3
Flash CS4 10.0.2

This code shows the problem:

import nl.demonsters.debugger.MonsterDebugger

var debugger:MonsterDebugger = new MonsterDebugger(this);

var counter:Number = 0;

stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler);

function keyDownHandler(event : KeyboardEvent) : void
{
switch(event.keyCode)
{
case Keyboard.LEFT :
counter = counter - 1;
break;
case Keyboard.RIGHT :
counter = counter + 1;
break;
}
}

if you look at the property counter inside the Live Application it is not updating.

I'm not 100% sure if this is a problem or feature request.
 
silly I’m unsure
Inappropriate?
1 person has this problem

User_default_medium