Hi
I rebuilt a html form (http://tvpresenter.tv/testing) as a flash form
http://tvpresenter.tv/testing/presenterview.swf
…and it’s spitting out this into the address bar when I run it:
http://tvpresenter.tv/testing/render.php?tfList=[object+Object]&invalidateFlag=false&__labelPlacement=right&__toggle=false&enabled=true&_minHeight=0&_minWidth=0&__width=100&__height=22&stylecache=[object+Object]&useHandCursor=false&rolloverIcon=falseUpIcon&childrenCreated=true&initializing=false&upSkin=_level0.instance4.go.fus&skinName=_level0.instance4.go.fds&methodTable=&phase=down&rolloverSkin=_level0.instance4.go.frs&downSkin=_level0.instance4.go.fds&keyHandler=[object+Object]
Whereas the html form version (http://tvpresenter.tv/testing) spits out this (and works)
http://tvpresenter.tv/testing/render.php?what=google.com&who=Garry.inc&where=bottomright.inc
The php form that they are referencing reads:
<?
$url_what=$_GET["what"];
$url_where=$_GET["where"];
$url_who=$_GET["who"];
?>
<!--Render position-->
<style>
<? require $url_where;?>
</style>
<!--Render site-->
<iframe src="http://<? echo $url_what;?>" name="sitedisplay" id="sitedisplay" marginwidth="0" marginheight="0" frameborder="0" width="100%" height="100%" style="position: absolute; z-index: -99; width: 100%; height: 100%;"></iframe>
<!--Render flash-->
<? require $url_who;?>
any ideas why flash is cocking up? As far as I know all the bits are in place in the flash form - The FLA is at http://scusiciao.com/presenterview.zip if anyone fancies a look :beam:
thanks!!
J