|
From: Albrecht K. <kl...@ak...> - 2007-12-01 20:11:48
|
Hi Klaus,
maybe I did something wrong, but the patch didn't help.
If you want test it yourself, here is the Perl script I used:
#!/usr/bin/perl -w
use SWF qw(:ALL);
SWF::setVersion(7);
my $m = new SWF::Movie();
my $font = new SWF::Font("_sans");
my $tf = new SWF::TextField();
$tf->setFont($font);
$tf->setName("xtext");
$tf->setHeight( 40);
$tf->setBounds(150,150);
$m->add($tf);
$m->add(new SWF::Action(
<<ENDACTION
xtext=Math.abs(3>4? 5:6);
ENDACTION
));
$m->nextFrame();
$m->save("test.swf");
__EOF__
Thank you once again!
Cheers,
Albrecht
|