
September 21st, 2011, 05:39 AM
|
|
|
|
ActionScript 3 - Output html in flash
hi all, im sending a variable from my php page to flash..
PHP Code:
$reptoview=urlencode($rowrep['report']);
echo "rep=$reptoview";
i then receive the variable in flash...
PHP Code:
report.text = event.target.data.rep;
the only problem is that the variable contains html code so the report.text field outputs code "<p>mytext etc</p>"
is there a way to output it as html rather than as html code?! thanks
|