I'm trying to make a javascript that tells a Flash movie clip which frame to
go
to go.
if i use TGotoFrame, it always seems to be incorrect.
for example
alert("currentFrame in Flash: " + mov.TGetProperty("/clip", 4))
mov.TGotoFrame("/indicator", 33);
alert("currentFrame after : " + mov.TGetProperty("/clip", 4))
The first alert always sends up the current frame. The second one should sen
d
"33" because that's what I've hard-coded. Instead, it always says "34"!
Any ideas? thanks for the help.
|