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:
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.
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.
1
person has this problem
I have this problem, too!
Tell me when someone solves it.
The more people who report this problem, the more it gets noticed.
The more people who report this problem, the more it gets noticed.
Create a customer community for your own organization
Plans starting at $19/month
Loading Profile...


