TextCandy Hidebefore transition does not hide.

Can anyone tell me why this code doesn’t hide the text before the transition?

[code]

–Actor Text
actorText = TextCandy.CreateText ( {
fontName = “FONT2”,
text = “+5”,
x = 240,
y = 80,
originX = “CENTER”,
})
hudGroup:insert(actorText)

actorText:applyInOutTransition(
{
hideCharsBefore = true,
hideCharsAfter = true,
startNow = false,
loop = false,
autoRemoveText = false,
restartOnChange = true,
restoreOnComplete = false,
– IN TRANSITION
inDelay = 0,
inCharDelay = 20,
inMode = “LEFT_RIGHT”,
–InSound = Snd_Beep,
AnimateFrom = { xScale = 4.0, yScale = 4.0, time = 200, transition = easing.outQuad },
– OUT TRANSITION
outDelay = 500,
outCharDelay = 20,
outMode = “RIGHT_LEFT”,
AnimateTo = { xScale = 1.5, yScale = 1.5, time = 500, transition = easing.inQuad },
})

[/code] [import]uid: 8192 topic_id: 12034 reply_id: 312034[/import]