See properties of an object

Hey there all,

I’m having difficulties with following problem.
I’m using a texteffect class from Betriebsraum, but now i want to use some of it’s events (like the onComplete…)

So in the demofile you have the following code for this:


var evListener:Object = new Object();
evListener.onEffectComplete = function(evObj:Object) {    

    if (i == 1) {
        testEffect.removeEventListener("onEffectComplete", evListener);
        return;
    }
    
    trace(evObj);
    
    testEffect.effectType = "overwriteAndRemove";
    testEffect.write(str2);
    
    i++;
    
}

testEffect.addEventListener("onEffectComplete", evListener);

But how can i see which properties there are in the “evObj” parameter?

I’m breaking my head over this for a while now, I hope somebody can release me out of my suffering :slight_smile:

cheers