input box (css styled) can be editable?

By lsatdown | Jan 6, 2009
I thought a input box that has been styled with css is not editable?

Check this out?

http://www.flashloaded.com/flashcomp…/example1.html

var BUTTONS:Plane in childImage

By luciferonline | Jan 6, 2009

var coneBlackMaterial:BitmapFileMaterial = new BitmapFileMaterial(thumb_url);
coneBlack = new Plane( coneBlackMaterial, 250, 200, 3, 3);
planes.push(coneBlack); // push Plane objects into storage array
trace(planes[i]); // reference Plane objects in storage array
var childImage = planes[i];
rootNode.addChild(childImage);
for each (var BUTTONS:Plane in childImage) {
BUTTONS.buttonMode = true;

}//for each()

Hi all I am trying to set some button event listeners but am having some issues.
basically I think the reference to BUTTONS within the array as Plane objects is not compatible, either that or my method is not correct.

if any one can point me in the right path that would be much apriciated.

cheers

AS 3.0 reading PHP content

By Stre | Jan 6, 2009
Hello, Guides! So I’m working with PHP in HTML, so I have a problem when need to read PHP variables with AS 3.0. I’m asking If there is a way to read a variable by inserting PHP code in AS 3.0 code. My PHP file includephp.php is:
<?php
$var_1=’Hello world!-1′;
$var_2=’Hello world!-2′;
$var_3=’Hello world!-3′;
?>

My AS 3.0 code is:

include ‘includephp.php’
area1_txt.htmlText=<?php echo ‘$var_1′; ?>;

Here area1_txt is a Dynamic text area.

I tried to change last line with:

area1_txt.htmlText="<script type=\"text/php\"><?php echo $var_1; ?></script>";

The result is the same: no mistakes, no answer. Maybe it’s impossible to use such method or I don’t do something right (which is more probable)…

:confused:

© 2007 ActionScript 3.0