//CMAX ----- 23/1/2007 ------ 22:20
var Send:String = "Send Email ! ";
_root.createTextField("sub", _root.getNextHighestDepth(), 150, 40, 200, 20);
_root.createTextField("body", _root.getNextHighestDepth(), 150, 80, 200, 200);
_root.createTextField("txt", _root.getNextHighestDepth(), 150, body._y+body._height+20, 50, 20);
body.text = "Type You Description Heare ...";
sub.text = "Type You email Subject Heare ...";
txt.autoSize = true
sub.border=body.border=true;
sub.type = body.type='input';
txt.html = true;
txt.selectable = false;
sub.onChanged = body.onChanged=function ()
{
txt.htmlText = '<a href="mailto:[email protected]?subject='+sub.text+"&body="+body.text+"\">"+Send+"</a>";
};
txt.htmlText = '<a href="mailto:[email protected]?subject='+sub.text+"&body="+body.text+"\">"+Send+"</a>";
////// For Fun /////////////
var fmt:TextFormat = new TextFormat();
with(fmt)
{
font='tahoma'
size='10'
color='0x444444'
}
for(i in _root)
{
_root[i].setTextFormat(fmt)
_root[i].setNewTextFormat(fmt);
_root[i].borderColor=0xcccccc
}
_root.createEmptyMovieClip("mc",-1);
mc.beginFill(0xf3f3f3,100);
mc.lineStyle(1,0x999999,100)
mc.moveTo(0,0);
mc.lineTo(txt._width+10,0)
mc.lineTo(txt._width+10,20)
mc.lineTo(0,20)
mc.lineTo(0,0)
mc._x=txt._x
mc._y=txt._y
txt._x+=5
txt._y +=3
////////////////////////////////Have Good Time /////////////
//CMAX ----- 23/1/2007 ------ 22:20